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 elements and selection texts

Former Member
0 Likes
4,551

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

4 REPLIES 4
Read only

anversha_s
Active Contributor
0 Likes
2,281

hi,

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

field name - STEXTT

rgds

anver

if hlped pls rwrd points

Read only

2,281

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

Read only

0 Likes
2,281

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)
Read only

andreas_mann3
Active Contributor
2,281

Hi ,

use abap command:

READ TEXTPOOL P_REP LANGUAGE SY-LANGU INTO ITAB.

A.