SET_CHANGE_INDICATOR SAP Method Set change indicator of buffer entry
Below is documentation, parameters and attributes of ABAP Method SET_CHANGE_INDICATOR within SAP class /BCV/CL_AUT_ACL. 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 /BCV/CL_AUT_ACL 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 SET_CHANGE_INDICATOR can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method SET_CHANGE_INDICATOR
.| Name | Type | Data Type | Description | Default Value |
| IS_KEY_DASHBOARD | Importing | TYPE /BCV/S_AUT_KEY_DASHBOARD | Dashboard Key | |
| IS_KEY_QUERYVW | Importing | TYPE /BCV/S_AUT_KEY_QUERYVW | Query View Key | |
| IS_KEY_SNAPSHOT | Importing | TYPE /BCV/S_AUT_KEY_SNAPSHOT | Snapshot Key | |
| IS_KEY_UGRP | Importing | TYPE /BCV/S_AUT_KEY_UGRP | User Group Key | |
| IV_CHANGE_INDICATOR | Importing | TYPE /BCV/AUT_ACO_CHANGE_INDICATOR | Change indicator |
Exceptions of Method SET_CHANGE_INDICATOR
This method does not have any exceptionsExample 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: lv_IS_KEY_DASHBOARD TYPE /BCV/S_AUT_KEY_DASHBOARD,
lv_IS_KEY_QUERYVW TYPE /BCV/S_AUT_KEY_QUERYVW,
lv_IS_KEY_SNAPSHOT TYPE /BCV/S_AUT_KEY_SNAPSHOT,
lv_IS_KEY_UGRP TYPE /BCV/S_AUT_KEY_UGRP,
lv_IV_CHANGE_INDICATOR TYPE /BCV/AUT_ACO_CHANGE_INDICATOR,
lv_other TYPE c.
CALL METHOD /BCV/CL_AUT_ACL=>SET_CHANGE_INDICATOR(
EXPORTING
IS_KEY_DASHBOARD = lv_IS_KEY_DASHBOARD
IS_KEY_QUERYVW = lv_IS_KEY_QUERYVW
IS_KEY_SNAPSHOT = lv_IS_KEY_SNAPSHOT
IS_KEY_UGRP = lv_IS_KEY_UGRP
IV_CHANGE_INDICATOR = lv_IV_CHANGE_INDICATOR ).
Links to Related Class(s)
/BCV/CL_...Full list of available SAP object classes
Search for further information about these or an SAP related objects