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

which table it is maintained Prgram name & Description

Former Member
0 Likes
1,431

Hi folks,

can you please let me know how to find program discription based on Program name.

could you let me know the table which is maintained both program name & Description.

Best Regards,

Lakshmi

Hi folks,

can you please let me know how to find program discription based on Program name.

could you let me know the table which is maintained both program name & Description.

Best Regards,

Lakshmi

7 REPLIES 7
Read only

Former Member
0 Likes
1,155

chk this table

TRDIRT

pls reward points for helpful answers and close thread if solved

Message was edited by: Sekhar

Read only

Former Member
0 Likes
1,155

Hai Vijaya

Check with TRDIR DD02L

TRDIRE Program attributes (from PROGRAM statement

TRDIRT Title texts for programs in TRDIR

TRDIRTI Title Texts for Programs in PROGDIR (Inact

DD01L

DD01T

DD02ALL

DD02DB2

DD02DB6

DD02INF

DD02L

DD02MSS

DD02T

DD03L

DD03T

DD04L

DD04T

DD05S

DD06L

DD06T

DD07L

DD07T

DD08L

DD08T

DD09C

DD09L

Thanks & regards

Sreenivasulu P

Message was edited by: Sreenivasulu Ponnadi

Message was edited by: Sreenivasulu Ponnadi

Read only

Former Member
0 Likes
1,155

Hi Vijya,

You can get the name of program/report from table <b>tadir or trdir</b>

Now use following code to get program text:

data: it_ptext type textpool occurs 0 with header line.

READ TEXTPOOL prog_name INTO itab LANGUAGE sy-langu.

READ TABLE itab WITH KEY id = 'R'.

Note: Reward marks for helpful replies.

Read only

0 Likes
1,155

REPOSRC

Read only

Former Member
0 Likes
1,155

You can find description from TRDIRT.

pass program name for 'NAME' and get text from 'TEXT'.

Read only

Former Member
0 Likes
1,155

TRDIRT Title texts for programs

Read only

Former Member
0 Likes
1,155

You could find program description from TRDIRT table.