Environment: Windows Programming language: Python Package: pyRFC SAP: SAP RFC SDK
I am trying to call the following method BAPI_MDDATASET_CREATE_OBJECT after connecting to the BW through the object bwConn
bwConn.call('BAPI_MDDATASET_CREATE_OBJECT', COMMAND_TEXT = [QUERY])
Since COMMAND_TEXT has a limitation of 75 characters - how can I define QUERY?
Currently QUERY is defined as
QUERY = "SELECT NON EMPTY [ABC].[LEVEL01].MEMBERS \n" \
" DIMENSION PROPERTIES [XYZ].[FIELD01] ON ROWS" \
" FROM [ABC/QUERY01]"