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: 

how to track changes in an ABAP program

Former Member
0 Kudos

Hi,

I have a program being changed by 3 people one after another !! I want to know what were the changes made by each of the them !! Just like tracking the changes in a CVS !!

How to do that in ABAP workbench ??

thanks

1 ACCEPTED SOLUTION

RichHeilman
Developer Advocate
Developer Advocate

Use Version Management, in SE38, enter the program name, click utilities, versions, version management. You can compare different versions of the program.

Regards,

Rich Heilman

6 REPLIES 6

RichHeilman
Developer Advocate
Developer Advocate

Use Version Management, in SE38, enter the program name, click utilities, versions, version management. You can compare different versions of the program.

Regards,

Rich Heilman

sreemsft
Contributor
0 Kudos

Hi,

Go to Utilities --> Versions --> Version Managment ..

You can find Different changes by different authors.

You can check any one of them and Click on Compare or F8.

Thanks,

Sreekanth G

Former Member
0 Kudos

Are they making the changes under a same CR? If so there is actually no way to track the changes made by individual user, unless they put some comments. In such a case, the other option is to have individual users generate a version after completing their changes (but ensuring that no other user makes a change at the same time by using editor lock and releasing the editor lock after generating a version).. Once the version is generated, u can use change management

If the changes are made under different CR, then you can use version management as suggested by Rich.

abdul_hakim
Active Contributor
0 Kudos

hi

use version management...

Abdul

former_member188685
Active Contributor
0 Kudos

Hi,

you can use the version management in se38.

in menu Utilities->versions->version management.

and check the versions.

if it is temp program you need to generate the version explicitly to track the changes(before and after).

thanks

vijay

0 Kudos

Thanks to all !!