How to fetch 500+ rows in transaction MDXTEST
Recently I had a query, where I had to verfiy the number of records fetch for Bex query in Crystal Reports. In this process fetched the MDX Statement and ran it in MDXTEST transaction.
Now the issue was the report was fetchin 500+ records and the MDX Statement was just executing for first 500 ones so I was stuck. Later I figured it out which is as follows:
- Run the report based on Bex query.
- Database menu >> Show SQL Query >> copy the query
- Log in to SAP GUI
- Execute transaction MDXTEST (the transaction is not case sensitive)
- Select the repective catalog and cube
- Paste the query copied from Crystal Reports in the blank space
- You can execute the query using Multidimension or flattening option, however in both the case it would not fetch the entire data if its more than 500 records
- Select the option “Run query as Data Stream”. This will get all the rows.
For more Information on MDX you may refer the following
http://help.sap.com/saphelp_nw73/helpdata/en/19/fdd486b13c43e2ad9f562a3222a480/frameset.htm
Thanks, Shanawaz for sharing!!!