GET_AC_ATTRIBUTES SAP Method Get authority check fields
Below is documentation, parameters and attributes of ABAP Method GET_AC_ATTRIBUTES within SAP class /SCMTMS/CL_AC_SUPER. 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 /SCMTMS/CL_AC_SUPER 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 GET_AC_ATTRIBUTES can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_AC_ATTRIBUTES
.| Name | Type | Data Type | Description | Default Value |
| IT_AC_ADM | Importing | TYPE TT_AC_ADM | Authority Check Administration | |
| IV_ACT_KEY | Importing | TYPE /BOBF/CONF_KEY | Action Key | |
| IV_AC_TRIGGER | Importing | TYPE /SCMTMS/AC_TRIGGER | Authority Check Trigger | |
| IV_NODE_KEY | Importing | TYPE /BOBF/OBM_NODE_KEY | Node for which service manager method is called | |
| IV_QUERY_KEY | Importing | TYPE /BOBF/OBM_QUERY_KEY | Query | |
| IV_RETR_EDIT_MODE | Importing | TYPE /BOBF/CONF_EDIT_MODE | Retrieve edit mode | |
| IV_SRVMGR_METH | Importing | TYPE SEOCPDNAME | Service manager method name | |
| IV_STATIC | Importing | TYPE ABAP_BOOL | Static or instance based check | |
| ET_AC_NODE_ATTR | Exporting | TYPE /SCMTMS/CL_DATA_CRAWLER=>TT_REQ_NODE_ATTR | AC node attributes |
Exceptions of Method GET_AC_ATTRIBUTES
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /SCMTMS/CL_AC_SUPER.
DATA: lv_ET_AC_NODE_ATTR TYPE /SCMTMS/CL_DATA_CRAWLER=>TT_REQ_NODE_ATTR,
lv_IT_AC_ADM TYPE TT_AC_ADM,
lv_IV_ACT_KEY TYPE /BOBF/CONF_KEY,
lv_IV_AC_TRIGGER TYPE /SCMTMS/AC_TRIGGER,
lv_IV_NODE_KEY TYPE /BOBF/OBM_NODE_KEY,
lv_IV_QUERY_KEY TYPE /BOBF/OBM_QUERY_KEY,
lv_IV_RETR_EDIT_MODE TYPE /BOBF/CONF_EDIT_MODE,
lv_IV_SRVMGR_METH TYPE SEOCPDNAME,
lv_IV_STATIC TYPE ABAP_BOOL,
lv_other TYPE c.
CALL METHOD lo_class=>GET_AC_ATTRIBUTES(
EXPORTING
IT_AC_ADM = lv_IT_AC_ADM
IV_ACT_KEY = lv_IV_ACT_KEY
IV_AC_TRIGGER = lv_IV_AC_TRIGGER
IV_NODE_KEY = lv_IV_NODE_KEY
IV_QUERY_KEY = lv_IV_QUERY_KEY
IV_RETR_EDIT_MODE = lv_IV_RETR_EDIT_MODE
IV_SRVMGR_METH = lv_IV_SRVMGR_METH
IV_STATIC = lv_IV_STATIC
IMPORTING
ET_AC_NODE_ATTR = lv_ET_AC_NODE_ATTR ).
Links to Related Class(s)
/SCMTMS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects