Application Development and Automation 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: 
Read only

please

Former Member
0 Likes
1,169

MESSAGE E224 WITH V_TITLE.

clear explantion of above line.

10 REPLIES 10
Read only

Former Member
0 Likes
1,090

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

Read only

Former Member
0 Likes
1,090

An error message with number 224 will be displayed along with value in the variable v_title.

Read only

Former Member
0 Likes
1,090

MESSAGE E224 WITH V_TITLE. means it is a error message with text v_title ...

Regards,

Santosh

Read only

Former Member
0 Likes
1,090

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

Read only

Former Member
0 Likes
1,090

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

Read only

Former Member
0 Likes
1,090

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.

Read only

Former Member
0 Likes
1,090

It is an error message no. 224 availble in message class with the text in v_text

Read only

kiran_k8
Active Contributor
0 Likes
1,090

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.

Read only

Former Member
0 Likes
1,090

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

Read only

Former Member
0 Likes
1,090

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.