SAP K_SETTLEMENT_OBJECT_REPLACE Function Module for









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

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



Function K_SETTLEMENT_OBJECT_REPLACE 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_SETTLEMENT_OBJECT_REPLACE'"
EXPORTING
* CHECK_FLAG = ' ' "Check, whether actual object number is already used
* ALL_WITH_RECEIVER = ' ' "
* REAL_OBJNR = ' ' "Actual object number
* TEMP_OBJNR = ' ' "Temporary Object Number
* REAL_AUFNR = ' ' "
* TEMP_AUFNR = ' ' "
* REAL_PS_PSP_PNR = ' ' "
* TEMP_PS_PSP_PNR = ' ' "
* REAL_ANLN1 = ' ' "
* TEMP_ANLN1 = ' ' "

EXCEPTIONS
RULE_FOR_OBJNR_ALREADY_EXISTS = 1 WRONG_CALL = 2
.




Customer Function user exits

Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.
EXIT_SAPLKOBS_001 Creation of Settlement Rules: Strategies

IMPORTING Parameters details for K_SETTLEMENT_OBJECT_REPLACE

CHECK_FLAG - Check, whether actual object number is already used

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

ALL_WITH_RECEIVER -

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

REAL_OBJNR - Actual object number

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

TEMP_OBJNR - Temporary Object Number

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

REAL_AUFNR -

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

TEMP_AUFNR -

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

REAL_PS_PSP_PNR -

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

TEMP_PS_PSP_PNR -

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

REAL_ANLN1 -

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

TEMP_ANLN1 -

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

EXCEPTIONS details

RULE_FOR_OBJNR_ALREADY_EXISTS - Settlement rule for object number already exists

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

WRONG_CALL -

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

Copy and paste ABAP code example for K_SETTLEMENT_OBJECT_REPLACE 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_check_flag  TYPE DKOBR-XFELD, "   SPACE
lv_rule_for_objnr_already_exists  TYPE DKOBR, "   
lv_all_with_receiver  TYPE C, "   SPACE
lv_real_objnr  TYPE COBRA-OBJNR, "   SPACE
lv_wrong_call  TYPE COBRA, "   
lv_temp_objnr  TYPE COBRA-OBJNR, "   SPACE
lv_real_aufnr  TYPE COBRB-AUFNR, "   SPACE
lv_temp_aufnr  TYPE COBRB-AUFNR, "   SPACE
lv_real_ps_psp_pnr  TYPE COBRB-PS_PSP_PNR, "   SPACE
lv_temp_ps_psp_pnr  TYPE COBRB-PS_PSP_PNR, "   SPACE
lv_real_anln1  TYPE COBRB-ANLN1, "   SPACE
lv_temp_anln1  TYPE COBRB-ANLN1. "   SPACE

  CALL FUNCTION 'K_SETTLEMENT_OBJECT_REPLACE'  "
    EXPORTING
         CHECK_FLAG = lv_check_flag
         ALL_WITH_RECEIVER = lv_all_with_receiver
         REAL_OBJNR = lv_real_objnr
         TEMP_OBJNR = lv_temp_objnr
         REAL_AUFNR = lv_real_aufnr
         TEMP_AUFNR = lv_temp_aufnr
         REAL_PS_PSP_PNR = lv_real_ps_psp_pnr
         TEMP_PS_PSP_PNR = lv_temp_ps_psp_pnr
         REAL_ANLN1 = lv_real_anln1
         TEMP_ANLN1 = lv_temp_anln1
    EXCEPTIONS
        RULE_FOR_OBJNR_ALREADY_EXISTS = 1
        WRONG_CALL = 2
. " K_SETTLEMENT_OBJECT_REPLACE




ABAP code using 7.40 inline data declarations to call FM K_SETTLEMENT_OBJECT_REPLACE

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 XFELD FROM DKOBR INTO @DATA(ld_check_flag).
DATA(ld_check_flag) = ' '.
 
 
DATA(ld_all_with_receiver) = ' '.
 
"SELECT single OBJNR FROM COBRA INTO @DATA(ld_real_objnr).
DATA(ld_real_objnr) = ' '.
 
 
"SELECT single OBJNR FROM COBRA INTO @DATA(ld_temp_objnr).
DATA(ld_temp_objnr) = ' '.
 
"SELECT single AUFNR FROM COBRB INTO @DATA(ld_real_aufnr).
DATA(ld_real_aufnr) = ' '.
 
"SELECT single AUFNR FROM COBRB INTO @DATA(ld_temp_aufnr).
DATA(ld_temp_aufnr) = ' '.
 
"SELECT single PS_PSP_PNR FROM COBRB INTO @DATA(ld_real_ps_psp_pnr).
DATA(ld_real_ps_psp_pnr) = ' '.
 
"SELECT single PS_PSP_PNR FROM COBRB INTO @DATA(ld_temp_ps_psp_pnr).
DATA(ld_temp_ps_psp_pnr) = ' '.
 
"SELECT single ANLN1 FROM COBRB INTO @DATA(ld_real_anln1).
DATA(ld_real_anln1) = ' '.
 
"SELECT single ANLN1 FROM COBRB INTO @DATA(ld_temp_anln1).
DATA(ld_temp_anln1) = ' '.
 


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!