‎2008 May 13 10:01 AM
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...!
‎2008 May 13 10:08 AM
‎2008 May 13 10:12 AM
‎2008 May 13 10:14 AM
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.
‎2008 May 13 10:12 AM
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.
‎2008 May 13 10:15 AM
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).
‎2008 May 13 10:18 AM
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.