GET_PERS_FOR_DASHBOARD SAP Method of class /BCV/CL_UIF_PERS
Below is documentation, parameters and attributes of ABAP Method GET_PERS_FOR_DASHBOARD within SAP class /BCV/CL_UIF_PERS. 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 /BCV/CL_UIF_PERS 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 GET_PERS_FOR_DASHBOARD can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_PERS_FOR_DASHBOARD
.| Name | Type | Data Type | Description | Default Value |
| IV_DASHB_CONFIG_ID | Importing | TYPE WDY_CONFIG_ID | Configuration Identification | |
| IV_DASHB_ID | Importing | TYPE /BCV/UIF_DASHB_ID | ID of Dashboard | |
| IV_INCL_CHIPS | Importing | TYPE BOOLEAN | Including Chips | |
| ET_CHIP_INSTANCES | Exporting | TYPE /BCV/T_CHIP_INSTANCE_ID_QVIEW | Table of Chip Instance ID and Query View | |
| ET_CONFIG_KEYS | Exporting | TYPE WDY_PERS_KEY_TABLE | WD: Table with Personalization Keys | |
| ET_MESSAGE | Exporting | TYPE /BCV/T_UIF_MESSAGES | Table of Messages |
Exceptions of Method GET_PERS_FOR_DASHBOARD
This method does not have any exceptionsExample ABAP coding
DATA: lv_ET_CHIP_INSTANCES TYPE /BCV/T_CHIP_INSTANCE_ID_QVIEW,
lv_ET_CONFIG_KEYS TYPE WDY_PERS_KEY_TABLE,
lv_ET_MESSAGE TYPE /BCV/T_UIF_MESSAGES,
lv_IV_DASHB_CONFIG_ID TYPE WDY_CONFIG_ID,
lv_IV_DASHB_ID TYPE /BCV/UIF_DASHB_ID,
lv_IV_INCL_CHIPS TYPE BOOLEAN,
lv_other TYPE c.
CALL METHOD /BCV/CL_UIF_PERS=>GET_PERS_FOR_DASHBOARD(
EXPORTING
IV_DASHB_CONFIG_ID = lv_IV_DASHB_CONFIG_ID
IV_DASHB_ID = lv_IV_DASHB_ID
IV_INCL_CHIPS = lv_IV_INCL_CHIPS
IMPORTING
ET_CHIP_INSTANCES = lv_ET_CHIP_INSTANCES
ET_CONFIG_KEYS = lv_ET_CONFIG_KEYS
ET_MESSAGE = lv_ET_MESSAGE ).
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