Application Development 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: 

Find memory id export

Former Member
0 Kudos

Dear All,

I am debugging a code in user exit. There the code is importing a value from a memory ID. I tried to find from where it is exporting into the memory that value. but i could not find. I made a thorough search in teh main standard program, but that memory id is nowhere else used.

What would be the best way to search where teh memory id value is being exported ??.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Did you put a break-point at the export statement?

Rob

4 REPLIES 4

Former Member
0 Kudos

Did you put a break-point at the export statement?

Rob

0 Kudos

No there is no export stmt at all, i searched in the main program with memory ID. It was only showing the import stmt in the search.

0 Kudos

That's not what I meant. There's no guarantee that the export is done from the main program.

When starting debugging, take the menu path:

Breakpoints -> Breakpoint at -> Breakpoint at Statement

Then fill in "export" (without the quote)

press enter

continue debugging.

Rob

Former Member
0 Kudos

The best way of doing it and easy it: you do your export memory ID in an user exit and other user exit do your import memory ID.

Salu2.