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

ABAP command IMPORT/EXPORT

Former Member
0 Likes
848

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
661

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.

5 REPLIES 5
Read only

Sm1tje
Active Contributor
0 Likes
661

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

Read only

Former Member
0 Likes
661

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

Read only

Former Member
0 Likes
662

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.

Read only

Former Member
0 Likes
661

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.

Read only

0 Likes
661

Can the set/ get parameter statements be use in the methods of 2 different classes?