SAP ISM_EVENT_2225 Function Module for Event 2225 - Collective Bill: Summarization Criteria
ISM_EVENT_2225 is a standard ism event 2225 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Event 2225 - Collective Bill: Summarization Criteria 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 ism event 2225 FM, simply by entering the name ISM_EVENT_2225 into the relevant SAP transaction such as SE37 or SE38.
Function Group: ISM_CA
Program Name: SAPLISM_CA
Main Program: SAPLISM_CA
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISM_EVENT_2225 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 'ISM_EVENT_2225'"Event 2225 - Collective Bill: Summarization Criteria.
EXPORTING
X_APPLK = "Application Area
X_HERKF = "Document Source Key
CHANGING
* XY_OPBEL_COLL = "Number of the Substitute FI-CA Document
TABLES
T_FKKCL_ORIG = "
T_FKKCL_COLL = "
IMPORTING Parameters details for ISM_EVENT_2225
X_APPLK - Application Area
Data type: APPLK_KKOptional: No
Call by Reference: No ( called with pass by value option)
X_HERKF - Document Source Key
Data type: HERKF_KKOptional: No
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for ISM_EVENT_2225
XY_OPBEL_COLL - Number of the Substitute FI-CA Document
Data type: FKKOP-ABWBLOptional: Yes
Call by Reference: Yes
TABLES Parameters details for ISM_EVENT_2225
T_FKKCL_ORIG -
Data type: FKKCL_2220Optional: No
Call by Reference: No ( called with pass by value option)
T_FKKCL_COLL -
Data type: FKKCLOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISM_EVENT_2225 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_x_applk | TYPE APPLK_KK, " | |||
| lt_t_fkkcl_orig | TYPE STANDARD TABLE OF FKKCL_2220, " | |||
| lv_xy_opbel_coll | TYPE FKKOP-ABWBL, " | |||
| lv_x_herkf | TYPE HERKF_KK, " | |||
| lt_t_fkkcl_coll | TYPE STANDARD TABLE OF FKKCL. " |
|   CALL FUNCTION 'ISM_EVENT_2225' "Event 2225 - Collective Bill: Summarization Criteria |
| EXPORTING | ||
| X_APPLK | = lv_x_applk | |
| X_HERKF | = lv_x_herkf | |
| CHANGING | ||
| XY_OPBEL_COLL | = lv_xy_opbel_coll | |
| TABLES | ||
| T_FKKCL_ORIG | = lt_t_fkkcl_orig | |
| T_FKKCL_COLL | = lt_t_fkkcl_coll | |
| . " ISM_EVENT_2225 | ||
ABAP code using 7.40 inline data declarations to call FM ISM_EVENT_2225
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.| "SELECT single ABWBL FROM FKKOP INTO @DATA(ld_xy_opbel_coll). | ||||
Search for further information about these or an SAP related objects