‎2008 Apr 17 4:09 PM
Hi!
I would like to know whats the replacement for the IMPORT and export commands used in 4.7c in ECC6. Can anyone tell me whats the replacement commands for import and export command that is used in abap/4 4.7c for ECC6.
Thanks
‎2008 Apr 17 4:27 PM
which export do you mean ?
to memory id ?
it is still there right ? looks like it has become lil complicated.. (but not as complicated as the syntax, when u actually try it)
see an example
IMPORT TAB = T_RFID
FROM DATABASE INDX(ZF)
CLIENT V_CL
ID 'ZFRT'.
let me know, if u need more info.
‎2008 Apr 17 4:20 PM
I'm not quite sure if you can call it a 'replacement', I would say it is another alternative.
Shared (memory) object, transaction SHMA (creating) and SHMM (monitoring).
http://help.sap.com/saphelp_nw70/helpdata/EN/1c/dafc3e9d3b6927e10000000a114084/frameset.htm
‎2008 Apr 17 4:41 PM
SO you mean to say that this functinality can be used in ECC6.0 in place of import/export that was been used in 4.7c.
Thanks
‎2008 Apr 17 4:27 PM
which export do you mean ?
to memory id ?
it is still there right ? looks like it has become lil complicated.. (but not as complicated as the syntax, when u actually try it)
see an example
IMPORT TAB = T_RFID
FROM DATABASE INDX(ZF)
CLIENT V_CL
ID 'ZFRT'.
let me know, if u need more info.
‎2008 Apr 17 4:44 PM
Hi Aarav,
there is nothing like replacement for import/export.there is another statements to transferdata which are Set/Get.
when you are working with sap you have sessions.so in between session if you want to transfer data then you will use set/get parameters.import/export are used within the session.means you opened se38 and written a program and then go back to se38 initial screen and entered another program name and in that program you want the data which is in the previous program you have written in the se38 in same session.
reward points if helpful.
‎2009 Nov 27 7:32 AM
Can the set/ get parameter statements be use in the methods of 2 different classes?