‎2007 Feb 28 8:29 AM
‎2007 Feb 28 8:30 AM
here v-title is a variable and error message will display with that text which is stored in the variable v_title.
regards
shiba dutta
‎2007 Feb 28 8:32 AM
An error message with number 224 will be displayed along with value in the variable v_title.
‎2007 Feb 28 8:33 AM
MESSAGE E224 WITH V_TITLE. means it is a error message with text v_title ...
Regards,
Santosh
‎2007 Feb 28 8:35 AM
hi,
An error message with number 224 will be displayed along with value in the variable v_title.
E224 (double click on it it will take you to the transaction se93)
there you will give error messages or success messages.
Sri
pls :award points if useful
‎2007 Feb 28 8:36 AM
Hi,
Please check your message class (check the no 224). There one place holder there, that was filling by V_TITLE.
Raising error message 224 with value of V_TITILE for place holder replacement.
If helps plz reward points.
Regards
Bhupal Reddy
‎2007 Feb 28 8:36 AM
Here v_title is a variable and error message will be displayed with text which is stored in the number 224 with parameter v_title.
For this u need to mention the message id '---' in REPORT statement in which this message no 224 is defined.
‎2007 Feb 28 11:42 AM
It is an error message no. 224 availble in message class with the text in v_text
‎2007 Feb 28 12:00 PM
Srinivas,
I think the replies which you got are not the one you are looking for.If so,let me know what exactly you are looking for and under which circumstances are you getting the same.
To get a better understanding
GET THE MESSAGE CLASS WHAT YOU ARE USING FROM THE PROGRAM
GO TO SE91.
TYPE THE MESSAGE CLASS AND THE MESSAGE NUMBER
THIS WILL TAKE YOU TO THE LIST WHERE THE MESSAGE TEXT EXISTS.
********
Go to the program and put a break point at the Condition where they are displaying this message to get the clear picture of what the program is doing at that point.
K.Kiran.
‎2007 Feb 28 12:04 PM
In This Statement 224 is the message no from Message Class which is Created In SE91 and Used at the Top of the program.And the message type is Error and V_title is the variable which is having some value
‎2007 Feb 28 1:49 PM
Messages are used in the abap program when you want to stop the program based on some conditions.
To have messages
Message class has to be created using TCode - SE91
In that message class enter the text for message number.
there are 3 types of error messages success/information/error.
For Ex: In the selection screen if user enters irrelavant/wrong data , then you can give error message.