‎2007 May 18 12:47 PM
Hello,
does anybody know how to display values from shared memory (also called external memory - not ABAP or SAP memory) in debugger?
Best regards,
Josef Motl
‎2007 May 18 12:55 PM
Hi,
You need to import the values and then you can see the same in debugger.
IMPORT l_MATNR into v_MATNR from MEMORY ID 'ZID'.
put a break-point on IMPORT statement.
After this step is executed, check the value of v_matnr.
Best regards,
Prashant
‎2007 May 18 1:01 PM
Hi Prashant,
of course, I can import value by your code. But I would like to check the value over many user exits and I don't want to change them.
For sap or abap memory, there is support in debugger in menu - Goto -> System Areas -> SAP or ABAP memory. Is there something for shared memory?
Regards,
Josef