![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Hi, From a client application, I would like to obtain the definition of a given calculated member. The cube is a Virtual cube and the calculated measures could be defined as sums of other non-calculated measures. Is this possible using Pivot Table Services API? If so, can someone point me to the exact functions to be used? Thanks |
#3
| |||
| |||
|
|
Hello Yash, you can use schemarowsets. dim conn as new adodb.connenction dim rec as new adodb.recordset conn.open "Provider......" Set rec = conn.OpenSchema(adSchemaMeasures) HTH Joerg "Yash" wrote: Hi, From a client application, I would like to obtain the definition of a given calculated member. The cube is a Virtual cube and the calculated measures could be defined as sums of other non-calculated measures. Is this possible using Pivot Table Services API? If so, can someone point me to the exact functions to be used? Thanks |
#4
| |||
| |||
|
|
If I understand the question correctly, you want to get the calculated measure defined by the user on the client OWC/Pivot Table? In OWC Pivot table, you can use PivotTable.XMLData which returns you the XML version of the current state of pivot table. In this you will find the calculated measures (and everything else used to query/display) as PivotField elements. If you know the name of the PivotField (calculated measure), you can then extract the expression from the sub elements. Murthy. "Joerg" wrote: Hello Yash, you can use schemarowsets. dim conn as new adodb.connenction dim rec as new adodb.recordset conn.open "Provider......" Set rec = conn.OpenSchema(adSchemaMeasures) HTH Joerg "Yash" wrote: Hi, From a client application, I would like to obtain the definition of a given calculated member. The cube is a Virtual cube and the calculated measures could be defined as sums of other non-calculated measures. Is this possible using Pivot Table Services API? If so, can someone point me to the exact functions to be used? Thanks |
![]() |
| Thread Tools | |
| Display Modes | |
| |