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 MEMORY for Import

Former Member
0 Likes
501

Hi

Please let me know how can i find the memory id name and from where for ABAP Memory .

For ex : IMPORT IM_EKPO-KNTTP FROM MEMORY ID 'EKPO_MO'

In the obove statement where can i find that this 'EKPO_MO' is memeory id ??

<< Moderator message - Everyone's problem is important. But the answers in the forum are provided by volunteers. Please do not ask for help quickly. >>

If in Export where to find that export ?

Edited by: Rob Burbank on Oct 24, 2011 12:17 PM

3 REPLIES 3
Read only

Former Member
0 Likes
468

Hi,

Are you talking about TPARA table?

Kr,

Manu.

Read only

Former Member
0 Likes
468

Hi

You can't find it...you can see it in the debug (there's a session showing all parameters set in the memory.

Of course if there's a IMPORT, there is an EXPORT but it can be very hard to konw where it's done,

- EKPO_MO is a label to assign to a part of memory, but it's created at runtime.

You can suppse it should be another program where the export is done, in generally it doesn't make a sense to use import/export from/to memory in the same report: this statament is usually used to transfer some data between several programms

Max

Read only

Former Member
0 Likes
468

When all else fails, there's a very nice tool for developers: RS_ABAP_SOURCE_SCAN.

This program will scan ABAP code looking for a particular string....you can find that way (but run in background, and spool the results).