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

message problem

Former Member
0 Likes
656

hi gurus when i use

MESSAGE ID '00' TYPE 'I' NUMBER 398

WITH it_ad-id 'numaralı kullanıcı sistemde aktif deildir'.

this structure in the program, program have been ended. my question is why ? program has to be contunie after message...!

6 REPLIES 6
Read only

Former Member
0 Likes
635

check the message class name is properly given

Read only

Former Member
0 Likes
635

i do not found any message class, where can i give it ?

Read only

0 Likes
635

the value for message id is the name of the message class....check that you are passing the message class name properly...

else if it is dumping, you can check in ST22 and analyse the reason for it.

Read only

Former Member
0 Likes
635

The message number has to belong to some message class, actually it searches for the class at runtime, and when you do not mention a message class, it might give u a dump or somthing.

Read only

Former Member
0 Likes
635

in this structure

MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno

WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.

message id is the class, type is information, number is the number of message u r giving...

give it like this

MESSAGE i041(M3).

Read only

Former Member
0 Likes
635

or give it like this

MESSAGE ID 'M3' TYPE 'I' NUMBER 398

Here you r giving '00' in the message class, which might not exist, hence it giving you a short dump.