SAP /ACCGO/CAS_STL_PAYOUT_CHANGE Function Module for Change Settlement Payout and Prepayment Percentage
/ACCGO/CAS_STL_PAYOUT_CHANGE is a standard /accgo/cas stl payout change SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Change Settlement Payout and Prepayment Percentage 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 /accgo/cas stl payout change FM, simply by entering the name /ACCGO/CAS_STL_PAYOUT_CHANGE into the relevant SAP transaction such as SE37 or SE38.
Function Group: /ACCGO/FG_PPMG_SETTLEMENT
Program Name: /ACCGO/SAPLFG_PPMG_SETTLEMENT
Main Program: /ACCGO/SAPLFG_PPMG_SETTLEMENT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:
Function /ACCGO/CAS_STL_PAYOUT_CHANGE 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 '/ACCGO/CAS_STL_PAYOUT_CHANGE'"Change Settlement Payout and Prepayment Percentage.
EXPORTING
IT_GROUP_IDS = "Table for Settlement Group Payout and Prepayment Percentage
IT_UNIT_IDS = "Table for Settlement Unit Payout ad prepayment Percentage
* IV_COMMIT = ABAP_FALSE "General Flag
IMPORTING
ET_MESSAGE = "Settlement Messages
IMPORTING Parameters details for /ACCGO/CAS_STL_PAYOUT_CHANGE
IT_GROUP_IDS - Table for Settlement Group Payout and Prepayment Percentage
Data type: /ACCGO/CAS_T_STLGRP_PAYOUTOptional: No
Call by Reference: Yes
IT_UNIT_IDS - Table for Settlement Unit Payout ad prepayment Percentage
Data type: /ACCGO/CAS_T_STLUNT_PAYOUTOptional: No
Call by Reference: Yes
IV_COMMIT - General Flag
Data type: FLAGDefault: ABAP_FALSE
Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for /ACCGO/CAS_STL_PAYOUT_CHANGE
ET_MESSAGE - Settlement Messages
Data type: /ACCGO/CAS_TT_STL_MESSAGEOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for /ACCGO/CAS_STL_PAYOUT_CHANGE 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_et_message | TYPE /ACCGO/CAS_TT_STL_MESSAGE, " | |||
lv_it_group_ids | TYPE /ACCGO/CAS_T_STLGRP_PAYOUT, " | |||
lv_it_unit_ids | TYPE /ACCGO/CAS_T_STLUNT_PAYOUT, " | |||
lv_iv_commit | TYPE FLAG. " ABAP_FALSE |
  CALL FUNCTION '/ACCGO/CAS_STL_PAYOUT_CHANGE' "Change Settlement Payout and Prepayment Percentage |
EXPORTING | ||
IT_GROUP_IDS | = lv_it_group_ids | |
IT_UNIT_IDS | = lv_it_unit_ids | |
IV_COMMIT | = lv_iv_commit | |
IMPORTING | ||
ET_MESSAGE | = lv_et_message | |
. " /ACCGO/CAS_STL_PAYOUT_CHANGE |
ABAP code using 7.40 inline data declarations to call FM /ACCGO/CAS_STL_PAYOUT_CHANGE
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_iv_commit) | = ABAP_FALSE. | |||
Search for further information about these or an SAP related objects