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: 

Export & Import

Former Member
0 Kudos

Hello Abapers,

when I am exporting an internal table from one program to another program. through Export and Import Command the value is not coming in my second program. all syntax is right and the internal table declared is of the same name and same structure. Please give me the solution .

Fruitful Answer will be rewarded

Thanks & Warm Regards

Nagaraj S.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Check out...

Have u submitte the program..???

with syntax..

export....

Submit <report NAme> and return." to submit to program and return.

Regards...

3 REPLIES 3

Former Member
0 Kudos

Check out...

Have u submitte the program..???

with syntax..

export....

Submit <report NAme> and return." to submit to program and return.

Regards...

Former Member
0 Kudos

hi,

you can use the following statements:

Syntax:

: SUBMIT [AND RETURN] [].

: If you the want to copy data to or from(between) the different reports use the functions:

: EXPORT TO MEMORY and/or IMPORT FROM MEMORY.

reward points if helpful..

Former Member
0 Kudos

HI,

Import and export can happen in 2 ways,

1. DAtabase memory,

2. Session memory.

For passing value amongst reports try doing it through datrabase memory,

Use the following code

EXPORT itab FROM it_errormsg TO MEMORY ID 'IN_8032'.

IMPORT itab TO it_l_errormsg FROM MEMORY ID 'IN_8032'.