SAP K_UNITCOSTING_POST Function Module for









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

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



Function K_UNITCOSTING_POST 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_UNITCOSTING_POST'"
EXPORTING
* POS_ANZ_NEW = 0 "Number of items costing document u
* POS_ANZ_OLD = 0 "Number of items costing document o
* UPD_XKKS1 = ' ' "Update indicator for update (I,U,D
XKHS1 = "

TABLES
XKIS1 = "
.



IMPORTING Parameters details for K_UNITCOSTING_POST

POS_ANZ_NEW - Number of items costing document u

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

POS_ANZ_OLD - Number of items costing document o

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

UPD_XKKS1 - Update indicator for update (I,U,D

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

XKHS1 -

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

TABLES Parameters details for K_UNITCOSTING_POST

XKIS1 -

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

Copy and paste ABAP code example for K_UNITCOSTING_POST 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_xkis1  TYPE STANDARD TABLE OF KIS1, "   
lv_pos_anz_new  TYPE CKIS-POSNR, "   0
lv_pos_anz_old  TYPE CKIS-POSNR, "   0
lv_upd_xkks1  TYPE RK70EQ-UPKNZ, "   SPACE
lv_xkhs1  TYPE KHS1. "   

  CALL FUNCTION 'K_UNITCOSTING_POST'  "
    EXPORTING
         POS_ANZ_NEW = lv_pos_anz_new
         POS_ANZ_OLD = lv_pos_anz_old
         UPD_XKKS1 = lv_upd_xkks1
         XKHS1 = lv_xkhs1
    TABLES
         XKIS1 = lt_xkis1
. " K_UNITCOSTING_POST




ABAP code using 7.40 inline data declarations to call FM K_UNITCOSTING_POST

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 POSNR FROM CKIS INTO @DATA(ld_pos_anz_new).
 
"SELECT single POSNR FROM CKIS INTO @DATA(ld_pos_anz_old).
 
"SELECT single UPKNZ FROM RK70EQ INTO @DATA(ld_upd_xkks1).
DATA(ld_upd_xkks1) = ' '.
 
 


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!