Link to home
Start Free TrialLog in
Avatar of somits
somits

asked on

Where is the ABAP program code stored?

Hi:

If I'd like to find out where the ABAP programs (code) created by the users are physical stored on SAP systems, where should I look in?

Thanks

Somits
ASKER CERTIFIED SOLUTION
Avatar of jonvaughan
jonvaughan

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of somits
somits

ASKER

Hi jonvaughan:

The source code of ABAP programs is stored on table REPOSRC. For examples, we've 2 differne ABAP developers. One is Developer_1 who creates a Z_Program named Z_prg1; another is Developer_2 who creates a Z_program named Z_prg2.

Both of these programs (Z_prog1 and Z_prog2) are stored in the same table REPOSRC?

Can I display the content of the table REPOSRC? If so, how can I display it?

Thanks,

Somits
yes all the source is held there - however i don't know that you can display it dierectly - you will need to do it programatically - or perhaps just use the editor...
Avatar of somits

ASKER

Hi jonvaughan:

Can I customized the development environment so that the program Z_prg1 of Developer_1 is stored in table REPOSRC_DEV1 and and the program Z-prg2 is stored in table REPOSRC_DEV2.

It means that I've to 2 create 2 customized tables RESPOSRC_DEV1 and RESPOSRC_DEV2, then by some way I set the respective table to each developer. By that way, their Z_programs are stored in different tables.

If it is possible, what I need to do to create the tables and assign the table to the development environment of each developer?

Thanks a lot,

Somits