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

Dictionary Table for textelements.

rainer_hbenthal
Active Contributor
0 Likes
603

when i'm using text elements like

write text-001.

in which dictionary table are those elementes stored?

4 REPLIES 4
Read only

former_member183804
Active Contributor
0 Likes
569

When you want to access them on code level check out the statement


READ TEXTPOOL prog INTO itab LANGUAGE lang.

If you still need to know the tables ST05 should do the job.

regards

Klaus

Read only

Former Member
0 Likes
569

Hi

Use the comand READ TEXTPOOL to find out the text element of a program:

DATA: PROGRAM(30),

TAB LIKE TEXTPOOL OCCURS 50 WITH HEADER LINE.

PROGRAM = .....

READ TEXTPOOL PROGRAM INTO TAB LANGUAGE SY-LANGU.

Max

Read only

0 Likes
569

T100

Read only

Former Member
0 Likes
569

Hi Rainier,

The database table in <b>REPOTEXT</b> but you cannot directly see the contents in SE16 . You will have to use READ TEXTPOOL to read the data from this table.

Cheers