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: 

Displaying changes of documents

Former Member
0 Kudos

hi all,

We have a requirement of displaying all chnages of documents in a report.

We are following the logic of selecting CDHDR and CDPOS but CDPOs doesn't have fields NEW and OLD filled.

Any pointers to tha table/report in which old and new values are stored is highly appreciated.

It's really very urgent.

Regards,

Rajashree

3 REPLIES 3

Former Member
0 Kudos

Hi...,,

VALUE_OLD and VALUE_NEW are the fields (in table CDPOS) which contains the Old value and the changed value for a particular field...

regards,

sai ramesh

Former Member
0 Kudos

Hi Rajashree,

Try transaction SCU3 for this. (Program RSVTPROT).

For the change logs to be displayed, make sure you have checked the "Log Changes" checkbox in SE11 for the corresponding table.

This should be sufficient. If not, we have also developped a Z-solution for this.

That requires a change document class thru SCDO transaction.

Regards,

Sameer

sidney_gubany
Discoverer
0 Kudos

The values are not seen because their data element have 254 character lenght that is too large to be seen straight through transaction SE16 or by debug mode.

Use offset addition to take the value, like this:

cdpos-value_new+250(3)

I hope it may help,

Sidney Gubany