‎2007 Dec 13 5:58 AM
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..
‎2007 Dec 13 6:05 AM
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.
‎2007 Dec 13 6:00 AM
check with table.
CIFTXTPOOL - Table for Storing Additional Integration Model Texts
Regards,
Maha
‎2007 Dec 13 6:30 AM
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
‎2007 Dec 13 6:03 AM
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
‎2007 Dec 13 6:05 AM
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.
‎2007 Dec 13 6:21 AM
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 ..
‎2007 Dec 13 6:29 AM
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.
‎2007 Dec 13 6:32 AM
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.
‎2007 Dec 13 6:37 AM
<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.
‎2007 Dec 13 6:48 AM
Sravan,
RS38M IS STRUCTURE, this is not table. so it cannot hold any data.. there r no records in this..
‎2007 Dec 13 8:42 AM
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