‎2005 Oct 11 1:44 PM
when i'm using text elements like
write text-001.in which dictionary table are those elementes stored?
‎2005 Oct 11 1:48 PM
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
‎2005 Oct 11 1:55 PM
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
‎2005 Oct 11 3:54 PM
‎2005 Oct 11 3:58 PM
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