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

Discovering Z programs that executed modify on a standard table.

ronaldo_aparecido
Contributor
0 Likes
2,210

Hi

Is it possible to know which Z programs are executing the modify command directly on the BSEG table without using the standard function?

EX: modify bseg from table tg_bseg etc...

1 ACCEPTED SOLUTION
Read only

sandro202242
Explorer
2,095

Go to transaction SE38. Run program RPR_ABAP_SOURCE_SCAN and search for 'modify bseg'

3 REPLIES 3
Read only

sandro202242
Explorer
2,096

Go to transaction SE38. Run program RPR_ABAP_SOURCE_SCAN and search for 'modify bseg'

Read only

2,095

or 'UPDATE BSEG'

Read only

BiberM
Contributor
0 Likes
2,095

You could use ATC search Operations. There you can enter the table Name and select the type of Operations you want to search for.

In any solutions provided you can not find dynamic Operations.

A more generic way to find Operations after they happened is to switch on change logging systemwide and on the table specifically (which would be a modification in your case).