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 all objects connected to a ChangeMaster

Former Member
0 Kudos

Hi!

How can I find all objects which are related/connected to a ChangeMaster in SAP? Is there an existing ABAP function which returns me the objects?

Thanks,

Konrad

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

You can query the database tables to find out the connections with respect to change master.

Change Master Header : AENR.

Change Master Linkages to objecs : AEOI.

Hope that helps.

With regards,

Sharath.

3 REPLIES 3

Former Member
0 Kudos

Hello,

If you mean change documents then the data is stored in CDHDR and CDPOS tables.

with the FM CHANGEDOCU_CDPOS_READ you can see which fields have changed for this change document.

I hope this helps you a little bit further

/Peter

Former Member
0 Kudos

Hi,

You can query the database tables to find out the connections with respect to change master.

Change Master Header : AENR.

Change Master Linkages to objecs : AEOI.

Hope that helps.

With regards,

Sharath.

andreas_mann3
Active Contributor
0 Kudos

hi,

...

or use fm CHANGEDOCUMENT_READ

Andreas