Skip to Content
0
Former Member
Jan 22, 2012 at 06:51 AM

Catch Exception Error

2015 Views

Is there any way to catch this exception, without checking or changing numerical value.

CATCH SYSTEM-EXCEPTIONS
    convt_no_number = 1
    convt_overflow = 2
    bcd_field_overflow = 3
    bcd_overflow = 4.
 
    DO 10000000000000 TIMES. "<<--Runtime Error-BCD_OVERFLOW (Overflow during an arithmetic operation)
      write:/ sy-index.
    ENDDO.
 
  ENDCATCH.

Regards

Sain