IS_ACTIVE SAP Method Query Activation State for Checkpoint Group
Below is documentation, parameters and attributes of ABAP Method IS_ACTIVE within SAP class CL_ABAP_AAB_UTILITIES. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name CL_ABAP_AAB_UTILITIES into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Static
This is a Static Method so you can call it directlyThe following technical details of method IS_ACTIVE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method IS_ACTIVE
.| Name | Type | Data Type | Description | Default Value |
| ID | Importing | TYPE AAB_ID_NAME | Checkpoint Group | |
| MODE_ASSERT_BREAK | Importing | TYPE CHAR1 | Activation Type: Stop at ASSERT | |
| MODE_ASSERT_DUMP | Importing | TYPE CHAR1 | Activation Type: Short Dump for ASSERT | |
| MODE_ASSERT_LOG | Importing | TYPE CHAR1 | Activation Type: Log for ASSERT | |
| MODE_BREAKPOINT | Importing | TYPE CHAR1 | Activation Type: Break at Current Breakpoint | |
| MODE_LOGPOINT | Importing | TYPE CHAR1 | Activation Type: Log at Current Logpoint | |
| RESULT | Returning | TYPE CHAR1 | Result: Activation |
Exceptions of Method IS_ACTIVE
This method does not have any exceptionsExample ABAP coding
DATA: lv_ID TYPE AAB_ID_NAME,
lv_MODE_ASSERT_BREAK TYPE CHAR1,
lv_MODE_ASSERT_DUMP TYPE CHAR1,
lv_MODE_ASSERT_LOG TYPE CHAR1,
lv_MODE_BREAKPOINT TYPE CHAR1,
lv_MODE_LOGPOINT TYPE CHAR1,
lv_RESULT TYPE CHAR1,
lv_other TYPE c.
CALL METHOD CL_ABAP_AAB_UTILITIES=>IS_ACTIVE(
EXPORTING
ID = lv_ID
MODE_ASSERT_BREAK = lv_MODE_ASSERT_BREAK
MODE_ASSERT_DUMP = lv_MODE_ASSERT_DUMP
MODE_ASSERT_LOG = lv_MODE_ASSERT_LOG
MODE_BREAKPOINT = lv_MODE_BREAKPOINT
MODE_LOGPOINT = lv_MODE_LOGPOINT
RECEIVING
RESULT = lv_RESULT )
"Alternate coding for Method Call with returning parameter
lv_RESULT = CL_ABAP_AAB_UTILITIES=>IS_ACTIVE(
EXPORTING
ID = lv_ID
MODE_ASSERT_BREAK = lv_MODE_ASSERT_BREAK
MODE_ASSERT_DUMP = lv_MODE_ASSERT_DUMP
MODE_ASSERT_LOG = lv_MODE_ASSERT_LOG
MODE_BREAKPOINT = lv_MODE_BREAKPOINT
MODE_LOGPOINT = lv_MODE_LOGPOINT ).
Links to Related Class(s)
CL_ABAP_...Full list of available SAP object classes
Search for further information about these or an SAP related objects