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 TO MEMORY

Former Member
0 Likes
474

Hi all,

Can we use export to memory in exits.....If so,can we get aq sy-subrc value in retrurn for us.

regards,

sandeep.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
441

Hi Sandeep,

I saw a similar case:

I have to "export to memory" (bukrs) in one user exit and import to memory in other.

Ans:

in one user exit:

EXPORT field TO MEMORY ID 'Z_BUKRS'.

in another user exit:

IMPORT field FROM MEMORY ID 'Z_BUKRS'.

hope this helps.

<REMOVED BY MODERATOR>

cheers,

Hema.

Edited by: Alvaro Tejada Galindo on Jan 29, 2008 10:00 AM

2 REPLIES 2
Read only

Former Member
0 Likes
442

Hi Sandeep,

I saw a similar case:

I have to "export to memory" (bukrs) in one user exit and import to memory in other.

Ans:

in one user exit:

EXPORT field TO MEMORY ID 'Z_BUKRS'.

in another user exit:

IMPORT field FROM MEMORY ID 'Z_BUKRS'.

hope this helps.

<REMOVED BY MODERATOR>

cheers,

Hema.

Edited by: Alvaro Tejada Galindo on Jan 29, 2008 10:00 AM

Read only

Former Member
0 Likes
441

You can use the Export to Memory and Import from Memory in User exits.

You will have to investigate the exits more closely, when they are called and where. As long as the update task or a separate LUW is not involved, You are good to use. If not, you should not use the import/export technique.

If the Entire Export...Import...everything happens in same LUW.... you are good to use. If not do not use it.

Hope this helps

VB