SET_PROCESS_SETTING SAP Method set the Personalization settings user-wise for Processes
Below is documentation, parameters and attributes of ABAP Method SET_PROCESS_SETTING within SAP class CL_PERSONALSE_HELPER. 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 CL_PERSONALSE_HELPER 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 SET_PROCESS_SETTING can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method SET_PROCESS_SETTING
.| Name | Type | Data Type | Description | Default Value |
| IT_PERS_SETTINGS | Importing | TYPE POC_T_PERSONALIZATION | Personalization for Process Monitor - process Table | |
| IV_ELEM_ID | Importing | TYPE CHAR30 | 30 Characters | |
| IV_WD_COMP | Importing | TYPE CHAR30 | 30 Characters |
Exceptions of Method SET_PROCESS_SETTING
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO CL_PERSONALSE_HELPER.
DATA: lv_IT_PERS_SETTINGS TYPE POC_T_PERSONALIZATION,
lv_IV_ELEM_ID TYPE CHAR30,
lv_IV_WD_COMP TYPE CHAR30,
lv_other TYPE c.
CALL METHOD lo_class=>SET_PROCESS_SETTING(
EXPORTING
IT_PERS_SETTINGS = lv_IT_PERS_SETTINGS
IV_ELEM_ID = lv_IV_ELEM_ID
IV_WD_COMP = lv_IV_WD_COMP ).
Links to Related Class(s)
CL_PERSO...Full list of available SAP object classes
Search for further information about these or an SAP related objects