‎2008 Apr 04 10:16 AM
hi guyz,
can anybody tell me wot statement can i use to abort the program and wrtitng a message the program is aborted....
thanks
‎2008 Apr 04 10:21 AM
Hi,
Use the STOP Statement. In the END- OF-SELECTION create ur message which u wnat to display.
‎2008 Apr 04 10:21 AM
Hi,
Use the STOP Statement. In the END- OF-SELECTION create ur message which u wnat to display.
‎2008 Apr 04 10:25 AM
Use message type A.
Check the syntax,
MESSAGE A001(ZMSG) WITH TEXT-001.
Regards
‎2008 Apr 04 10:40 AM
MESSAGE 'Program aborted' TYPE 'A'.
(or)
MESSAGE A001(ZA).
001 is the message number (your message number)
ZA (your message class)