‎2010 Jan 13 4:08 PM
Hi Experts,
I have a situation like this, for a particular condition error message is being implemented and its working fine.
General functionlaity of Error message is it stops the process and abends.
my requirement is error message should come and it should not Abend, is this possible or i have to use information / warnign message.
regards,
jayant.
‎2010 Jan 13 5:50 PM
try this:
if syst-subrc NE 0.
MESSAGE S000 with 'Custom Error Message'.
endif.Cheers,
Pritam
‎2010 Jan 13 4:16 PM
check with display like
message 'No entries found' TYPE 'E' display like 'I'.
Where are you using a error message? This is to be cinsidered.
Edited by: Keshav.T on Jan 13, 2010 9:46 PM
‎2010 Jan 13 4:17 PM
Hi,
you could try:
MESSAGE s001 WITH 'Text' DISPLAY LIKE 'E'.
EXIT.
Will no abend or stop you process.
Regards,
Frisoni
‎2010 Jan 13 4:40 PM
Hi ,
Try this ,
message ....... type S
display like e.
Leave list processing.
Hope this resolves your issue.
‎2010 Jan 13 5:50 PM
try this:
if syst-subrc NE 0.
MESSAGE S000 with 'Custom Error Message'.
endif.Cheers,
Pritam