Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

How I can get values from the internal memory and map it to corresponding fields of internal table (IT_TAB) [itab having fields of = BSID]using function modules LIST_FROM_MEMORY and LIST_TO_ASCI.

Former Member
0 Kudos
96

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

2 REPLIES 2

nabheetscn
Active Contributor
0 Kudos
60

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

0 Kudos
60

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