SAP JV_VENTURE_UPDATE Function Module for Update Joint Venture database tables









JV_VENTURE_UPDATE is a standard jv venture update SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Update Joint Venture database tables 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 jv venture update FM, simply by entering the name JV_VENTURE_UPDATE into the relevant SAP transaction such as SE37 or SE38.

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



Function JV_VENTURE_UPDATE 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 'JV_VENTURE_UPDATE'"Update Joint Venture database tables
EXPORTING
IV_BUKRS = "company code
* IT_T8JI = "Joint Venture Inter-Company Ventures
* IT_T8JSC = "Joint Venture Substitute Cost Object
* IT_T8J3E = "JV Non-operated Billing Operator Codes
* IT_T8JVET = "
* IT_T8JVORP = "Overhead burden rate percentages (venture level)
* IT_T8JC2 = "Funding Currency by Equity Group
IV_VNAME = "joint venture name
IT_T8JV = "Joint venture
* IT_T8JVT = "Joint venture description
* IT_T8JG = "Valid Investment Group
* IT_T8JF = "Investment Group
* IT_T8JFT = "Investment Group Description
* IT_T8JQ = "Joint Venture Owner Equity
* IT_T8J2C = "Carried Interest
.



IMPORTING Parameters details for JV_VENTURE_UPDATE

IV_BUKRS - company code

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

IT_T8JI - Joint Venture Inter-Company Ventures

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

IT_T8JSC - Joint Venture Substitute Cost Object

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

IT_T8J3E - JV Non-operated Billing Operator Codes

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

IT_T8JVET -

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

IT_T8JVORP - Overhead burden rate percentages (venture level)

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

IT_T8JC2 - Funding Currency by Equity Group

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

IV_VNAME - joint venture name

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

IT_T8JV - Joint venture

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

IT_T8JVT - Joint venture description

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

IT_T8JG - Valid Investment Group

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

IT_T8JF - Investment Group

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

IT_T8JFT - Investment Group Description

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

IT_T8JQ - Joint Venture Owner Equity

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

IT_T8J2C - Carried Interest

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

Copy and paste ABAP code example for JV_VENTURE_UPDATE 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_iv_bukrs  TYPE BUKRS, "   
lv_it_t8ji  TYPE JVA_T8JI_T, "   
lv_it_t8jsc  TYPE JVA_T8JSC_T, "   
lv_it_t8j3e  TYPE JVA_T8J3E_T, "   
lv_it_t8jvet  TYPE JVA_T8JVET_T, "   
lv_it_t8jvorp  TYPE JVA_T8JVORP_T, "   
lv_it_t8jc2  TYPE JVA_T8JC2_T, "   
lv_iv_vname  TYPE JV_NAME, "   
lv_it_t8jv  TYPE JVA_T8JV_T, "   
lv_it_t8jvt  TYPE JVA_T8JVT_T, "   
lv_it_t8jg  TYPE JVA_T8JG_T, "   
lv_it_t8jf  TYPE JVA_T8JF_T, "   
lv_it_t8jft  TYPE JVA_T8JFT_T, "   
lv_it_t8jq  TYPE JVA_T8JQ_T, "   
lv_it_t8j2c  TYPE JVA_T8J2C_T. "   

  CALL FUNCTION 'JV_VENTURE_UPDATE'  "Update Joint Venture database tables
    EXPORTING
         IV_BUKRS = lv_iv_bukrs
         IT_T8JI = lv_it_t8ji
         IT_T8JSC = lv_it_t8jsc
         IT_T8J3E = lv_it_t8j3e
         IT_T8JVET = lv_it_t8jvet
         IT_T8JVORP = lv_it_t8jvorp
         IT_T8JC2 = lv_it_t8jc2
         IV_VNAME = lv_iv_vname
         IT_T8JV = lv_it_t8jv
         IT_T8JVT = lv_it_t8jvt
         IT_T8JG = lv_it_t8jg
         IT_T8JF = lv_it_t8jf
         IT_T8JFT = lv_it_t8jft
         IT_T8JQ = lv_it_t8jq
         IT_T8J2C = lv_it_t8j2c
. " JV_VENTURE_UPDATE




ABAP code using 7.40 inline data declarations to call FM JV_VENTURE_UPDATE

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.

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 


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!