SAP CFC_BPCL_EVENT_LIST_OUT Function Module for CFC Exit LIST_OUT: Change ALV List Output
CFC_BPCL_EVENT_LIST_OUT is a standard cfc bpcl event list out SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for CFC Exit LIST_OUT: Change ALV List Output processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for cfc bpcl event list out FM, simply by entering the name CFC_BPCL_EVENT_LIST_OUT into the relevant SAP transaction such as SE37 or SE38.
Function Group: FKK_BPCL_CLAR
Program Name: SAPLFKK_BPCL_CLAR
Main Program: SAPLFKK_BPCL_CLAR
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function CFC_BPCL_EVENT_LIST_OUT pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'CFC_BPCL_EVENT_LIST_OUT'"CFC Exit LIST_OUT: Change ALV List Output.
EXPORTING
I_APPL_OBJ = "CFC: Application objects
CHANGING
* I_INTERFACE_CHECK = ' ' "
* I_SAVE = ' ' "
* IS_VARIANT = ' ' "Layout (External Use)
IT_EVENT_EXIT = "
IS_PRINT = "
IS_LAYOUT = "
IT_FIELDCAT = "Field Catalog for SAP List Viewer Control
IT_EXCLUDING = "
IT_SPECIAL_GROUPS = "
IT_SORT = "
IT_FILTER = "
IS_SEL_HIDE = "
* I_DEFAULT = 'X' "
TABLES
T_APPL_ITEM_ITAB = "Display Structure for Clarification Cases for BP Duplicates
IT_ALV_EVENTS = "
IMPORTING Parameters details for CFC_BPCL_EVENT_LIST_OUT
I_APPL_OBJ - CFC: Application objects
Data type: CFC_APPLOBJOptional: No
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for CFC_BPCL_EVENT_LIST_OUT
I_INTERFACE_CHECK -
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_SAVE -
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
IS_VARIANT - Layout (External Use)
Data type: DISVARIANTDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
IT_EVENT_EXIT -
Data type: SLIS_T_EVENT_EXITOptional: No
Call by Reference: No ( called with pass by value option)
IS_PRINT -
Data type: SLIS_PRINT_ALVOptional: No
Call by Reference: No ( called with pass by value option)
IS_LAYOUT -
Data type: SLIS_LAYOUT_ALVOptional: No
Call by Reference: No ( called with pass by value option)
IT_FIELDCAT - Field Catalog for SAP List Viewer Control
Data type: SLIS_T_FIELDCAT_ALVOptional: No
Call by Reference: No ( called with pass by value option)
IT_EXCLUDING -
Data type: SLIS_T_EXTABOptional: No
Call by Reference: No ( called with pass by value option)
IT_SPECIAL_GROUPS -
Data type: SLIS_T_SP_GROUP_ALVOptional: No
Call by Reference: No ( called with pass by value option)
IT_SORT -
Data type: SLIS_T_SORTINFO_ALVOptional: No
Call by Reference: No ( called with pass by value option)
IT_FILTER -
Data type: SLIS_T_FILTER_ALVOptional: No
Call by Reference: No ( called with pass by value option)
IS_SEL_HIDE -
Data type: SLIS_SEL_HIDE_ALVOptional: No
Call by Reference: No ( called with pass by value option)
I_DEFAULT -
Data type: CDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for CFC_BPCL_EVENT_LIST_OUT
T_APPL_ITEM_ITAB - Display Structure for Clarification Cases for BP Duplicates
Data type: FKKBPCL_CLAR_DISPLOptional: No
Call by Reference: Yes
IT_ALV_EVENTS -
Data type: CFC_ALV_EVENT_NAMESOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for CFC_BPCL_EVENT_LIST_OUT Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_i_appl_obj | TYPE CFC_APPLOBJ, " | |||
| lt_t_appl_item_itab | TYPE STANDARD TABLE OF FKKBPCL_CLAR_DISPL, " | |||
| lv_i_interface_check | TYPE FKKBPCL_CLAR_DISPL, " SPACE | |||
| lv_i_save | TYPE FKKBPCL_CLAR_DISPL, " SPACE | |||
| lv_is_variant | TYPE DISVARIANT, " SPACE | |||
| lv_it_event_exit | TYPE SLIS_T_EVENT_EXIT, " | |||
| lv_is_print | TYPE SLIS_PRINT_ALV, " | |||
| lv_is_layout | TYPE SLIS_LAYOUT_ALV, " | |||
| lt_it_alv_events | TYPE STANDARD TABLE OF CFC_ALV_EVENT_NAMES, " | |||
| lv_it_fieldcat | TYPE SLIS_T_FIELDCAT_ALV, " | |||
| lv_it_excluding | TYPE SLIS_T_EXTAB, " | |||
| lv_it_special_groups | TYPE SLIS_T_SP_GROUP_ALV, " | |||
| lv_it_sort | TYPE SLIS_T_SORTINFO_ALV, " | |||
| lv_it_filter | TYPE SLIS_T_FILTER_ALV, " | |||
| lv_is_sel_hide | TYPE SLIS_SEL_HIDE_ALV, " | |||
| lv_i_default | TYPE C. " 'X' |
|   CALL FUNCTION 'CFC_BPCL_EVENT_LIST_OUT' "CFC Exit LIST_OUT: Change ALV List Output |
| EXPORTING | ||
| I_APPL_OBJ | = lv_i_appl_obj | |
| CHANGING | ||
| I_INTERFACE_CHECK | = lv_i_interface_check | |
| I_SAVE | = lv_i_save | |
| IS_VARIANT | = lv_is_variant | |
| IT_EVENT_EXIT | = lv_it_event_exit | |
| IS_PRINT | = lv_is_print | |
| IS_LAYOUT | = lv_is_layout | |
| IT_FIELDCAT | = lv_it_fieldcat | |
| IT_EXCLUDING | = lv_it_excluding | |
| IT_SPECIAL_GROUPS | = lv_it_special_groups | |
| IT_SORT | = lv_it_sort | |
| IT_FILTER | = lv_it_filter | |
| IS_SEL_HIDE | = lv_is_sel_hide | |
| I_DEFAULT | = lv_i_default | |
| TABLES | ||
| T_APPL_ITEM_ITAB | = lt_t_appl_item_itab | |
| IT_ALV_EVENTS | = lt_it_alt_events | |
| . " CFC_BPCL_EVENT_LIST_OUT | ||
ABAP code using 7.40 inline data declarations to call FM CFC_BPCL_EVENT_LIST_OUT
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| DATA(ld_i_interface_check) | = ' '. | |||
| DATA(ld_i_save) | = ' '. | |||
| DATA(ld_is_variant) | = ' '. | |||
| DATA(ld_i_default) | = 'X'. | |||
Search for further information about these or an SAP related objects