Application Development 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: 

Messages

Former Member
0 Kudos

Hi ,

I have a message number ,how do u i find the corresponding message text.

note: good answers will be rewarded with points

7 REPLIES 7

Former Member
0 Kudos

Example if you have

MESSAGE i000(zg) WITH text-008.

double click on <b>text-008</b>,

you will get it under text symbols.

Former Member
0 Kudos

click on tha message.

or go to se93 ,and give message class name and check for message number.

Former Member
0 Kudos

HI,

data:msgtext(100).

select single text from t100 into msgtext where SPRSL = 'EN' and ARBGB = 'ZMSGCLASS' and MSGNR = '100'.

write:/ msgtext.

<b>reward if helpful</b>

rgds,

bharat.

Former Member
0 Kudos

HI vijay

open se93 in disply mode with particular message class

and search option is there for text

search it

Former Member
0 Kudos

Hi Vijay,

Consider this as the message:MESSAGE i022(zclass).

Here zclass is the message class and 22 is the message number.

while double clicking, you can got to the message

or

go to se93 and give the message class name as "zclass" and look for the message number.

Former Member
0 Kudos

hi,

use the FM MESSAGE_TEXT_BUILD. Then it will only display the message text according to the situation in the program.

<b>reward points if helpfull</b>

with regards,

radhika kolluru.

Former Member
0 Kudos

Hi ,

Check the message class for your message number .

For eg : E500( MC message Class )

In SE93 gice this message class and your Message No E500 in above case and select display,

U can now see your text against the corresponding message number .

Or In se38 double click on the Message No , it will navigate to the text .

Praveen.