‎2013 Jan 21 4:34 PM
i need memory id example not shared buffer, in my previous
thread i got shared buffer example.
so any body plz send me passing data from one program to another
program using memory id.
‎2013 Jan 21 4:40 PM
Hi Rier,
You can check the following links
http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3bde358411d1829f0000e829fbfe/content.htm
‎2013 Jan 21 5:14 PM
Hi,
Report report_A.
DATA: lv_var1 TYPE c VALUE 'A',
lv_var2 TYPE c VALUE 'B'.
EXPORT var1 FROM lv_var1
var2 FROM lv_var2
TO MEMORY ID 'ZZ_MY_ID'.
SUBMIT report_B.
Report report_B.
DATA: lv_var1 TYPE c,
lv_var2 TYPE c.
IMPORT var1 TO lv_var1
var2 TO lv_var2
FROM MEMORY ID 'ZZ_MY_ID'.
WRITE: / lv_var1, lv_var2.
Hope this help you.
‎2013 Jan 22 4:07 AM
‎2013 Jan 22 6:02 AM
Moderator Message: Removed assigned points due to the basic nature of the question. Please try to search in the forums and check with SAP F1 help before asking the question.