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 for Text elememnts, Selection texts?

former_member202077
Participant
0 Likes
1,976

Hi

Pls. let me know that,

1) Where the TEXT ELEMENTS (Report Prog., FM etc) are stored, Which table its?

2) Where the SELECTION TEXTS (Selection screen labels of a Report Prog.) are stored, Which table its?

Actually, I tried from debugging and 'F1' help but, no success!!

Thank you

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,078

You can get text elements of the program using FM READ_TEXT_ELEMENTS

Check the below thread for sample pgm.

or Use the ABAP command:

READ TEXTPOOL prog INTO itab LANGUAGE lang. This gets you all the texts associated with "prog".

DATA: PROG LIKE SY-REPID VALUE 'PROGNAME',

ITAB LIKE TEXTPOOL OCCURS 50 WITH HEADER LINE.

READ TEXTPOOL PROG INTO ITAB LANGUAGE SY-LANGU.

1 REPLY 1
Read only

Former Member
0 Likes
1,079

You can get text elements of the program using FM READ_TEXT_ELEMENTS

Check the below thread for sample pgm.

or Use the ABAP command:

READ TEXTPOOL prog INTO itab LANGUAGE lang. This gets you all the texts associated with "prog".

DATA: PROG LIKE SY-REPID VALUE 'PROGNAME',

ITAB LIKE TEXTPOOL OCCURS 50 WITH HEADER LINE.

READ TEXTPOOL PROG INTO ITAB LANGUAGE SY-LANGU.