SAP K_KKB_VERSIONS_LIST Function Module for









K_KKB_VERSIONS_LIST is a standard k kkb versions list 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 k kkb versions list FM, simply by entering the name K_KKB_VERSIONS_LIST into the relevant SAP transaction such as SE37 or SE38.

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



Function K_KKB_VERSIONS_LIST 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 'K_KKB_VERSIONS_LIST'"
EXPORTING
* I_VERSN = "
I_KOKRS = "
* I_WRTTP = '32' "
* I_VALUTYP = '0' "

IMPORTING
E_VERSN = "

EXCEPTIONS
USER_ABEND = 1 NO_VERSION = 2
.



IMPORTING Parameters details for K_KKB_VERSIONS_LIST

I_VERSN -

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

I_KOKRS -

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

I_WRTTP -

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

I_VALUTYP -

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

EXPORTING Parameters details for K_KKB_VERSIONS_LIST

E_VERSN -

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

EXCEPTIONS details

USER_ABEND -

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

NO_VERSION -

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

Copy and paste ABAP code example for K_KKB_VERSIONS_LIST 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_e_versn  TYPE STRING, "   
lv_i_versn  TYPE KKBC-VERSN, "   
lv_user_abend  TYPE KKBC, "   
lv_i_kokrs  TYPE KKBC-KOKRS, "   
lv_no_version  TYPE KKBC, "   
lv_i_wrttp  TYPE KKBC-WRTTP, "   '32'
lv_i_valutyp  TYPE KKBC-VALUTYP. "   '0'

  CALL FUNCTION 'K_KKB_VERSIONS_LIST'  "
    EXPORTING
         I_VERSN = lv_i_versn
         I_KOKRS = lv_i_kokrs
         I_WRTTP = lv_i_wrttp
         I_VALUTYP = lv_i_valutyp
    IMPORTING
         E_VERSN = lv_e_versn
    EXCEPTIONS
        USER_ABEND = 1
        NO_VERSION = 2
. " K_KKB_VERSIONS_LIST




ABAP code using 7.40 inline data declarations to call FM K_KKB_VERSIONS_LIST

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 VERSN FROM KKBC INTO @DATA(ld_i_versn).
 
 
"SELECT single KOKRS FROM KKBC INTO @DATA(ld_i_kokrs).
 
 
"SELECT single WRTTP FROM KKBC INTO @DATA(ld_i_wrttp).
DATA(ld_i_wrttp) = '32'.
 
"SELECT single VALUTYP FROM KKBC INTO @DATA(ld_i_valutyp).
DATA(ld_i_valutyp) = '0'.
 


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!