Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

SAP OLAP Connector

Hi

I have connected to SAP BW by the SAP OLAP Connector. How do I rename the dimensions in the script? It's not taking aliases (as).

Please help.

SAP_BW.png

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

You need to modify the Load statement (comes after the preceding Select statement), for example:

[$0FIAP_C03]:

Load

     [<Dimension Alias Name returned by OLAP Connector>] as [Company Code],

     *

;

Select PseudoMDX D ( ....

... ;

Cheers

Yaniv

View solution in original post

3 Replies
Not applicable
Author

You rename the dimensions on Load *, where you pass the *, you define use the all dimensions the BW.

Anonymous
Not applicable
Author

You need to modify the Load statement (comes after the preceding Select statement), for example:

[$0FIAP_C03]:

Load

     [<Dimension Alias Name returned by OLAP Connector>] as [Company Code],

     *

;

Select PseudoMDX D ( ....

... ;

Cheers

Yaniv

Anonymous
Not applicable
Author

Thank you!