SAP EXIT_SAPLCKAZ_003 Function Module for Display/Print: Cost Components and Itemization









EXIT_SAPLCKAZ_003 is a standard exit saplckaz 003 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Display/Print: Cost Components and Itemization 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 exit saplckaz 003 FM, simply by entering the name EXIT_SAPLCKAZ_003 into the relevant SAP transaction such as SE37 or SE38.

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



Function EXIT_SAPLCKAZ_003 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 'EXIT_SAPLCKAZ_003'"Display/Print: Cost Components and Itemization
EXPORTING
F_CKIUSER = "Cost Estimate Header and Other Data
* S_PRINT = ' ' "Output Control: Print/Display
* S_FIRST = 'X' "Print Control: First Cost Estimate of Print Request
* S_LAST = 'X' "Print Control: Last Cost Estimate of Print Request
* S_NO_DIALOG = ' ' "Print Control: No Print Dialog Box for First Cost Estimate
* F_PRI_PARAMS = "Print Control: Standard Print Parameters

TABLES
T_KEPH = "Independent of Cost Component View
T_KIS1 = "Dependent on Itemization View
.



Related Function Modules

Below is a list of related SAP function modules this CUSTOMER FUNCTION exit / user exit is relevant for.
CKAZ_PRINT
CKAZ_PRINT_001
CKAZ_PRINT_002
CKAZ_PRINT_003

IMPORTING Parameters details for EXIT_SAPLCKAZ_003

F_CKIUSER - Cost Estimate Header and Other Data

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

S_PRINT - Output Control: Print/Display

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

S_FIRST - Print Control: First Cost Estimate of Print Request

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

S_LAST - Print Control: Last Cost Estimate of Print Request

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

S_NO_DIALOG - Print Control: No Print Dialog Box for First Cost Estimate

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

F_PRI_PARAMS - Print Control: Standard Print Parameters

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

TABLES Parameters details for EXIT_SAPLCKAZ_003

T_KEPH - Independent of Cost Component View

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

T_KIS1 - Dependent on Itemization View

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

Copy and paste ABAP code example for EXIT_SAPLCKAZ_003 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:
lt_t_keph  TYPE STANDARD TABLE OF KEPH, "   
lv_f_ckiuser  TYPE CKIUSER, "   
lt_t_kis1  TYPE STANDARD TABLE OF KIS1, "   
lv_s_print  TYPE CKI64A-SELKZ, "   ' '
lv_s_first  TYPE CKI64A-SELKZ, "   'X'
lv_s_last  TYPE CKI64A-SELKZ, "   'X'
lv_s_no_dialog  TYPE CKI64A-SELKZ, "   SPACE
lv_f_pri_params  TYPE PRI_PARAMS. "   

  CALL FUNCTION 'EXIT_SAPLCKAZ_003'  "Display/Print: Cost Components and Itemization
    EXPORTING
         F_CKIUSER = lv_f_ckiuser
         S_PRINT = lv_s_print
         S_FIRST = lv_s_first
         S_LAST = lv_s_last
         S_NO_DIALOG = lv_s_no_dialog
         F_PRI_PARAMS = lv_f_pri_params
    TABLES
         T_KEPH = lt_t_keph
         T_KIS1 = lt_t_kis1
. " EXIT_SAPLCKAZ_003




ABAP code using 7.40 inline data declarations to call FM EXIT_SAPLCKAZ_003

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 SELKZ FROM CKI64A INTO @DATA(ld_s_print).
DATA(ld_s_print) = ' '.
 
"SELECT single SELKZ FROM CKI64A INTO @DATA(ld_s_first).
DATA(ld_s_first) = 'X'.
 
"SELECT single SELKZ FROM CKI64A INTO @DATA(ld_s_last).
DATA(ld_s_last) = 'X'.
 
"SELECT single SELKZ FROM CKI64A INTO @DATA(ld_s_no_dialog).
DATA(ld_s_no_dialog) = ' '.
 
 


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!