SAP CON_FIN_PR_UPDT_NEW_DEFAULTS Function Module for









CON_FIN_PR_UPDT_NEW_DEFAULTS is a standard con fin pr updt new defaults 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 con fin pr updt new defaults FM, simply by entering the name CON_FIN_PR_UPDT_NEW_DEFAULTS into the relevant SAP transaction such as SE37 or SE38.

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



Function CON_FIN_PR_UPDT_NEW_DEFAULTS 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 'CON_FIN_PR_UPDT_NEW_DEFAULTS'"
EXPORTING
P_INITIALIZE = "
P_CKVO = "
P_CKSO = "
P_CKOR = "
* P_KALAID = "
* P_KALADAT = "

CHANGING
* P_KLVAR = "
P_TVERS = "
P_DATE = "
P_RFC = "
P_PLABEL = "
P_PLVIEW = "
P_PLROH = "
.



IMPORTING Parameters details for CON_FIN_PR_UPDT_NEW_DEFAULTS

P_INITIALIZE -

Data type: XFELD
Optional: No
Call by Reference: Yes

P_CKVO -

Data type: CKIPRICESUPDATE-P_CKVO
Optional: No
Call by Reference: Yes

P_CKSO -

Data type: CKIPRICESUPDATE-P_CKSO
Optional: No
Call by Reference: Yes

P_CKOR -

Data type: CKIPRICESUPDATE-P_CKOR
Optional: No
Call by Reference: Yes

P_KALAID -

Data type: CKIPRICESUPDATE-KALAID
Optional: Yes
Call by Reference: Yes

P_KALADAT -

Data type: CKIPRICESUPDATE-KALADAT
Optional: Yes
Call by Reference: Yes

CHANGING Parameters details for CON_FIN_PR_UPDT_NEW_DEFAULTS

P_KLVAR -

Data type: CKIPRICESUPDATE-P_KLVAR
Optional: Yes
Call by Reference: Yes

P_TVERS -

Data type: CKIPRICESUPDATE-P_TVERS
Optional: No
Call by Reference: Yes

P_DATE -

Data type: CKIPRICESUPDATE-P_DATE
Optional: No
Call by Reference: Yes

P_RFC -

Data type: CKIPRICESUPDATE-P_RFC
Optional: No
Call by Reference: Yes

P_PLABEL -

Data type: CKIPRICESUPDATE-PRICE_LABEL
Optional: No
Call by Reference: Yes

P_PLVIEW -

Data type: CKIPRICESUPDATE-PRICE_LABEL_VIEW
Optional: No
Call by Reference: Yes

P_PLROH -

Data type: CKIPRICESUPDATE-P_PLROH
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for CON_FIN_PR_UPDT_NEW_DEFAULTS 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_p_klvar  TYPE CKIPRICESUPDATE-P_KLVAR, "   
lv_p_initialize  TYPE XFELD, "   
lv_p_ckvo  TYPE CKIPRICESUPDATE-P_CKVO, "   
lv_p_tvers  TYPE CKIPRICESUPDATE-P_TVERS, "   
lv_p_ckso  TYPE CKIPRICESUPDATE-P_CKSO, "   
lv_p_date  TYPE CKIPRICESUPDATE-P_DATE, "   
lv_p_rfc  TYPE CKIPRICESUPDATE-P_RFC, "   
lv_p_ckor  TYPE CKIPRICESUPDATE-P_CKOR, "   
lv_p_kalaid  TYPE CKIPRICESUPDATE-KALAID, "   
lv_p_plabel  TYPE CKIPRICESUPDATE-PRICE_LABEL, "   
lv_p_plview  TYPE CKIPRICESUPDATE-PRICE_LABEL_VIEW, "   
lv_p_kaladat  TYPE CKIPRICESUPDATE-KALADAT, "   
lv_p_plroh  TYPE CKIPRICESUPDATE-P_PLROH. "   

  CALL FUNCTION 'CON_FIN_PR_UPDT_NEW_DEFAULTS'  "
    EXPORTING
         P_INITIALIZE = lv_p_initialize
         P_CKVO = lv_p_ckvo
         P_CKSO = lv_p_ckso
         P_CKOR = lv_p_ckor
         P_KALAID = lv_p_kalaid
         P_KALADAT = lv_p_kaladat
    CHANGING
         P_KLVAR = lv_p_klvar
         P_TVERS = lv_p_tvers
         P_DATE = lv_p_date
         P_RFC = lv_p_rfc
         P_PLABEL = lv_p_plabel
         P_PLVIEW = lv_p_plview
         P_PLROH = lv_p_plroh
. " CON_FIN_PR_UPDT_NEW_DEFAULTS




ABAP code using 7.40 inline data declarations to call FM CON_FIN_PR_UPDT_NEW_DEFAULTS

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 P_KLVAR FROM CKIPRICESUPDATE INTO @DATA(ld_p_klvar).
 
 
"SELECT single P_CKVO FROM CKIPRICESUPDATE INTO @DATA(ld_p_ckvo).
 
"SELECT single P_TVERS FROM CKIPRICESUPDATE INTO @DATA(ld_p_tvers).
 
"SELECT single P_CKSO FROM CKIPRICESUPDATE INTO @DATA(ld_p_ckso).
 
"SELECT single P_DATE FROM CKIPRICESUPDATE INTO @DATA(ld_p_date).
 
"SELECT single P_RFC FROM CKIPRICESUPDATE INTO @DATA(ld_p_rfc).
 
"SELECT single P_CKOR FROM CKIPRICESUPDATE INTO @DATA(ld_p_ckor).
 
"SELECT single KALAID FROM CKIPRICESUPDATE INTO @DATA(ld_p_kalaid).
 
"SELECT single PRICE_LABEL FROM CKIPRICESUPDATE INTO @DATA(ld_p_plabel).
 
"SELECT single PRICE_LABEL_VIEW FROM CKIPRICESUPDATE INTO @DATA(ld_p_plview).
 
"SELECT single KALADAT FROM CKIPRICESUPDATE INTO @DATA(ld_p_kaladat).
 
"SELECT single P_PLROH FROM CKIPRICESUPDATE INTO @DATA(ld_p_plroh).
 


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!