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

Function Module that returns all Program Texts (Selection Texts, Text Symbols and List Heading)

Former Member
0 Likes
3,743

Hi all,

I'd like to know if there's a FM that returns all Program Texts  (Selection Texts, Text Symbols and List Heading) or, maybe, a DD table.

Thanks

1 ACCEPTED SOLUTION
Read only

RaymondGiuseppi
Active Contributor
0 Likes
1,690

The statement READ TEXTPOOL prog INTO itab LANGUAGE lang. reads the text elements of a program in an internal table.

You can also call FM like RS_TEXTPOOL_READ (pass an explicit space value in parameter ACTION)

(You can fin many other FMs performing a where-used in FM interfaces on structure TEXTPOOL)

Regards,

Raymond

3 REPLIES 3
Read only

RaymondGiuseppi
Active Contributor
0 Likes
1,691

The statement READ TEXTPOOL prog INTO itab LANGUAGE lang. reads the text elements of a program in an internal table.

You can also call FM like RS_TEXTPOOL_READ (pass an explicit space value in parameter ACTION)

(You can fin many other FMs performing a where-used in FM interfaces on structure TEXTPOOL)

Regards,

Raymond

Read only

Former Member
0 Likes
1,690

Hi,

Check the bellow link for using the fm 'RS_TEXTPOOL_READ'.

http://help.sap.com/abapdocu_702/en/abapread_textpool.htm

http://scn.sap.com/thread/1871797

Read only

Former Member
0 Likes
1,690

Thank you for your help, fm 'RS_TEXTPOOL_READ' is exactly what I need