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

Export Statement

Former Member
0 Likes
790

Hello Experts,

How this statement works,

EXPORT IT TO MEMORY ID 'ZIT'.

SUBMIT XYZ AND RETURN.

Plz suggest.

Savita

5 REPLIES 5
Read only

Former Member
0 Likes
679

HI,

Exporte is used to store the data in ABAP memory . Where ever it is required we can get by IMport statment.

~linganna

Read only

Former Member
0 Likes
679

The value of IT will be stored into memory ID 'ZIT'.

SUBMIT XYZ AND RETURN. -- it will execute report XYZ and the value/output will be returned.

Read only

Former Member
0 Likes
679

Hi Savita,

Export it_tab to memory id 'ZIT'.

the above statement transports the internal table to the memory id specified and in the called program using SUBMIT...

u can import the corresponding itab from the memory , using the following statement..

Import it_tab from memory id 'ZIT'.

it_tab must be declared in both the programs with the same structure.

for more info refer the link....

http://help.sap.com/saphelp_nw04/helpdata/EN/9f/db9dd035c111d1829f0000e829fbfe/frameset.htm

export to memory...

http://help.sap.com/saphelp_nw04/Helpdata/EN/fc/eb3bde358411d1829f0000e829fbfe/frameset.htm

Regards.

Read only

sridhar_meesala
Active Contributor
0 Likes
679

Hi,

EXPORT TO MEMORY is used to save data objects in ABAP memory.

Here the internal table IT is stored under the name ZIT.

Revert if u need further help.

Thanks,

Sri.

Read only

RaymondGiuseppi
Active Contributor
0 Likes
679

Press F1 on SE38 abap editor,

- [EXPORT TO|http://help.sap.com/abapdocu/en/ABAPEXPORT_DATA_CLUSTER.htm] [MEMORY ID|http://help.sap.com/abapdocu/en/ABAPEXPORT_DATA_CLUSTER_MEDIUM.htm#!ABAP_ALTERNATIVE_3@3@] store the internal table to Abap memory

- [SUBMIT|http://help.sap.com/abapdocu/en/ABAPSUBMIT.htm] [AND RETURN|http://help.sap.com/abapdocu/en/ABAPSUBMIT.htm#!ABAP_ONE_ADD@1@] will execute another program and resume after this statement - we may suppose that this report, which shares the [Call sequence|http://help.sap.com/abapdocu/en/ABENCALL_SEQUENCE_GLOSRY.htm] of the caller, will execute an [IMPORT FROM|http://help.sap.com/abapdocu/en/ABAPIMPORT_DATA_CLUSTER.htm] [MEMORY ID|http://help.sap.com/abapdocu/en/ABAPIMPORT_MEDIUM.htm#!ABAP_ALTERNATIVE_3@3@]

Also read [Calling ABAP Programs|http://help.sap.com/abapdocu/en/ABENABAP_PROGRAM_CALL.htm]

Regards,

Raymond