‎2007 Aug 31 11:23 AM
Dear All
How to see the contents of ABAP Memory. I mean by using "Export" we will store data in a memory id and we can import this into many programs. My question is how to see the contents of this memori id. Please help..
Biju
‎2007 Aug 31 11:25 AM
To see the contents, either use the import statement or go to the table INDX
DATA wa_indx LIKE indx.
IMPORT tab = it_exview FROM DATABASE indx(xy) TO wa_indx CLIENT sy-mandt ID 'DICTTT'.
‎2007 Aug 31 11:25 AM
To see the contents, either use the import statement or go to the table INDX
DATA wa_indx LIKE indx.
IMPORT tab = it_exview FROM DATABASE indx(xy) TO wa_indx CLIENT sy-mandt ID 'DICTTT'.
‎2007 Aug 31 11:27 AM
Hi
Thanks for quick reply..Is there any Transactions to check this Or the only option is this table..Plz tell me...
‎2007 Aug 31 11:31 AM
Hi..
ABAP memory is Specific to the Session (window) where your program is getting executed.
So Each Session has its own ABAP memory area.
Then How can u see this using a Tcode.
The Only way we can Access the ABAP memory is using the
IMPORT statement or the Cluster table INDX.
<b>REWARD IF HELPFUL</b>
‎2007 Aug 31 11:33 AM
‎2007 Aug 31 11:31 AM
Hi,
While you debug the Program you can see the contents, Just click the over view, then you will get memory allowcation before that click the Settings then click the check box memory Monitoring
Regards
Sudheer