‎2009 Aug 03 6:46 AM
Hello Experts,
How this statement works,
EXPORT IT TO MEMORY ID 'ZIT'.
SUBMIT XYZ AND RETURN.
Plz suggest.
Savita
‎2009 Aug 03 6:49 AM
HI,
Exporte is used to store the data in ABAP memory . Where ever it is required we can get by IMport statment.
~linganna
‎2009 Aug 03 6:51 AM
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.
‎2009 Aug 03 6:55 AM
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.
‎2009 Aug 03 6:55 AM
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.
‎2009 Aug 03 7:00 AM
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