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

Table that stores ABAP Source Code

Former Member
12,507

Hi,

Can anybody tell me the table that stores program source code?

Thanks,

SAM

1 ACCEPTED SOLUTION
Read only

Former Member
4,901

Hi,

The program code is stored in a table named REPOSRC. The code itself is compressed and you will be unable to access it via SQL or other tools.

And reports are stored in table TRDIR.

D010SINF ABAP: Information about ABAP program source code

D010TINF ABAP: Information about ABAP text elements

Regards,

Archana

Edited by: Archana Kumari on Aug 20, 2009 7:28 AM

5 REPLIES 5
Read only

_IvanFemia_
Active Contributor
0 Likes
4,901

Hi

try REPOSRC

Use READ REPORT statement in your ABAP report

REgards,

Ivan

Read only

Former Member
0 Likes
4,901

Hi Sam,

If your interested in saving the source code in a custom Table or you can check the keyword 'SCAN ABAP SOURCE CODE'. There are many variants for this keyword.Just for Info. Hope it helps!

Much Regards,

Amuktha

Read only

Former Member
4,902

Hi,

The program code is stored in a table named REPOSRC. The code itself is compressed and you will be unable to access it via SQL or other tools.

And reports are stored in table TRDIR.

D010SINF ABAP: Information about ABAP program source code

D010TINF ABAP: Information about ABAP text elements

Regards,

Archana

Edited by: Archana Kumari on Aug 20, 2009 7:28 AM

Read only

former_member156446
Active Contributor
0 Likes
4,901

there you be no table that store in the readable format, the data will be stored in RAW format.. to read the data you might have to use FM's like RPY_PROGRAM_READ or RPY_PROGRAM*

Read only

Former Member
0 Likes
4,901

Thanks all of you.