RETRIEVE_ACO_ROLES_DERIVED SAP Method Retreives authorizations list
Below is documentation, parameters and attributes of ABAP Method RETRIEVE_ACO_ROLES_DERIVED within SAP class /RPM/CL_ACL_API. 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 /RPM/CL_ACL_API 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 RETRIEVE_ACO_ROLES_DERIVED can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method RETRIEVE_ACO_ROLES_DERIVED
.| Name | Type | Data Type | Description | Default Value |
| IN_BO_NODE_NAME | Importing | TYPE STRING | ||
| IN_EDIT_MODE | Importing | TYPE I | ||
| IN_FILL_PROPERTIES | Importing | TYPE SESF_BOOLEAN | ||
| IN_KEYS | Importing | TYPE INDEX TABLE | ||
| IN_MESSAGE_BUFFER | Importing | TYPE REF TO /RPM/IF_MESSAGE_BUFFER | Message Handler Interface | |
| IN_PROPERTY_HANDLER | Importing | TYPE REF TO /RPM/IF_PROPERTY_HANDLER | Attribute Handler Interface | |
| IN_RETRIEVE_BEFORE_IMAGE | Importing | TYPE SESF_BOOLEAN | ||
| OUT_DATA | Exporting | TYPE INDEX TABLE | ||
| OUT_FAILED_KEYS | Exporting | TYPE INDEX TABLE |
Exceptions of Method RETRIEVE_ACO_ROLES_DERIVED
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /RPM/CL_ACL_API.
DATA: lv_IN_BO_NODE_NAME TYPE STRING,
lv_IN_EDIT_MODE TYPE I,
lv_IN_FILL_PROPERTIES TYPE SESF_BOOLEAN,
lv_IN_KEYS TYPE INDEX TABLE,
lv_IN_MESSAGE_BUFFER TYPE /RPM/IF_MESSAGE_BUFFER,
lv_IN_PROPERTY_HANDLER TYPE /RPM/IF_PROPERTY_HANDLER,
lv_IN_RETRIEVE_BEFORE_IMAGE TYPE SESF_BOOLEAN,
lv_OUT_DATA TYPE INDEX TABLE,
lv_OUT_FAILED_KEYS TYPE INDEX TABLE,
lv_other TYPE c.
CALL METHOD lo_class=>RETRIEVE_ACO_ROLES_DERIVED(
EXPORTING
IN_BO_NODE_NAME = lv_IN_BO_NODE_NAME
IN_EDIT_MODE = lv_IN_EDIT_MODE
IN_FILL_PROPERTIES = lv_IN_FILL_PROPERTIES
IN_KEYS = lv_IN_KEYS
IN_MESSAGE_BUFFER = lv_IN_MESSAGE_BUFFER
IN_PROPERTY_HANDLER = lv_IN_PROPERTY_HANDLER
IN_RETRIEVE_BEFORE_IMAGE = lv_IN_RETRIEVE_BEFORE_IMAGE
IMPORTING
OUT_DATA = lv_OUT_DATA
OUT_FAILED_KEYS = lv_OUT_FAILED_KEYS ).
Links to Related Class(s)
/RPM/CL_...Full list of available SAP object classes
Search for further information about these or an SAP related objects