Get Example source ABAP code based on a different SAP table
Exception Handling in ABAP Release 7.72 ITOC
ABAP_MODIFICATION_NN Raising Runtime Errors>
The new statement RAISE SHORTDUMP>> raises runtime errors> linked with an exception object>. This means more information can now be passed to the short dump> than was previously possible in an exit message>.
ABAP_MODIFICATION_NN Last Message in a Chain of Exception Objects >
The new method GET_LATEST_T100_EXCEPTION> in the class CL_MESSAGE_HELPER>> is used to return the last object in a chain of exception objects that has an exception text> defined by a message. Here, the chain is created using the attribute PREVIOUS>.
ABAP_MODIFICATION_NN Setting the Attribute IS_RESUMABLE>>
After an exception is raised using the statement RAISE RESUMABLE EXCEPTION>> and caught using the statement CATCH BEFORE UNWIND> >, the attribute IS_RESUMABLE> is set for all previous exception objects referenced in the attribute PREVIOUS> and not just for the current exception object. Up until the first resumable exception in the chain IS_RESUMABLE> is set to the value of abap_true> and is set to the value of abap_false> otherwise.