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: 

Fetching the values

Former Member
0 Kudos

How to fetch the values stored in the memory after writing the submit stmt.Please suggest some ideas and examples.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

Use Export statement for storing data in memory buffer before the Submit statement and Use Import statement to get data from buffer.

For further help press F1 on import and export statement,

or got to tcode ABAPDOCU and give these key words.

Thanks & Regards,

Navneeth K.

5 REPLIES 5

Former Member
0 Kudos

Hi,

Use Export statement for storing data in memory buffer before the Submit statement and Use Import statement to get data from buffer.

For further help press F1 on import and export statement,

or got to tcode ABAPDOCU and give these key words.

Thanks & Regards,

Navneeth K.

0 Kudos

I have written the code as

"submit ydefect using selection-set 'variant'

with selection-table rspar_tab

exporting list to memory

and return.

after this how to fetch the values.

0 Kudos

After the submit statement use function module LIST_FROM_MEMORY. It loads the list from ABAP memory to an internal table of type ABAPLIST.

0 Kudos

I have made use of the same but the values stored in rfcrecord is like this "2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D".Its continuous.How to fetch my required datas from it.

0 Kudos

Check the function module documentation. Are you using it in that way also check the help for submit statemtent