Application Development and Automation 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: 
Read only

Import & Export

Former Member
0 Likes
620

Hi Experts,

I am having small doubts can u explan it.

1)In Export & import we use memory id .actually what is memory id . when i am Exporting an internal table to what shoul i use in the memoryid place.

2) after Exporint the data object & before going to import it how to check whether Export is Successful OR Not

Points are rewaded.

3 REPLIES 3
Read only

Former Member
0 Likes
506

hi sharan,

u can use any name(ur own name) for the mamory id.

it will hold the data in ABAP memory.

you cant see it, it will display some chunk matter if you want see it in memory id.

but you can see it in de-bugging mode.

and no need to check abt the data whether the data exported/imported.

Reward points if useful

Chandra

Read only

Former Member
0 Likes
506

*"For exporting the internal table data

EXPORT i_output FROM i_output TO MEMORY ID 'TAB'.

IMPORT i_output TO i_output FROM MEMORY ID 'TAB'.

For export: here we are exporting the internal table in to the memory id 'TAB'.

and after the different program we are importing the internal tbale data from the memory id 'tab'.

and as ur asking how we check the memory values, so for that : in first first program in which u r using the export statement, in the same proram some where u will also use the submit the other proram in which u r using the import statemet.meand the second proram shold be calling some where.

and then try to debug the program once the value comes in the internal table , after export it wull stored in memort id tab and when u r using the submit , then another program will be calling and once the import staement will occurs there u can see the memory id value, that will same as when u export this values.

Read only

Former Member
0 Likes
506

EXPORT t_sflight1 TO MEMORY ID 'ABC'.

t_sflight is ur internal table , memory id is ur own name whatever u like.

and u can use import statment in any program and use that internal table.

IMPORT t_sflight1 FROM MEMORY ID 'ABC'

regards,

priya