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

FM for program description

Former Member
0 Likes
739

I need a FM that can take a internal table for list of programs and return their description.

Thanks,

1 ACCEPTED SOLUTION
Read only

former_member156446
Active Contributor
0 Likes
645

use this table

TRDIRT Title texts for programs in TRDIR

loop at itab.

select * from trdirt into itab_desc

where programname = itab-prgname.

endloop.

<REMOVED BY MODERATOR>

Edited by: Alvaro Tejada Galindo on Jan 3, 2008 10:03 AM

4 REPLIES 4
Read only

former_member156446
Active Contributor
0 Likes
646

use this table

TRDIRT Title texts for programs in TRDIR

loop at itab.

select * from trdirt into itab_desc

where programname = itab-prgname.

endloop.

<REMOVED BY MODERATOR>

Edited by: Alvaro Tejada Galindo on Jan 3, 2008 10:03 AM

Read only

Former Member
0 Likes
645

hi

good

i dont think there is any such function module available for the same.

thanks

mrutyun^

Read only

Former Member
0 Likes
645

Why don't you use TRDIR table?

Greetings,

Blag.

Read only

Former Member
0 Likes
645

TRDIRT has details for 70% of the programs but rest still have descriptions in textpool.

I do not have development authorization so looking for a std FM.

Thanks,