Application Development 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: 

Find EXPORT to an IMPORT ... FROM MEMORY ID statement

Former Member
0 Kudos

Hi!

I would like to ask you, if you know an easy way to find the EXPORT command for an IMPORT ... FROM MEMORY ID ... statement.

For example in the program LWDTMO01, there is the following codepart (in a SAP 4.6c):

IMPORT DYNP_INFO FROM MEMORY ID 'mcx_dynp_info'.

IMPORT SHLP_TOP FROM MEMORY ID 'mcx_shlp_top'.

IMPORT SHLP_CURR FROM MEMORY ID 'mcx_shlp_curr'.

IMPORT SHLP_TAB FROM MEMORY ID 'mcx_shlp_tab'.

IMPORT RECORD_TAB FROM MEMORY ID 'mcx_record_tab'.

IMPORT OCXINTERFACE FROM MEMORY ID 'mcx_ocxinterface'.

IMPORT CALLCONTROL FROM MEMORY ID 'mcx_callcontrol'.

IMPORT FLDS_OUT_TAB FROM MEMORY ID 'mcx_flds_out_tab'.

How can I find the code, where these tables are filled with data and EXPORTed to the memory?

Thank you

Tamá

5 REPLIES 5

Former Member
0 Kudos

hi tamas

go to debugging mode by using the internal command /h

then click the goto menu->sytem areas->abap memory.

in the abap memory the datas are stored ..

regards

surender.s

Former Member
0 Kudos

Hi

tyr this program (input string of memory id) to search for all instances.

RPR_ABAP_SOURCE_SCAN

Thanks ,

Tanaya

Former Member
0 Kudos

Hi,

Check the code where there is IMPORT .... FROM ....

u can find 'CALL TRANSACTION' or 'SUBMIT' statement just before IMPORT statement.

Hope this will help...

Regards,

Sukriti

Former Member
0 Kudos

<copy&paste_removed_by_moderator>

Edited by: Julius Bussche on Jun 26, 2009 1:24 PM

Former Member
0 Kudos

I wonder how could ppl find these 1 month old threads...

Thanx for the input, unfortunately I had to debug the whole stuff, and that's what I wanted to avoid. Unfortunately it seems for me, there is no easier solution...