2006 Oct 17 8:25 AM
Hi Gud Morning
I am Srikanth frm HYDERABAD
Messages are created using transacode se91 , But I want the sequential procedure to create a message explaining all the fields in it.
Regards,
SRIKANTH
2006 Oct 17 8:25 AM
2006 Oct 17 8:27 AM
Hi,
Refer this link...
http://help.sap.com/saphelp_nw2004s/helpdata/en/d1/801b3e454211d189710000e8322d00/frameset.htm
Thanks and Regards,
Bharat Kumar Reddy.V
2006 Oct 17 8:35 AM
hi,
create msg class first using se91
then create messages
for eg if u create msg class Z01 and message 199.
if u need it to be a error message, call in the following manner in the program
MESSAGE E199(Z01)
*Reward points for helpful answers
2006 Oct 17 8:49 AM
Hi ,
Follow this to use mesages inyour application.
1. GOTO SE91
2. CREATE MESSAGE CLASS <zmclass>.
3. select the messages option where you will get mesage numbers .
You may or may not provide the description of the messages here.
ACTIVATE THE MESSAGE CLASS .
nOW IN A PROGRAM .
1. report PROGRAM.
pROVIDE THE MESSAGECALSS NAME WITHIN REPORT STTEMENT.
REPORT Zreport message-id <msgcalss>.
Use message <msgtyp><msgnumber>.
msgtyp maybe ERROR---E
WARNING---W
INFORMATION----I
STATUS-----S
ABAORT/TERMINATE----X(NEVER USE THIS )
iF THE MESSAGE DESCRIPTION IS NOT PROVIDED THEN
Use message <msgtyp><msgnumber> WITH <text>.
for further notes ont his Press F1 on message statement .
regards,