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

SAP TABLE for ABAP programs

Former Member
0 Likes
27,428

Hello, just a quick little question? What is the table where all the abap report programs are stored? Thank you all and good day.

1 ACCEPTED SOLUTION
Read only

Former Member
12,265

TRDIR

Regards,

Shashank

8 REPLIES 8
Read only

Former Member
0 Likes
12,265

Hi Chad,

check this table JBRGENPROG

check this also REPOSRC

Message was edited by: Sekhar

Read only

Former Member
12,266

TRDIR

Regards,

Shashank

Read only

Former Member
0 Likes
12,265

Table TADIR stores the program names (PGMID = R3TR and OBJECT = PROG)

Nicola

Read only

Former Member
0 Likes
12,265

Hi chad,

You can check this info in tables

<b>TRDIR</b> and <b>D010SINF</b>.

And include programs info you can find in the table

<b>D010INC</b>.

Hope this will help you.

Thanks&Regards,

Srilatha.

Read only

Former Member
0 Likes
12,265

hi,

look in table <b>TRDIR</b> .

regards

vijay

Read only

Former Member
0 Likes
12,265

Hi chad,

1. REPOSRC

This is the actual table,

where the report program

and its source code (in raw format)

is stored.

2 TRDIR is just a view on this table.

3. Please note that we cannot

modify this REPOSRC table

using Sqls.

regards,

amit m .

Read only

Former Member
0 Likes
12,265

TADIR is the table for SAP programs. It contains the repository objects.

JBRGENPROG is the table for generated programs having timestamp details.

REPOSRC is the table for Report source code in compressed format.

Regards,

Sangeeta

Read only

0 Likes
12,265

You can read the source code of the program by....



report zrich_0001
       no standard page heading
       line-size 300.

tables: trdir.


data: begin of s occurs 0,
      txt(300) type c,
      end of s.

parameters: p_report(30) type c.

start-of-selection.

  clear s. refresh s.
<b>  read report p_report into s.      </b>     "Get source into table S

  loop at s.
    write:/ s-txt.

  endloop.

REgards,

Rich Heilman