Skip to Main Content

Analytics Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Using MDX query in RPD

rkommaApr 10 2015 — edited Apr 10 2015

I have a MDX query that I want to use in the RPD as "Table Type" =Select

I did create a new object as "Physical Dimension" and gave the below script as Essbase 11 specific SQL, but this does not work and an getting the generic error "[nQSError: 15002] Missing navigation space for subject area test. (HY000)". Any Idea as to how to use the MDX in RPD?

MDX Script:

with set classes as '{[Class_Data],[Inventory_Class_Data]}'

set ledgers as '{[Actuals_Ledger],[Finance_Ledger],[Reclass_Ledger],[Allocation_Ledger],[Blending_Ledger],[HCSADJ_Ledger]}'

set bu as '{[UTHCS],[UTMBG],[CONSL]}'

set account as 'Except ({filter ([Accounts].Levels(0).members, IsAncestor([SRECNA],[Accounts].CurrentMember)),

filter ([Accounts].Levels(0).members, IsAncestor([MISC_AUDIT],[Accounts].CurrentMember)),

                                  filter ([Accounts].Levels(0).members, IsAncestor([SNA],[Accounts].CurrentMember))},{[Change in Net Assets and Restatements]})'

set funds as '{filter ([Fund].Levels(0).members,IsAncestor([All_Funds],[Fund].CurrentMember)),

filter ([Fund].Levels(0).members,IsAncestor([Do Not Use Funds],[Fund].CurrentMember))}'

select {[Act]} on columns,

Non Empty (CrossJoin(CrossJoin(

CrossJoin(account,funds),

CrossJoin(ledgers,bu)

),classes)

  ) on rows

from [finrpt15.work]

where (FY15,YTD_Apr,UTMB_INSTITUTION);







Thanks,

Ravi

Comments

Klibby-Oracle
Hi Julie,

Per Oracle Client/Server interoperability the Oracle Client has to be at a minimum of 9.2.0.4 or higher to connect to an 11.2 RDBMS. Understand however that 9.2 has not been desupported for error correction for a while so if you run into new issues after upgrading to the 9.2.0.8 terminal patches the only other suggestion is to upgrade to 11g preferably 11.2.0.3

Edited by: klibby on May 1, 2012 11:53 AM
Julie Treger-Oracle
Thanks for the quick response!

Regards,
Julie
1 - 2
Locked Post
New comments cannot be posted to this locked post.

Post Details