SAP ICLF_ICL_PARK_PAYMENT_POST Function Module for Posting of Parked Payments









ICLF_ICL_PARK_PAYMENT_POST is a standard iclf icl park payment post SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Posting of Parked 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 iclf icl park payment post FM, simply by entering the name ICLF_ICL_PARK_PAYMENT_POST into the relevant SAP transaction such as SE37 or SE38.

Function Group: ICL_CF_INT_PAY1
Program Name: SAPLICL_CF_INT_PAY1
Main Program: SAPLICL_CF_INT_PAY1
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function ICLF_ICL_PARK_PAYMENT_POST 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 'ICLF_ICL_PARK_PAYMENT_POST'"Posting of Parked Payments
EXPORTING
* IV_TEST = "Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')

TABLES
IT_PAYMENTS = "Table Type: Payments
ET_MESSAGE = "CBP: Messages for Each Object

EXCEPTIONS
NO_PAYMENTS_FOUND = 1 STATUS_ERROR = 2 POSTING_ERROR = 3 GENERAL_ERROR = 4
.



IMPORTING Parameters details for ICLF_ICL_PARK_PAYMENT_POST

IV_TEST - Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')

Data type: BOOLE_D
Optional: Yes
Call by Reference: Yes

TABLES Parameters details for ICLF_ICL_PARK_PAYMENT_POST

IT_PAYMENTS - Table Type: Payments

Data type: ICLPAY
Optional: No
Call by Reference: Yes

ET_MESSAGE - CBP: Messages for Each Object

Data type: BUS0MSG1
Optional: No
Call by Reference: Yes

EXCEPTIONS details

NO_PAYMENTS_FOUND - No Payments Found

Data type:
Optional: No
Call by Reference: Yes

STATUS_ERROR -

Data type:
Optional: No
Call by Reference: Yes

POSTING_ERROR - Error in Posting

Data type:
Optional: No
Call by Reference: Yes

GENERAL_ERROR -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for ICLF_ICL_PARK_PAYMENT_POST 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_iv_test  TYPE BOOLE_D, "   
lt_it_payments  TYPE STANDARD TABLE OF ICLPAY, "   
lv_no_payments_found  TYPE ICLPAY, "   
lt_et_message  TYPE STANDARD TABLE OF BUS0MSG1, "   
lv_status_error  TYPE BUS0MSG1, "   
lv_posting_error  TYPE BUS0MSG1, "   
lv_general_error  TYPE BUS0MSG1. "   

  CALL FUNCTION 'ICLF_ICL_PARK_PAYMENT_POST'  "Posting of Parked Payments
    EXPORTING
         IV_TEST = lv_iv_test
    TABLES
         IT_PAYMENTS = lt_it_payments
         ET_MESSAGE = lt_et_message
    EXCEPTIONS
        NO_PAYMENTS_FOUND = 1
        STATUS_ERROR = 2
        POSTING_ERROR = 3
        GENERAL_ERROR = 4
. " ICLF_ICL_PARK_PAYMENT_POST




ABAP code using 7.40 inline data declarations to call FM ICLF_ICL_PARK_PAYMENT_POST

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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!