SAP ISU_POST_PAY_PARTY_MASS Function Module for Mass Activities: Aggr. Posting of Outgoing Payments
ISU_POST_PAY_PARTY_MASS is a standard isu post pay party mass SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Mass Activities: Aggr. Posting of Outgoing Payments 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 isu post pay party mass FM, simply by entering the name ISU_POST_PAY_PARTY_MASS into the relevant SAP transaction such as SE37 or SE38.
Function Group: EE_DEREG_PAY_AGG
Program Name: SAPLEE_DEREG_PAY_AGG
Main Program: SAPLEE_DEREG_PAY_AGG
Appliation area: E
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISU_POST_PAY_PARTY_MASS 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 'ISU_POST_PAY_PARTY_MASS'"Mass Activities: Aggr. Posting of Outgoing Payments.
EXPORTING
I_LOW = "Lower Limit for Contract Accounts
I_HIGH = "Upper Limit for Contract Accounts
IS_STANDARD = "Aggregated Posting of Outgoing Payments: Standard Fields
IS_SELOPT = "Aggregated Posting of Outgoing Payments: Selection Options
I_FIKEY = "Reconciliation Key for General Ledger
I_XSIMU = "Mass Activity: Simulation Run
TABLES
* T_COUNTER = "Counter with Relevant Number and Content
IMPORTING Parameters details for ISU_POST_PAY_PARTY_MASS
I_LOW - Lower Limit for Contract Accounts
Data type: COptional: No
Call by Reference: Yes
I_HIGH - Upper Limit for Contract Accounts
Data type: COptional: No
Call by Reference: Yes
IS_STANDARD - Aggregated Posting of Outgoing Payments: Standard Fields
Data type: FPP_ETHP_STANDARDOptional: No
Call by Reference: Yes
IS_SELOPT - Aggregated Posting of Outgoing Payments: Selection Options
Data type: FPP_ETHP_SELOPTOptional: No
Call by Reference: Yes
I_FIKEY - Reconciliation Key for General Ledger
Data type: FIKEY_KKOptional: No
Call by Reference: Yes
I_XSIMU - Mass Activity: Simulation Run
Data type: FKK_XSIMU_KKOptional: No
Call by Reference: Yes
TABLES Parameters details for ISU_POST_PAY_PARTY_MASS
T_COUNTER - Counter with Relevant Number and Content
Data type: FKK_MASS_ACT_COUNTOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for ISU_POST_PAY_PARTY_MASS 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_low | TYPE C, " | |||
| lt_t_counter | TYPE STANDARD TABLE OF FKK_MASS_ACT_COUNT, " | |||
| lv_i_high | TYPE C, " | |||
| lv_is_standard | TYPE FPP_ETHP_STANDARD, " | |||
| lv_is_selopt | TYPE FPP_ETHP_SELOPT, " | |||
| lv_i_fikey | TYPE FIKEY_KK, " | |||
| lv_i_xsimu | TYPE FKK_XSIMU_KK. " |
|   CALL FUNCTION 'ISU_POST_PAY_PARTY_MASS' "Mass Activities: Aggr. Posting of Outgoing Payments |
| EXPORTING | ||
| I_LOW | = lv_i_low | |
| I_HIGH | = lv_i_high | |
| IS_STANDARD | = lv_is_standard | |
| IS_SELOPT | = lv_is_selopt | |
| I_FIKEY | = lv_i_fikey | |
| I_XSIMU | = lv_i_xsimu | |
| TABLES | ||
| T_COUNTER | = lt_t_counter | |
| . " ISU_POST_PAY_PARTY_MASS | ||
ABAP code using 7.40 inline data declarations to call FM ISU_POST_PAY_PARTY_MASS
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.Search for further information about these or an SAP related objects