‎2006 Sep 13 7:59 AM
Hi All,
In which DB table does SAP stores program name and corresponding text-elements and selection texts used in that program.
There is a table D010TINF which just stores basic information but not the text elements number and name.
Thanks in advance.
Regards,
Atish
‎2006 Sep 13 8:03 AM
hi,
table name - RS38M (take se11 and give this, u can confirm)
field name - STEXTT
rgds
anver
if hlped pls rwrd points
‎2006 Sep 13 8:30 AM
Hi, You can try this function: RS_TEXTPOOL_READ. Only provide the program name, you will get the text-symbols and selection texts.
‎2021 Jan 09 8:19 PM
Hi Robin,
Thanks for the answer. I was able to get both the text elements and selection text using the FM RS_TEXTPOOL_READ.
Logic inside the FM:
DATA: LT_SSCR TYPE TABLE OF RSSCR.
LOAD REPORT P_REPORT PART 'SSCR' INTO LT_SSCR.
IF SY-SUBRC NE 0.
GENERATE REPORT P_REPORT.
IF SY-SUBRC NE 0.
EXIT.
ELSE.
LOAD REPORT P_REPORT PART 'SSCR' INTO LT_SSCR.
ENDIF.
ENDIF.
( Refer include LSLDBFXX, sub-routine LOAD_SSCR)
‎2006 Sep 13 8:34 AM
Hi ,
use abap command:
READ TEXTPOOL P_REP LANGUAGE SY-LANGU INTO ITAB.
A.