‎2007 May 07 4:16 PM
Hi all,
i want some clarification
i have one which is occuping more memory
then i copied that program to antoher program
now i want to check memory diffrence between these two program.
ASAP
Regards
Venu
‎2007 May 07 4:25 PM
Hi,
Guess you can check the MEMORY CONSUMPTION in the debugging of both the programs.
Goto SETTINGS--> MEMORY MONITORING from the debugging screen.
Hope this helps.
Cheeers
VJ
‎2007 May 07 5:13 PM
Hi,
ABAP memory is the memory area that all ABAP programs within the same internal session can access using the EXPORT and IMPORT statements. Data within this area remains intact during a whole sequence of program calls. To pass data to a program which you are calling, the data needs to be placed in ABAP memory before the call is made. The internal session of the called program then replaces that of the calling program. The program called can then read from the ABAP memory. If control is then returned to the program which made the initial call, the same process operates in reverse.
Regards,
Bhaskar
‎2007 May 07 5:20 PM
Use SE30 Transaction ,run ur first program and then second program..
For better results use ST05 (SQL Trace ) .
goto ST05 and then trace on...
use first transaction...
then trace off and see list.
use one more session and then use ST05 Again,
Trace on ,use second transaction see the list.
compare both list and you will have some idea now.
Reward Points if it is helpful
Thanks
Seshu