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

Text elements in which table

Former Member
0 Likes
3,950

Please let me know in which table/tables text elements, selection texts of ABAP program are saved in.

And is there any link wherein we can find out to which program they are associated with.

Need answer urgently. Replies will be rewarded with points.

Kartavya

5 REPLIES 5
Read only

anversha_s
Active Contributor
0 Likes
1,676

hi,

table name - RS38M (take se11 and give this, u can confirm)

field name - STEXTT

<i>You can try this function: RS_TEXTPOOL_READ. Only provide the program name, you will get the text-symbols and selection texts

use abap command:

READ TEXTPOOL P_REP LANGUAGE SY-LANGU INTO ITAB.</i>

rgds

anver

if hlped pls rwrd points

Message was edited by: Anversha s

Read only

Former Member
0 Likes
1,676

Hi,

Check the table T100

regards

Chandra

Read only

Former Member
0 Likes
1,676

Hi,

I suggest you to use the abap command

READ TEXTPOOL P_REP LANGUAGE SY-LANGU INTO ITAB.

or use the Function module

RS_TEXTPOOL_READ

and pass object name as the <b>program name</b> and the action as <b>EDIT</b>.

You would get all the screen elements in the interial table.

hope this helps you.

~thomas

Read only

Former Member
0 Likes
1,676

hi Kartavya Kaushik

The text displayed on the selection screen or output screen of an ABAP report.

Text elements are used to store texts displayed on the selection screens or output screens of ABAP reports, but are not hard-coded in programs. The different types of text element include:

Report or program titles

List headers

Column headers

Selection texts

Text symbols

Read only

0 Likes
1,676

Thanks for the reply but my question about the link to the program was that is there any table which gives me program name and the text elements attached to it.

Kartavya