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

Data base table for text elements

Former Member
0 Likes
5,091

Hi ,

Can any body tell me where the Text symbols and the text will be stored,

when we create text elements like Text-001. it should be stored some where in the data baste tables, there is one strucuture TEXTPOOL, in this structure we have corresponding fields but data ins not stored here, if any body know the table name

to store these text-symbold texts please let me know.

Thanks,

Tirumal Reddy..

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
2,583

Check the table T100. The messages table.

which has the fields

SPRSL Language Key

ARBGB Application Area

MSGNR Message number

TEXT Message text

Reward Points if useful.

10 REPLIES 10
Read only

Former Member
0 Likes
2,583

check with table.

CIFTXTPOOL - Table for Storing Additional Integration Model Texts

Regards,

Maha

Read only

0 Likes
2,583

Hi Mahalakshmi,

Thanks for the quick reply, CIFTXTPOOL Table for Storing Additional Integration Model Texts, but incase of when we declare text elements like text-001 this will be used in particular program, and with the same id we can create in other programs also, so how do we identify the text elements.is there any group or id for the text elements where all the corresponding program text elements will be stored..

Thankd,

Tirumal

Read only

former_member386202
Active Contributor
0 Likes
2,583

Hi,

Check Tables

WRF_DISCONT_ERR Error Log and Valuation Levels - Seas. Proc. Discontinuation

T181O Customizing Lists: Assign Transaction and Report

TEXTNR Internal ABAP/4 text number

T181S Customizing List: Possible Display Groups

TEXTNR Internal ABAP/4 text number

TCB_PIE1 PI Assistant: Assigning Screen ID to Calling Function Modul

TITEL Internal ABAP/4 text number

ZPS11 Project system: Text symbol assignment standard project

TXTNR Internal ABAP/4 text number

ZPS12 Project system: Text symbol assign. Standard netw/Routing

TXTNR Internal ABAP/4 text number

ZPS12F Project system: Text symbol assign. Standard netw/Routing

TXTNR Internal ABAP/4 text number

ZPS13 Proj.system: Text symbol assign. proced. std.netw./wrk ctr

TXTNR Internal ABAP/4 text number

ZPS14 Project System: Text Symbol Assignment - Milestones

TXTNR Internal ABAP/4 text number

ZPS21 Project system: Text symbol assignment standard project

Regards,

Prashant

Message was edited by:

Prashant Patil

Read only

Former Member
0 Likes
2,584

Check the table T100. The messages table.

which has the fields

SPRSL Language Key

ARBGB Application Area

MSGNR Message number

TEXT Message text

Reward Points if useful.

Read only

0 Likes
2,583

Hi Sravan thanks for the quick reply..

this table is used to store the messages only, my requirement is abt text elements and selection texts, like parameter names ..

Read only

0 Likes
2,583

Hi,

for text elements and selection texts, like parameter names ..

goto menu path GOTO > Text Elements >and select your text

like List Headings, Selection Texts, Text Simbols.

<b>check the table and field : RS38M-STEXTT

Description: Long text for select-option/parameter

Description of specified selection text (SELECT-OPTION, PARAMETER). This description appears on the selection screen.</b>

Reward Points if useful.

Read only

0 Likes
2,583

Sravan,

goto-textelements here we can create the text elements and text symbols that is correct, my requirement is where these texts will be stored..

Thanks,

Tirumal.

Read only

0 Likes
2,583

<b>check the table : RS38M

and field : STEXTT

This is the place where the messages of Select Option and Parameter are stored.

Description: Long text for select-option/parameter

Description of specified selection text (SELECT-OPTION, PARAMETER). This description appears on the selection screen.</b>

Reward Points if useful.

Read only

0 Likes
2,583

Sravan,

RS38M IS STRUCTURE, this is not table. so it cannot hold any data.. there r no records in this..

Read only

matt
Active Contributor
0 Likes
2,583

Forget about the db table, I doubt you'd need it directly. Use the ABAP command:

READ TEXTPOOL prog INTO itab LANGUAGE lang. This gets you all the texts associated with "prog".

If you modify them, then you need to use the ABAP command INSERT TEXTPOOL.

matt