SAP K_COSTCENTER_POST Function Module for
K_COSTCENTER_POST is a standard k costcenter 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 costcenter post FM, simply by entering the name K_COSTCENTER_POST into the relevant SAP transaction such as SE37 or SE38.
Function Group: RKMU
Program Name: SAPLRKMU
Main Program: SAPLRKMU
Appliation area: K
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update: 1

Function K_COSTCENTER_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_COSTCENTER_POST'".
EXPORTING
KHINR_OLD = "
KHINR_NEW = "
XUPD_HIER = "
XDEL_CCTR = "
DATA = "
TEXT = "
TABLES
* I_REF_KOSTL_TAB = "
IMPORTING Parameters details for K_COSTCENTER_POST
KHINR_OLD -
Data type: KHINROptional: No
Call by Reference: No ( called with pass by value option)
KHINR_NEW -
Data type: KHINROptional: No
Call by Reference: No ( called with pass by value option)
XUPD_HIER -
Data type: BOOLE-BOOLEOptional: No
Call by Reference: No ( called with pass by value option)
XDEL_CCTR -
Data type: BOOLE-BOOLEOptional: No
Call by Reference: No ( called with pass by value option)
DATA -
Data type: CCTR_DATA_TABOptional: No
Call by Reference: No ( called with pass by value option)
TEXT -
Data type: CCTR_TEXT_TABOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for K_COSTCENTER_POST
I_REF_KOSTL_TAB -
Data type: CSKSZOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for K_COSTCENTER_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: | ||||
| lv_khinr_old | TYPE KHINR, " | |||
| lt_i_ref_kostl_tab | TYPE STANDARD TABLE OF CSKSZ, " | |||
| lv_khinr_new | TYPE KHINR, " | |||
| lv_xupd_hier | TYPE BOOLE-BOOLE, " | |||
| lv_xdel_cctr | TYPE BOOLE-BOOLE, " | |||
| lv_data | TYPE CCTR_DATA_TAB, " | |||
| lv_text | TYPE CCTR_TEXT_TAB. " |
|   CALL FUNCTION 'K_COSTCENTER_POST' " |
| EXPORTING | ||
| KHINR_OLD | = lv_khinr_old | |
| KHINR_NEW | = lv_khinr_new | |
| XUPD_HIER | = lv_xupd_hier | |
| XDEL_CCTR | = lv_xdel_cctr | |
| DATA | = lv_data | |
| TEXT | = lv_text | |
| TABLES | ||
| I_REF_KOSTL_TAB | = lt_i_ref_kostl_tab | |
| . " K_COSTCENTER_POST | ||
ABAP code using 7.40 inline data declarations to call FM K_COSTCENTER_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 BOOLE FROM BOOLE INTO @DATA(ld_xupd_hier). | ||||
| "SELECT single BOOLE FROM BOOLE INTO @DATA(ld_xdel_cctr). | ||||
Search for further information about these or an SAP related objects