SAP FKK_DB_DFKKREPTCL_SELECT_MASS Function Module for









FKK_DB_DFKKREPTCL_SELECT_MASS is a standard fkk db dfkkreptcl select mass 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 fkk db dfkkreptcl select mass FM, simply by entering the name FKK_DB_DFKKREPTCL_SELECT_MASS into the relevant SAP transaction such as SE37 or SE38.

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



Function FKK_DB_DFKKREPTCL_SELECT_MASS 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_DB_DFKKREPTCL_SELECT_MASS'"
EXPORTING
* I_XSTORN = ' ' "

IMPORTING
E_CUSTSELECT = "Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')

TABLES
T_DFKKREPTCL = "Clearing Information for Receipt Documents
* T_GPART = "Ranges Structure for Business Partner (FI-CA)
* T_VKONT = "Ranges Structure for Contract Account Number (FI-CA)
* T_VTREF = "Ranges Structure for Reference Data from Contract (FI-CA)
* T_VTREF_DOWNLOAD = "
* T_PAYBL = "Range Structure for Document Number (FI-CA)
* T_BUDAT = "
* T_BUKRS = "Range Structure for Company Codes
* T_SHHCD = "Ranges Structure for Download Status
.



IMPORTING Parameters details for FKK_DB_DFKKREPTCL_SELECT_MASS

I_XSTORN -

Data type: BOOLE-BOOLE
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for FKK_DB_DFKKREPTCL_SELECT_MASS

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

Data type: BOOLE-BOOLE
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for FKK_DB_DFKKREPTCL_SELECT_MASS

T_DFKKREPTCL - Clearing Information for Receipt Documents

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

T_GPART - Ranges Structure for Business Partner (FI-CA)

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

T_VKONT - Ranges Structure for Contract Account Number (FI-CA)

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

T_VTREF - Ranges Structure for Reference Data from Contract (FI-CA)

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

T_VTREF_DOWNLOAD -

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

T_PAYBL - Range Structure for Document Number (FI-CA)

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

T_BUDAT -

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

T_BUKRS - Range Structure for Company Codes

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

T_SHHCD - Ranges Structure for Download Status

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

Copy and paste ABAP code example for FKK_DB_DFKKREPTCL_SELECT_MASS 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_xstorn  TYPE BOOLE-BOOLE, "   ' '
lv_e_custselect  TYPE BOOLE-BOOLE, "   
lt_t_dfkkreptcl  TYPE STANDARD TABLE OF DFKKREPTCL, "   
lt_t_gpart  TYPE STANDARD TABLE OF FKKR_GPART, "   
lt_t_vkont  TYPE STANDARD TABLE OF FKKR_VKONT, "   
lt_t_vtref  TYPE STANDARD TABLE OF FKKR_VTREF, "   
lt_t_vtref_download  TYPE STANDARD TABLE OF FKKR_VTREF, "   
lt_t_paybl  TYPE STANDARD TABLE OF FKKR_OPBEL, "   
lt_t_budat  TYPE STANDARD TABLE OF FKKR_BUDAT, "   
lt_t_bukrs  TYPE STANDARD TABLE OF FKKR_BUKRS, "   
lt_t_shhcd  TYPE STANDARD TABLE OF FKKR_SHHCD. "   

  CALL FUNCTION 'FKK_DB_DFKKREPTCL_SELECT_MASS'  "
    EXPORTING
         I_XSTORN = lv_i_xstorn
    IMPORTING
         E_CUSTSELECT = lv_e_custselect
    TABLES
         T_DFKKREPTCL = lt_t_dfkkreptcl
         T_GPART = lt_t_gpart
         T_VKONT = lt_t_vkont
         T_VTREF = lt_t_vtref
         T_VTREF_DOWNLOAD = lt_t_vtref_download
         T_PAYBL = lt_t_paybl
         T_BUDAT = lt_t_budat
         T_BUKRS = lt_t_bukrs
         T_SHHCD = lt_t_shhcd
. " FKK_DB_DFKKREPTCL_SELECT_MASS




ABAP code using 7.40 inline data declarations to call FM FKK_DB_DFKKREPTCL_SELECT_MASS

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 BOOLE FROM BOOLE INTO @DATA(ld_i_xstorn).
DATA(ld_i_xstorn) = ' '.
 
"SELECT single BOOLE FROM BOOLE INTO @DATA(ld_e_custselect).
 
 
 
 
 
 
 
 
 
 


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!