HANDLE_ONF4 SAP Method Handle F4 event for Customer fields.
Below is documentation, parameters and attributes of ABAP Method HANDLE_ONF4 within SAP class IF_EX_BADI_CCM_CLIST_FLDS. 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_EX_BADI_CCM_CLIST_FLDS 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 HANDLE_ONF4 can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method HANDLE_ONF4
.| Name | Type | Data Type | Description | Default Value |
| I_FIELDNAME | Importing | TYPE LVC_FNAME | ALV control: Field name of internal table field | |
| I_PMODE | Importing | TYPE XFELD | Checkbox | |
| I_SELECT_VALUE | Importing | TYPE HELP_INFO-FLDVALUE | Screen Field Contents | |
| ET_FIELDS_CHANGED | Exporting | TYPE TT_UPD_FIELD_CHANGED | DI_CCM: Table Type for fields that have been updated | |
| CS_COMP_DATA | Changing | TYPE CLIST_COMPONENT_DATA | DI CCM: Component Installation Location Structure | |
| CS_OUTTAB | Changing | TYPE CLIST_OUTTAB | DI CCM: Output table for ALV |
Exceptions of Method HANDLE_ONF4
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_EX_BADI_CCM_CLIST_FLDS.
DATA: lv_CS_COMP_DATA TYPE CLIST_COMPONENT_DATA,
lv_CS_OUTTAB TYPE CLIST_OUTTAB,
lv_ET_FIELDS_CHANGED TYPE TT_UPD_FIELD_CHANGED,
lv_I_FIELDNAME TYPE LVC_FNAME,
lv_I_PMODE TYPE XFELD,
lv_I_SELECT_VALUE TYPE HELP_INFO-FLDVALUE,
lv_other TYPE c.
CALL METHOD lo_class=>HANDLE_ONF4(
EXPORTING
I_FIELDNAME = lv_I_FIELDNAME
I_PMODE = lv_I_PMODE
I_SELECT_VALUE = lv_I_SELECT_VALUE
IMPORTING
ET_FIELDS_CHANGED = lv_ET_FIELDS_CHANGED
CHANGING
CS_COMP_DATA = lv_CS_COMP_DATA
CS_OUTTAB = lv_CS_OUTTAB ).
Links to Related Class(s)
IF_EX_BA...Full list of available SAP object classes
Search for further information about these or an SAP related objects