sapdev logo background
sapdev logo sapdev logo
Comments

ABAP READ TEXTPOOL Statement syntax, information and example SAP source code



Return to Statement index



READ TEXTPOOL

Short Reference

ABAP Syntax READ TEXTPOOL prog INTO itab LANGUAGE lang.

What does it do? This statement reads the text elements of the text pool of the language specified in
lang and the program specified in prog from the repository and places them into the internal table itab . The previous content of itab is deleted. If the text elements cannot be read, then the content of
itab remains unchanged.
prog expects a flat character-like data object, which contains the name of the program of the text elements to be read; the name is not case-sensitive. The internal table itab can be in any table category and its row type must correspond to the TEXTPOOL structure in ABAP Dictionary.
lang expects a character-like flat data object. This must contain a language key with a maximum length of one character, and this value must be contained in the column SPRAS of the database table
T002 . If lang contains a space, the behavior is undefined.
After a successful read, itab contains, in the ENTRY column, the texts of the text symbols, the selection texts, the list headers , and the title from the program attributes . Every text element that exists for the specified language occupies one row of the internal table and is identified uniquely by the columns ID and KEY . The column LENGTH contains the length of the text element. The table below shows the possible values of the columns ID
and KEY and their meaning:

ID KEY ENTRY
H001 through 004List header Column headers
IID of a text symbolText of the text symbol
R-Program title
SName of a parameter or selection criterion Selection text
T-List header Title bar

System Fields
sy-subrc Meaning
0At least one text element was read.
4The program specified in prog or the language specified in lang does not exist or there is no text pool in the specified language.

Latest notes: You can see which program types support text pools in the table of program types . sy-subrc is always set to 4, for programs without text pools.

When handling global classes and function groups , note that the name of the wrapper program must be specified in the repository and not the name of the class or function group. The way these names are created is documented in the statements CLASS-POOL and FUNCTION-POOL .

For selection texts that are not taken from ABAP Dictionary, the actual text in ENTRY is preceded by eight blanks.

Selection texts taken from ABAP Dictionary are not stored in the text pool and cannot be read with READ TEXTPOOL . They contain a "D" in the first position of ENTRY . To read the selection texts stored in ABAP Dictionary, use the function module RS_TEXTPOOL_READ .

Example ABAP Coding See INSERT TEXTPOOL
Documentation extract taken from SAP system, � Copyright SAP AG. All rights reserved




READ_TABLE_TRANSPORT_OPTIONS
READ_TEXTPOOL_INTERNAL




comments powered by Disqus