Hi
I tried the following code and was hoping to catch the runtime error so it does not create a short dump, but it still dumps..?
DATA OREF TYPE REF TO CX_ROOT.
DATA TEXT TYPE STRING.
TRY.
SUBMIT RPTIME00 AND RETURN
EXPORTING LIST TO MEMORY
WITH PNPPERNR = I_PERNR
WITH SCHEMA = P_SNAME
WITH BEGDATE = LD_BEGDA
WITH ENDDATE = I_ENDDA.
CATCH CX_SY_ARITHMETIC_OVERFLOW INTO OREF.
TEXT = OREF->GET_TEXT( ).
ENDTRY.
This error happens with dev data and should never happen in production, but I'd like to prevent a dump if it does.
Any ideas?
Thanks,
Adrian