Hello Experts,
I am trying to read the list output from FM'LIST_TO_ASCI' into table listasci = it_text but not able to read the whole data in the same.
here is my code:
TYPES: BEGIN OF ty_text,
line(9000),
END OF ty_text.
DATA: it_ABAPLIST type STANDARD TABLE OF ABAPLIST,
wa_text TYPE ty_text,
it_text TYPE TABLE OF ty_text.
CALL FUNCTION 'LIST_TO_ASCI'
EXPORTING
list_index = -1
TABLES
listasci = it_text
listobject = it_abaplist
Regards,
Anoop Singh Bhandari