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

Find memory id export

Former Member
0 Likes
3,108

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
Read only

Former Member
0 Likes
1,505

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

Rob

4 REPLIES 4
Read only

Former Member
0 Likes
1,506

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

Rob

Read only

0 Likes
1,505

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.

Read only

0 Likes
1,505

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

Read only

Former Member
0 Likes
1,505

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.