‎2011 Oct 24 5:15 PM
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
‎2011 Oct 24 5:20 PM
‎2011 Oct 24 5:26 PM
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
‎2011 Oct 25 7:31 PM
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).