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 stored table name

Former Member
0 Likes
3,218

Hi,

I need the table name which stores text elements.

4 REPLIES 4
Read only

Subhankar
Active Contributor
0 Likes
1,937

Hi

You can use the READ TEXTPOOL to get the text.

data: prog TYPE PROGNAME VALUE 'Y_SGARANI_FEST_03',

itab TYPE STANDARD TABLE OF TEXTPOOL.

READ TEXTPOOL prog INTO itab LANGUAGE sy-langu.

if sy-subrc = 0.

endif.

Thanks

Subhanakr

Read only

Former Member
0 Likes
1,937

Hi,

Text elements where your creating. In your custom report or in SO10 tcode.

You can use this FM READ_TEXT to read text elements.

Regards,

Shankar.

Read only

manthanraja
Active Participant
0 Likes
1,937

Component of an ABAP program. Contains texts that can be accessed in the ABAP program. Text elements are list headers (standard page header), selection texts, and text symbols. The text elements are created in multilingual text pools of the program and can be used when loading a text pool in the program.* Text element maintenance is called using the transaction code SE32*

Regards

Manthan

Read only

Former Member
0 Likes
1,937

Hi,

RS38M----Table name whichScreen fields Text elements .

INUM-----Field in the table which stores Number of text element.

ITEX132--field name in the table which stores text

You have to use table:STXH and function module: READ_TEXT

points it if useful.

Regards,

Karthik