SAP ICL_PAYO_SINGLE_GET Function Module for BRF Access ICL_PAYO (Single Value Request)
ICL_PAYO_SINGLE_GET is a standard icl payo single get SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for BRF Access ICL_PAYO (Single Value Request) 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 icl payo single get FM, simply by entering the name ICL_PAYO_SINGLE_GET into the relevant SAP transaction such as SE37 or SE38.
Function Group: ICL_CF_EXT_PAY1
Program Name: SAPLICL_CF_EXT_PAY1
Main Program: SAPLICL_CF_EXT_PAY1
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ICL_PAYO_SINGLE_GET 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 'ICL_PAYO_SINGLE_GET'"BRF Access ICL_PAYO (Single Value Request).
EXPORTING
I_STRUC_TYPE = "Table Name (BUS000_EXT)
* IO_EVENT = "BRF: Event
* IV_XBRF_PLUS = "
* IS_ICL_ACTUAL = "
IMPORTING
ER_DATA = "
ES_ICL_PAYO = "
ES_CUKY_CHAR = "
IMPORTING Parameters details for ICL_PAYO_SINGLE_GET
I_STRUC_TYPE - Table Name (BUS000_EXT)
Data type: TABNAMEOptional: No
Call by Reference: No ( called with pass by value option)
IO_EVENT - BRF: Event
Data type: IF_EVENT_BRFOptional: Yes
Call by Reference: No ( called with pass by value option)
IV_XBRF_PLUS -
Data type: ICL_XBRF_PLUS_DOptional: Yes
Call by Reference: No ( called with pass by value option)
IS_ICL_ACTUAL -
Data type: ICL_ACTUALOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ICL_PAYO_SINGLE_GET
ER_DATA -
Data type: DATAOptional: No
Call by Reference: Yes
ES_ICL_PAYO -
Data type: ICL_PAYOOptional: No
Call by Reference: No ( called with pass by value option)
ES_CUKY_CHAR -
Data type: ICL_CUKY_DIOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ICL_PAYO_SINGLE_GET 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_er_data | TYPE DATA, " | |||
| lv_i_struc_type | TYPE TABNAME, " | |||
| lv_io_event | TYPE IF_EVENT_BRF, " | |||
| lv_es_icl_payo | TYPE ICL_PAYO, " | |||
| lv_es_cuky_char | TYPE ICL_CUKY_DI, " | |||
| lv_iv_xbrf_plus | TYPE ICL_XBRF_PLUS_D, " | |||
| lv_is_icl_actual | TYPE ICL_ACTUAL. " |
|   CALL FUNCTION 'ICL_PAYO_SINGLE_GET' "BRF Access ICL_PAYO (Single Value Request) |
| EXPORTING | ||
| I_STRUC_TYPE | = lv_i_struc_type | |
| IO_EVENT | = lv_io_event | |
| IV_XBRF_PLUS | = lv_iv_xbrf_plus | |
| IS_ICL_ACTUAL | = lv_is_icl_actual | |
| IMPORTING | ||
| ER_DATA | = lv_er_data | |
| ES_ICL_PAYO | = lv_es_icl_payo | |
| ES_CUKY_CHAR | = lv_es_cuky_char | |
| . " ICL_PAYO_SINGLE_GET | ||
ABAP code using 7.40 inline data declarations to call FM ICL_PAYO_SINGLE_GET
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