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: 

Discovering Z programs that executed modify on a standard table.

ronaldo_aparecido
Contributor
0 Kudos
584

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

sandro2022
Explorer
469

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

3 REPLIES 3

sandro2022
Explorer
470

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

469

or 'UPDATE BSEG'

BiberM
Active Participant
0 Kudos
469

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).