SAP KCD_RECEIVER_TAB_FILL Function Module for









KCD_RECEIVER_TAB_FILL is a standard kcd receiver tab fill 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 kcd receiver tab fill FM, simply by entering the name KCD_RECEIVER_TAB_FILL into the relevant SAP transaction such as SE37 or SE38.

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



Function KCD_RECEIVER_TAB_FILL 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 'KCD_RECEIVER_TAB_FILL'"
EXPORTING
REPID = "Sender Structure
* ESTRC = ' ' "
* MANDT = SY-MANDT "Client

IMPORTING
RETAB = "Recipient Table
ANWDG = "Application

TABLES
IKCDDIFIE = "Receiver structure
* IKCDDIDEP = "Dependencies

EXCEPTIONS
NO_INFO = 1 SELECTION_ERROR = 2 FTAB_EMPTY = 3 DOMAIN_NOT_FOUND = 4 DATA_ELEMENT_NOT_FOUND = 5 DATA_ELEMENT_ERROR = 6
.



IMPORTING Parameters details for KCD_RECEIVER_TAB_FILL

REPID - Sender Structure

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

ESTRC -

Data type: KCDU_ESTRC
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

MANDT - Client

Data type: T000-MANDT
Default: SY-MANDT
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for KCD_RECEIVER_TAB_FILL

RETAB - Recipient Table

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

ANWDG - Application

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

TABLES Parameters details for KCD_RECEIVER_TAB_FILL

IKCDDIFIE - Receiver structure

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

IKCDDIDEP - Dependencies

Data type: KCDDIDEP
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

NO_INFO - No information available

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

SELECTION_ERROR -

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

FTAB_EMPTY -

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

DOMAIN_NOT_FOUND - Domain does not exist

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

DATA_ELEMENT_NOT_FOUND - Data element does not exist

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

DATA_ELEMENT_ERROR -

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

Copy and paste ABAP code example for KCD_RECEIVER_TAB_FILL 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_repid  TYPE KCDU_REPID, "   
lv_retab  TYPE KCDDIFIE-TABNM, "   
lv_no_info  TYPE KCDDIFIE, "   
lt_ikcddifie  TYPE STANDARD TABLE OF KCDDIFIE, "   
lv_anwdg  TYPE KCDU_ANWDG, "   
lv_estrc  TYPE KCDU_ESTRC, "   SPACE
lt_ikcddidep  TYPE STANDARD TABLE OF KCDDIDEP, "   
lv_selection_error  TYPE KCDDIDEP, "   
lv_mandt  TYPE T000-MANDT, "   SY-MANDT
lv_ftab_empty  TYPE T000, "   
lv_domain_not_found  TYPE T000, "   
lv_data_element_not_found  TYPE T000, "   
lv_data_element_error  TYPE T000. "   

  CALL FUNCTION 'KCD_RECEIVER_TAB_FILL'  "
    EXPORTING
         REPID = lv_repid
         ESTRC = lv_estrc
         MANDT = lv_mandt
    IMPORTING
         RETAB = lv_retab
         ANWDG = lv_anwdg
    TABLES
         IKCDDIFIE = lt_ikcddifie
         IKCDDIDEP = lt_ikcddidep
    EXCEPTIONS
        NO_INFO = 1
        SELECTION_ERROR = 2
        FTAB_EMPTY = 3
        DOMAIN_NOT_FOUND = 4
        DATA_ELEMENT_NOT_FOUND = 5
        DATA_ELEMENT_ERROR = 6
. " KCD_RECEIVER_TAB_FILL




ABAP code using 7.40 inline data declarations to call FM KCD_RECEIVER_TAB_FILL

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 TABNM FROM KCDDIFIE INTO @DATA(ld_retab).
 
 
 
 
DATA(ld_estrc) = ' '.
 
 
 
"SELECT single MANDT FROM T000 INTO @DATA(ld_mandt).
DATA(ld_mandt) = SY-MANDT.
 
 
 
 
 


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!