SAP CHECKPOINT ABEXA



Get Example source ABAP code based on a different SAP table
  



Checkpoints and Checkpoint Groups
This example demonstrates the various checkpoints and their binding to a checkpoint group.

ABAP_SOURCE_CODE
ABAP_EXEC

ABAP_DESCRIPTION
The example includes the following:
A logpoint
A breakpoint
An assertion
All of these are linked with the checkpoint group DEMO_CHECKPOINT_GROUP.
The Activation function in transaction SAAB can be used to individually set the activation functions of this checkpoint group for the three checkpoints.
For example, if the following settings are made:
Break for breakpoints
Log for logpoints
Abort for assertions
and the default values for the parameters are applied,
the statement LOG-POINT writes an entry to a log that can be analyzed after the program is executed in transaction SAAB,
the program stops at the statement BREAK-POINT in the ABAP Debugger,
an ASSERTION_FAILED runtime error occurs for the statement ASSERT because field2 is initial.
If the activation settings are all inactive, all checkpoints are ignored.