hi all,
i have the following pice of code in my z report i have to get the list from the standard t-code ca80 but when i execute the program im getting a error that i cannot submit some 'M' type but i can submit '1' type can anyone please help me on this.
SUBMIT 'sap******'
EXPORTING LIST TO MEMORY
WITH SELECTION-TABLE lt_rtparams
WITH dy_selm = 'D'
AND RETURN.
data: i_list type table of abaplist.
Use the function module to get the data from memory.
CALL FUNCTION 'LIST_FROM_MEMORY'
TABLES
LISTOBJECT = I_LIST.
thanks in advance
anupama