SAP FKK_AUTDEB_PARAMETERS_PUT Function Module for AutoDebit: Put parameters









FKK_AUTDEB_PARAMETERS_PUT is a standard fkk autdeb parameters put SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for AutoDebit: Put parameters 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 fkk autdeb parameters put FM, simply by entering the name FKK_AUTDEB_PARAMETERS_PUT into the relevant SAP transaction such as SE37 or SE38.

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



Function FKK_AUTDEB_PARAMETERS_PUT 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 'FKK_AUTDEB_PARAMETERS_PUT'"AutoDebit: Put parameters
EXPORTING
I_LAUFD = "Date ID
I_LAUFI = "Additional Identification Characteristic
I_DME_FILE_NAME = "File Name in the File System
I_FORMAT = "Payment medium format
I_ORG1R = "Reference for Organization
I_XDME_FILE_SYSTEM = "Output data medium to file system
I_XVORL = "Prenotification Simulation Run
.



IMPORTING Parameters details for FKK_AUTDEB_PARAMETERS_PUT

I_LAUFD - Date ID

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

I_LAUFI - Additional Identification Characteristic

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

I_DME_FILE_NAME - File Name in the File System

Data type: FKKPY_SELE-PFILE
Optional: No
Call by Reference: Yes

I_FORMAT - Payment medium format

Data type: TFK042F-FORMI
Optional: No
Call by Reference: Yes

I_ORG1R - Reference for Organization

Data type: PAYH-ORG1R
Optional: No
Call by Reference: Yes

I_XDME_FILE_SYSTEM - Output data medium to file system

Data type: FKKPY_SELE-XPFIL
Optional: No
Call by Reference: Yes

I_XVORL - Prenotification Simulation Run

Data type: DFKKPNBKA-XVORL
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FKK_AUTDEB_PARAMETERS_PUT 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_laufd  TYPE LAUFD_KK, "   
lv_i_laufi  TYPE LAUFI_KK, "   
lv_i_dme_file_name  TYPE FKKPY_SELE-PFILE, "   
lv_i_format  TYPE TFK042F-FORMI, "   
lv_i_org1r  TYPE PAYH-ORG1R, "   
lv_i_xdme_file_system  TYPE FKKPY_SELE-XPFIL, "   
lv_i_xvorl  TYPE DFKKPNBKA-XVORL. "   

  CALL FUNCTION 'FKK_AUTDEB_PARAMETERS_PUT'  "AutoDebit: Put parameters
    EXPORTING
         I_LAUFD = lv_i_laufd
         I_LAUFI = lv_i_laufi
         I_DME_FILE_NAME = lv_i_dme_file_name
         I_FORMAT = lv_i_format
         I_ORG1R = lv_i_org1r
         I_XDME_FILE_SYSTEM = lv_i_xdme_file_system
         I_XVORL = lv_i_xvorl
. " FKK_AUTDEB_PARAMETERS_PUT




ABAP code using 7.40 inline data declarations to call FM FKK_AUTDEB_PARAMETERS_PUT

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 PFILE FROM FKKPY_SELE INTO @DATA(ld_i_dme_file_name).
 
"SELECT single FORMI FROM TFK042F INTO @DATA(ld_i_format).
 
"SELECT single ORG1R FROM PAYH INTO @DATA(ld_i_org1r).
 
"SELECT single XPFIL FROM FKKPY_SELE INTO @DATA(ld_i_xdme_file_system).
 
"SELECT single XVORL FROM DFKKPNBKA INTO @DATA(ld_i_xvorl).
 


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!