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

ABAP debug with replace audit trail

Former Member
0 Likes
755

Hi,

If ABAP debug with replace is used, we need to get the report on what variable (or table) is being changed, including the old and the new values.

Is there any possibility to record the value before being replaced while using ABAP debug with replace ?

We need this in order to have the necessary audit trail when ABAP debug with replace authorization is to be given (this authorization is given upon request, and is closed as soon as the problem is solved).

Thank you very much in advance for any help you can provide.

3 REPLIES 3
Read only

Former Member
0 Likes
532

this is not possible...if u replace values in debug, the old & new values are not stored anywhere...only the new value is shown up after execution....

Try asking basis people if they can help u in this regard....

Read only

0 Likes
532

Hi,

Basis people suggest using ST05 to do SQL trace while debugging, but this will only record new values, ... new values which are going to the database table.

Old values could not be captured this way.

Is there any other way ?

Thank you for your help.

> this is not possible...if u replace values in debug,

> the old & new values are not stored anywhere...only

> the new value is shown up after execution....

>

> Try asking basis people if they can help u in this

> regard....

Read only

Former Member
0 Likes
532

One thing you can do is to make the change then do a version comparison, comparing the current version containing your changes and the previous version. If needed you can create a version prior to making the change. You can display the changes in a single column or parallel. As long as your changes are transported then this comparison remains forever and at anytime the comparison can be viewed again. If you want you can print the comparison. The downside to this is that the comparison will show all changes not just the replacements - but you will always be shown the before and after snapshots.

Andy