‎2006 Nov 02 12:05 PM
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
‎2006 Nov 02 12:07 PM
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
‎2006 Nov 02 12:07 PM
‎2006 Nov 02 12:16 PM
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_READand 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
‎2006 Nov 02 2:47 PM
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
‎2006 Nov 03 5:23 AM
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