I have a Analysis Services 2008 with two Databases and different Cubes. When I try to access with XamPivotGrid always see the first in sequence Alphabetical Database.
I have defined the DataSource in XAML or by code and in no of both cases it accedes to the indicated database. If I change manually in the Selector the data are transferred correctly to the XamPivotGrid.
()
dataSource.ServerUri =
)
dataSource.Credentials =
(wrkUsuario, wrkPass, wrkDominio)
dataSource.Database =
dataSource.Cube =
dataSource.Rows =
dataSource.Measures =
dataSource.Columns =
dataSource.Filters =
_-----------------------------------------------------------------------------------------
<igXmla:XmlaDataSource
x:Key="DataSource"
ServerUri="http://***********/olap/msmdpump.dll"
Database="FSGA_BI_Project"
Cube= "FSGA"
Filters="[Usuario].[Area],[Fecha Actividad].[Estr Fecha Actividad]"
Rows="[Usuario].[Usuario]"
Columns="[Clientes].[Cliente]"
Measures="Horas">
<igXmla:XmlaDataSource.Credentials>
<igXmla:XmlaNetworkCredential Password="*************"
UserName="gpu" Domain="FULLSTEP">
</igXmla:XmlaNetworkCredential>
</igXmla:XmlaDataSource.Credentials>
</igXmla:XmlaDataSource>
Can you help me?
Hi,
I am just checking if you got this worked out or you still require any assistance on the matter.
Sincerely,DimiDeveloper Support Engineer, MCPD Infragistics, Inc.www.infragistics.com/support
Since your version is the base version and we think that the described issue was fixed in service release 10.3.20103.2117. We recommend you to take the latest service release:1. Go to http://es.infragistics.com/Login.aspx and sign in with your username and password. 2. From the top black toolbar, hover the mouse over "My IG" and select "My Keys and Downloads" from the drop down menu. 3. You will see a list of all of your registered keys. Select the key and click on the hyperlink for it. The page will expand below and show you links to downloading the Service Release.
Please let me know if you have some difficulty finding the service release or you have further questions.
My version is 10.3.20103.1006. And RunTime Versión v2.0.50727.
Hi
You should check the InfragisticsSL4.Controls.Grids.XamPivotGrid.v10.3.dll for version property. We had issue similar to this one you discribed and we fixed it in our SR.
If version of dll is smaller than 2117, I recommend you to contact DS to download the latest Service Release.
RegardsTodor
The control is a trial versión of
InfragisticsSL4.Controls.Grids.XamPivotGrid.v10.3.
The names are right.
May be the conexion is wrong?
Dim
.dataSelector.DataSource = dataSource
.pivotGrid.DataSource = dataSource
.UpdateLayout()
Thanks.