Hi All,
I developed a rfc in which i called a report using submit report .I want to move the data that i get from report to an internal table.
DATA BEGIN OF itab_list OCCURS 0.
INCLUDE STRUCTURE abaplist.
DATA END OF itab_list.
SUBMIT Z_FIRST_REPORT EXPORTING LIST TO MEMORY and RETURN.
CALL FUNCTION 'LIST_FROM_MEMORY'
TABLES
listobject = itab_list
EXCEPTIONS
not_found = 4
OTHERS = 8.
.
how can i move the data to an internal table.