Application Development 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: 

Text Elements stored table name

former_member182008
Participant
0 Kudos
1,922

Hi,

I need the table name which stores text elements.

4 REPLIES 4

Subhankar
Active Contributor
0 Kudos
641

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

former_member182426
Active Contributor
0 Kudos
641

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.

manthanraja
Active Participant
0 Kudos
641

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

Former Member
0 Kudos
641

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