SAP ISU_FILL_PAYMO_FOR_CA_FORM Function Module for
ISU_FILL_PAYMO_FOR_CA_FORM is a standard isu fill paymo for ca form SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 fill paymo for ca form FM, simply by entering the name ISU_FILL_PAYMO_FOR_CA_FORM into the relevant SAP transaction such as SE37 or SE38.
Function Group: EK04
Program Name: SAPLEK04
Main Program: SAPLEK04
Appliation area: E
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISU_FILL_PAYMO_FOR_CA_FORM 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_FILL_PAYMO_FOR_CA_FORM'".
EXPORTING
X_EADRDAT = "
* X_GPART = "
* X_VKONT = "
* X_NRZAS = "
X_BUKRS = "
X_SPRAS = "
X_WAERS = "
X_RBBTR = "
X_RWBBT = "
* X_AVSID = "
X_FORMKEY = "
* X_APPLK = "
IMPORTING
Y_PAYMO = "
EXCEPTIONS
NO_PRINT = 1 NO_APPLIKATION = 2 NO_POSTING_AREA_X100 = 3
IMPORTING Parameters details for ISU_FILL_PAYMO_FOR_CA_FORM
X_EADRDAT -
Data type: EADRDATOptional: No
Call by Reference: No ( called with pass by value option)
X_GPART -
Data type: FKKOP-GPARTOptional: Yes
Call by Reference: No ( called with pass by value option)
X_VKONT -
Data type: FKKOP-VKONTOptional: Yes
Call by Reference: No ( called with pass by value option)
X_NRZAS -
Data type: DFKKZR-NRZASOptional: Yes
Call by Reference: No ( called with pass by value option)
X_BUKRS -
Data type: PAYMI-BUKRSOptional: No
Call by Reference: No ( called with pass by value option)
X_SPRAS -
Data type: PAYMI-SPRASOptional: No
Call by Reference: No ( called with pass by value option)
X_WAERS -
Data type: PAYMI-WAERSOptional: No
Call by Reference: No ( called with pass by value option)
X_RBBTR -
Data type: PAYMI-RBBTROptional: No
Call by Reference: No ( called with pass by value option)
X_RWBBT -
Data type: PAYMI-RWBBTOptional: No
Call by Reference: No ( called with pass by value option)
X_AVSID -
Data type: PAYMI-AVSIDOptional: Yes
Call by Reference: No ( called with pass by value option)
X_FORMKEY -
Data type: EFRM-FORMKEYOptional: No
Call by Reference: No ( called with pass by value option)
X_APPLK -
Data type: FKKOP-APPLKOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISU_FILL_PAYMO_FOR_CA_FORM
Y_PAYMO -
Data type: PAYMOOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_PRINT -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_APPLIKATION -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_POSTING_AREA_X100 -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISU_FILL_PAYMO_FOR_CA_FORM 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_y_paymo | TYPE PAYMO, " | |||
| lv_no_print | TYPE PAYMO, " | |||
| lv_x_eadrdat | TYPE EADRDAT, " | |||
| lv_x_gpart | TYPE FKKOP-GPART, " | |||
| lv_x_vkont | TYPE FKKOP-VKONT, " | |||
| lv_x_nrzas | TYPE DFKKZR-NRZAS, " | |||
| lv_x_bukrs | TYPE PAYMI-BUKRS, " | |||
| lv_no_applikation | TYPE PAYMI, " | |||
| lv_x_spras | TYPE PAYMI-SPRAS, " | |||
| lv_no_posting_area_x100 | TYPE PAYMI, " | |||
| lv_x_waers | TYPE PAYMI-WAERS, " | |||
| lv_x_rbbtr | TYPE PAYMI-RBBTR, " | |||
| lv_x_rwbbt | TYPE PAYMI-RWBBT, " | |||
| lv_x_avsid | TYPE PAYMI-AVSID, " | |||
| lv_x_formkey | TYPE EFRM-FORMKEY, " | |||
| lv_x_applk | TYPE FKKOP-APPLK. " |
|   CALL FUNCTION 'ISU_FILL_PAYMO_FOR_CA_FORM' " |
| EXPORTING | ||
| X_EADRDAT | = lv_x_eadrdat | |
| X_GPART | = lv_x_gpart | |
| X_VKONT | = lv_x_vkont | |
| X_NRZAS | = lv_x_nrzas | |
| X_BUKRS | = lv_x_bukrs | |
| X_SPRAS | = lv_x_spras | |
| X_WAERS | = lv_x_waers | |
| X_RBBTR | = lv_x_rbbtr | |
| X_RWBBT | = lv_x_rwbbt | |
| X_AVSID | = lv_x_avsid | |
| X_FORMKEY | = lv_x_formkey | |
| X_APPLK | = lv_x_applk | |
| IMPORTING | ||
| Y_PAYMO | = lv_y_paymo | |
| EXCEPTIONS | ||
| NO_PRINT = 1 | ||
| NO_APPLIKATION = 2 | ||
| NO_POSTING_AREA_X100 = 3 | ||
| . " ISU_FILL_PAYMO_FOR_CA_FORM | ||
ABAP code using 7.40 inline data declarations to call FM ISU_FILL_PAYMO_FOR_CA_FORM
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 GPART FROM FKKOP INTO @DATA(ld_x_gpart). | ||||
| "SELECT single VKONT FROM FKKOP INTO @DATA(ld_x_vkont). | ||||
| "SELECT single NRZAS FROM DFKKZR INTO @DATA(ld_x_nrzas). | ||||
| "SELECT single BUKRS FROM PAYMI INTO @DATA(ld_x_bukrs). | ||||
| "SELECT single SPRAS FROM PAYMI INTO @DATA(ld_x_spras). | ||||
| "SELECT single WAERS FROM PAYMI INTO @DATA(ld_x_waers). | ||||
| "SELECT single RBBTR FROM PAYMI INTO @DATA(ld_x_rbbtr). | ||||
| "SELECT single RWBBT FROM PAYMI INTO @DATA(ld_x_rwbbt). | ||||
| "SELECT single AVSID FROM PAYMI INTO @DATA(ld_x_avsid). | ||||
| "SELECT single FORMKEY FROM EFRM INTO @DATA(ld_x_formkey). | ||||
| "SELECT single APPLK FROM FKKOP INTO @DATA(ld_x_applk). | ||||
Search for further information about these or an SAP related objects