SAP RUNTIME ERROR DATA OBJ - Guide
Get Example source ABAP code based on a different SAP table
Runtime Errors when Accessing Data Objects
ABAP_BACKGROUND
Using data objects can cause runtime errors if the data object contains unsuitable content or the access to the data object is unsuitable. Examples:
ABAP_RULE
You need to prevent runtime errors that can occur when accessing data objects. Robust applications should always be programmed to avoid these errors.
ABAP_DETAILS
If it is not possible to determine whether subsequent access causes errors by filling data objects appropriately, either the relevant properties must be checked before the data is accessed or possible exceptions (subclasses of
ABAP_EXAMPLE_BAD
The following source code illustrates a typical situation that can easily cause a runtime error if the subarea defined by
...
substring = text+offset(length).
...>
ABAP_EXAMPLE_END
ABAP_EXAMPLE_GOOD
The following two pieces of source code illustrate how the above example can be changed to avoid runtime errors using prevention or exception handling.
substring = text+offset(length).
ELSE.
...
ENDIF.>
substring = text+offset(length).
CATCH cx_sy_range_out_of_bounds.
...
ENDTRY.>
ABAP_EXAMPLE_END