2014 Jan 20 11:52 AM
How I can get values from the internal memory and map it to corresponding fields of internal table (IT_TAB) ]using function modules LIST_FROM_MEMORY and LIST_TO_ASCI.
It_tab <==> Having fields of BSID ---> Document Number, Year, Company code, Document Type, Billing Document Number, Payment date
2014 Jan 20 11:56 AM
Hi Sunil
If you execute both these FM you will see data is comming as string which you have to just loop through and assign to IT_TAB structure. Check in debugging or where used list of these FM you will understand
Please keep a meaningful and short subject next time
Nabheet
2015 Feb 24 7:14 AM
Hello ,
I have used the same FM but not getting any data in IT_STRING
CALL FUNCTION 'LIST_TO_ASCI'
EXPORTING
list_index = -1
IMPORTING
LIST_STRING_ASCII = it_string
TABLES
listasci = it_text
listobject = it_abaplist
EXCEPTIONS
empty_list = 1
list_index_invalid = 2
OTHERS = 3.
Regards,
Anoop Singh Bhandari