SAP KEMALS_TEST_FB Function Module for









KEMALS_TEST_FB is a standard kemals test fb 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 kemals test fb FM, simply by entering the name KEMALS_TEST_FB into the relevant SAP transaction such as SE37 or SE38.

Function Group: UNDB
Program Name: SAPLUNDB
Main Program:
Appliation area: D
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function KEMALS_TEST_FB 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 'KEMALS_TEST_FB'"
EXPORTING
PARAM1 = "
PARAM2 = "
PARAM3 = "
PARAM4 = "
PARAM5 = "
PARAM6 = "
PARAM13 = "
PARAM14 = "
PARAM16 = "

IMPORTING
PARAM7 = "
PARAM8 = "
PARAM9 = "
PARAM10 = "
PARAM11 = "
PARAM12 = "
PARAM13 = "
PARAM15 = "
PARAM17 = "
.



IMPORTING Parameters details for KEMALS_TEST_FB

PARAM1 -

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

PARAM2 -

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

PARAM3 -

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

PARAM4 -

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

PARAM5 -

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

PARAM6 -

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

PARAM13 -

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

PARAM14 -

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

PARAM16 -

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

EXPORTING Parameters details for KEMALS_TEST_FB

PARAM7 -

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

PARAM8 -

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

PARAM9 -

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

PARAM10 -

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

PARAM11 -

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

PARAM12 -

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

PARAM13 -

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

PARAM15 -

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

PARAM17 -

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

Copy and paste ABAP code example for KEMALS_TEST_FB 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_param1  TYPE KBED-BEDID, "   
lv_param7  TYPE KBED-BEDID, "   
lv_param2  TYPE KBED-KRUESOLL, "   
lv_param8  TYPE KBED-KRUESOLL, "   
lv_param3  TYPE KBED-FSTAD, "   
lv_param9  TYPE KBED-FSTAD, "   
lv_param4  TYPE KBED-FSTAU, "   
lv_param10  TYPE KBED-FSTAU, "   
lv_param5  TYPE KBED-ISPLI, "   
lv_param11  TYPE KBED-ISPLI, "   
lv_param6  TYPE KBED-MGVRG, "   
lv_param12  TYPE KBED-MGVRG, "   
lv_param13  TYPE KBED-KEINH, "   
lv_param13  TYPE KBED-KEINH, "   
lv_param14  TYPE KBED-SPLIT, "   
lv_param15  TYPE KBED-SPLIT, "   
lv_param16  TYPE QISUB-DEST, "   
lv_param17  TYPE QISUB-DEST. "   

  CALL FUNCTION 'KEMALS_TEST_FB'  "
    EXPORTING
         PARAM1 = lv_param1
         PARAM2 = lv_param2
         PARAM3 = lv_param3
         PARAM4 = lv_param4
         PARAM5 = lv_param5
         PARAM6 = lv_param6
         PARAM13 = lv_param13
         PARAM14 = lv_param14
         PARAM16 = lv_param16
    IMPORTING
         PARAM7 = lv_param7
         PARAM8 = lv_param8
         PARAM9 = lv_param9
         PARAM10 = lv_param10
         PARAM11 = lv_param11
         PARAM12 = lv_param12
         PARAM13 = lv_param13
         PARAM15 = lv_param15
         PARAM17 = lv_param17
. " KEMALS_TEST_FB




ABAP code using 7.40 inline data declarations to call FM KEMALS_TEST_FB

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 BEDID FROM KBED INTO @DATA(ld_param1).
 
"SELECT single BEDID FROM KBED INTO @DATA(ld_param7).
 
"SELECT single KRUESOLL FROM KBED INTO @DATA(ld_param2).
 
"SELECT single KRUESOLL FROM KBED INTO @DATA(ld_param8).
 
"SELECT single FSTAD FROM KBED INTO @DATA(ld_param3).
 
"SELECT single FSTAD FROM KBED INTO @DATA(ld_param9).
 
"SELECT single FSTAU FROM KBED INTO @DATA(ld_param4).
 
"SELECT single FSTAU FROM KBED INTO @DATA(ld_param10).
 
"SELECT single ISPLI FROM KBED INTO @DATA(ld_param5).
 
"SELECT single ISPLI FROM KBED INTO @DATA(ld_param11).
 
"SELECT single MGVRG FROM KBED INTO @DATA(ld_param6).
 
"SELECT single MGVRG FROM KBED INTO @DATA(ld_param12).
 
"SELECT single KEINH FROM KBED INTO @DATA(ld_param13).
 
"SELECT single KEINH FROM KBED INTO @DATA(ld_param13).
 
"SELECT single SPLIT FROM KBED INTO @DATA(ld_param14).
 
"SELECT single SPLIT FROM KBED INTO @DATA(ld_param15).
 
"SELECT single DEST FROM QISUB INTO @DATA(ld_param16).
 
"SELECT single DEST FROM QISUB INTO @DATA(ld_param17).
 


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!