2006 Jun 19 2:05 AM
HI Friends,
If Sy-Subrc <> 0.
message e001(zsd).
Endif.
The above code gives me an error message if the condition is not met and it dosent let me excute the code further. However i want the code to be excuted further even if the condition is not met. Something like a warning message.
Shejal.
2006 Jun 19 2:21 AM
If you would like to issue a warning message, then use a warning message.
Message <b>W</b>001(ZSD).Doing so, will issue a warning message, user can continue processing but hitting enter.
Regards,
Rich Heilman
2006 Jun 19 2:21 AM
2006 Jun 19 2:25 AM
2006 Jun 19 2:21 AM
it depends on which event you are issuing the message from but generally 'S' will allow flow to continue and show the message on the bottom of the next screen shown, 'I' mesages give apopup box and then continue.
so you could use
message s001(zsd).
or
message I001(zsd).
| User | Count |
|---|---|
| 6 | |
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |