Skip to main content
Announcements
Customer Spotlight: Discover what’s possible with embedded analytics Oct. 16 at 10:00 AM ET: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

SAP OLAP cube Dimension: Limiting dimension results to text or keys

[BILLING_MINI_CUBE]:
Load *;
Select PseudoMDX (
Dimensions (
  [0CACONT_ACC] (),
  [0UCCONTRACT] (),
  [0UCINSTALLA__0REGIO_GRP] (),
  [ZBCMRVRS] (),
  [ZBILLTYP] (),
  [0CALMONTH] ()),
Measures (
  [2AI7MRP4Q13OTJXYIWDKDDGY4].[2ERNXFMBGSL13WB2Y7SM20R9O], //Net Amount
  [2AI7MRP4Q13OTJXYIWDKDDGY4].[2CMXS3NQ3EUCYQ4IQK337P43W]), //Unit Billed
Variables (
  [0CMONTH] (I = [0CALMONTH].[$(vCurrentMonth)]),
  [!V000002] (I = [0UCINSTALLA__0REGIO_GRP].[$(vCode)])),
From (BILLING_MINI_CUBE));
Store * from [BILLING_MINI_CUBE] into [0UCSA_C05-ZQV_BILLING_CUBE_$(vCode).QVD];
Drop table [BILLING_MINI_CUBE];

As it is very clear that there are 6 dimensions. For all dimensions and measures it gives "key" and "text". Is it possible to limit the result to text or key. I hope it will make my query faster as those are redundant.

Thanks in advance!

0 Replies