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

How to display values from shared memory in debugger

Former Member
0 Likes
853

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

2 REPLIES 2
Read only

Former Member
0 Likes
545

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

Read only

0 Likes
545

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