CHECK_ACTION_ALLOWED_INT SAP Method of class /BSAM/CL_SAM_RUNTIME
Below is documentation, parameters and attributes of ABAP Method CHECK_ACTION_ALLOWED_INT within SAP class /BSAM/CL_SAM_RUNTIME. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name /BSAM/CL_SAM_RUNTIME into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method CHECK_ACTION_ALLOWED_INT can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CHECK_ACTION_ALLOWED_INT
.| Name | Type | Data Type | Description | Default Value |
| IT_LIST_OF_NODES | Importing | TYPE /BSAM/T_SAM_LIST_OF_NODES | ||
| IT_OBJECT_PROPERTY | Importing | TYPE /BSAM/T_SAM_OBJ_INST_BUF | ||
| IT_OBJECT_STATUS | Importing | TYPE /BSAM/T_SAM_OBJ_STAT_INST_BF | ||
| IV_ACTION_NAME | Importing | TYPE /BSAM/SAM_ACTION | ||
| ET_LIST_OF_NODE_ACTION_INHIBIT | Exporting | TYPE /BSAM/T_SAM_OBJ_ACTION_INH | ||
| ET_LIST_OF_NODE_RESULT | Exporting | TYPE /BSAM/T_SAM_OBJ_ACTION_RESLT | ||
| EV_ERROR_RESULT | Exporting | TYPE XFELD |
Exceptions of Method CHECK_ACTION_ALLOWED_INT
/BSAM/CX_SAM_SCHEMA_UNAVLBL -Example ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lo_class TYPE REF TO /BSAM/CL_SAM_RUNTIME.
DATA: lv_ET_LIST_OF_NODE_ACTION_INHIBIT TYPE /BSAM/T_SAM_OBJ_ACTION_INH,
lv_ET_LIST_OF_NODE_RESULT TYPE /BSAM/T_SAM_OBJ_ACTION_RESLT,
lv_EV_ERROR_RESULT TYPE XFELD,
lv_IT_LIST_OF_NODES TYPE /BSAM/T_SAM_LIST_OF_NODES,
lv_IT_OBJECT_PROPERTY TYPE /BSAM/T_SAM_OBJ_INST_BUF,
lv_IT_OBJECT_STATUS TYPE /BSAM/T_SAM_OBJ_STAT_INST_BF,
lv_IV_ACTION_NAME TYPE /BSAM/SAM_ACTION,
lv_other TYPE c.
CALL METHOD lo_class=>CHECK_ACTION_ALLOWED_INT(
EXPORTING
IT_LIST_OF_NODES = lv_IT_LIST_OF_NODES
IT_OBJECT_PROPERTY = lv_IT_OBJECT_PROPERTY
IT_OBJECT_STATUS = lv_IT_OBJECT_STATUS
IV_ACTION_NAME = lv_IV_ACTION_NAME
IMPORTING
ET_LIST_OF_NODE_ACTION_INHIBIT = lv_ET_LIST_OF_NODE_ACTION_INHIBIT
ET_LIST_OF_NODE_RESULT = lv_ET_LIST_OF_NODE_RESULT
EV_ERROR_RESULT = lv_EV_ERROR_RESULT ).
Links to Related Class(s)
/BSAM/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects