EVENT_SET_PARAMETERS SAP Method For Events: Parameters 1..9
Below is documentation, parameters and attributes of ABAP Method EVENT_SET_PARAMETERS within SAP class IF_HTMLB_DATA. 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 IF_HTMLB_DATA 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 EVENT_SET_PARAMETERS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method EVENT_SET_PARAMETERS
.| Name | Type | Data Type | Description | Default Value |
| P_PARAM_1 | Importing | TYPE STRING | ||
| P_PARAM_2 | Importing | TYPE STRING | ||
| P_PARAM_3 | Importing | TYPE STRING | ||
| P_PARAM_4 | Importing | TYPE STRING | ||
| P_PARAM_5 | Importing | TYPE STRING | ||
| P_PARAM_6 | Importing | TYPE STRING | ||
| P_PARAM_7 | Importing | TYPE STRING | ||
| P_PARAM_8 | Importing | TYPE STRING | ||
| P_PARAM_9 | Importing | TYPE STRING | ||
| P_PARAM_COUNT | Importing | TYPE I | ||
| P_EVENT_IS_NOT_EVENT | Returning | TYPE XFELD | Checkbox |
Exceptions of Method EVENT_SET_PARAMETERS
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_HTMLB_DATA.
DATA: lv_P_EVENT_IS_NOT_EVENT TYPE XFELD,
lv_P_PARAM_1 TYPE STRING,
lv_P_PARAM_2 TYPE STRING,
lv_P_PARAM_3 TYPE STRING,
lv_P_PARAM_4 TYPE STRING,
lv_P_PARAM_5 TYPE STRING,
lv_P_PARAM_6 TYPE STRING,
lv_P_PARAM_7 TYPE STRING,
lv_P_PARAM_8 TYPE STRING,
lv_P_PARAM_9 TYPE STRING,
lv_P_PARAM_COUNT TYPE I,
lv_other TYPE c.
CALL METHOD lo_class=>EVENT_SET_PARAMETERS(
EXPORTING
P_PARAM_1 = lv_P_PARAM_1
P_PARAM_2 = lv_P_PARAM_2
P_PARAM_3 = lv_P_PARAM_3
P_PARAM_4 = lv_P_PARAM_4
P_PARAM_5 = lv_P_PARAM_5
P_PARAM_6 = lv_P_PARAM_6
P_PARAM_7 = lv_P_PARAM_7
P_PARAM_8 = lv_P_PARAM_8
P_PARAM_9 = lv_P_PARAM_9
P_PARAM_COUNT = lv_P_PARAM_COUNT
RECEIVING
P_EVENT_IS_NOT_EVENT = lv_P_EVENT_IS_NOT_EVENT )
"Alternate coding for Method Call with returning parameter
lv_P_EVENT_IS_NOT_EVENT = lo_class=>EVENT_SET_PARAMETERS(
EXPORTING
P_PARAM_1 = lv_P_PARAM_1
P_PARAM_2 = lv_P_PARAM_2
P_PARAM_3 = lv_P_PARAM_3
P_PARAM_4 = lv_P_PARAM_4
P_PARAM_5 = lv_P_PARAM_5
P_PARAM_6 = lv_P_PARAM_6
P_PARAM_7 = lv_P_PARAM_7
P_PARAM_8 = lv_P_PARAM_8
P_PARAM_9 = lv_P_PARAM_9
P_PARAM_COUNT = lv_P_PARAM_COUNT ).
Links to Related Class(s)
IF_HTMLB...Full list of available SAP object classes
Search for further information about these or an SAP related objects