‎2005 Aug 04 9:12 AM
I want to put some gloabl constant text content in ABPA,
LIKE the message class used by the command
<b> MESSAGE xnnn(mid).</b>
if I can't do it directly, May I get the text in the message class into an variable?
‎2005 Aug 04 9:15 AM
MESSAGE xnnn(mid) INT0 <variable> to get the text of the message
‎2005 Aug 04 9:22 AM
What i want to ,
Is like the variable to get the text element,
but the text element is belong to a report.
I want to get the const text by the variable in any abap programme.
‎2005 Aug 04 9:25 AM
Hi,
you mean message from table t100 ?
SELECT SINGLE text FROM t100 INTO text
WHERE sprsl = sy-langu
AND arbgb = msgid
AND msgnr = msgnr.
regards Andreas
‎2005 Aug 04 9:27 AM
You can get text element by stmt:
READ TEXTPOOL prog ... INTO itab ... LANGUAGE lg.
Svetlin