SAP JOINT_VENTURE_RECIND_SET Function Module for









JOINT_VENTURE_RECIND_SET is a standard joint venture recind set 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 joint venture recind set FM, simply by entering the name JOINT_VENTURE_RECIND_SET into the relevant SAP transaction such as SE37 or SE38.

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



Function JOINT_VENTURE_RECIND_SET 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 'JOINT_VENTURE_RECIND_SET'"
EXPORTING
BSEG_SHKZG = "Debits/credits indicator of the po
SKA1_XBILK = "Indicator: balance sheet account
SKB1_RECID = "Receiving indicator master
T001_XJVAA = "Indicator: Joint venture active
T003_RECIC = "Receiving Indicator document type
T003_RECID = "Receiving indicator document type

IMPORTING
BSEG_RECID = "Receiving indicator posting
.



IMPORTING Parameters details for JOINT_VENTURE_RECIND_SET

BSEG_SHKZG - Debits/credits indicator of the po

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

SKA1_XBILK - Indicator: balance sheet account

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

SKB1_RECID - Receiving indicator master

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

T001_XJVAA - Indicator: Joint venture active

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

T003_RECIC - Receiving Indicator document type

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

T003_RECID - Receiving indicator document type

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

EXPORTING Parameters details for JOINT_VENTURE_RECIND_SET

BSEG_RECID - Receiving indicator posting

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

Copy and paste ABAP code example for JOINT_VENTURE_RECIND_SET 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_bseg_recid  TYPE BSEG-RECID, "   
lv_bseg_shkzg  TYPE BSEG-SHKZG, "   
lv_ska1_xbilk  TYPE SKA1-XBILK, "   
lv_skb1_recid  TYPE SKB1-RECID, "   
lv_t001_xjvaa  TYPE T001-XJVAA, "   
lv_t003_recic  TYPE T003-RECID, "   
lv_t003_recid  TYPE T003-RECID. "   

  CALL FUNCTION 'JOINT_VENTURE_RECIND_SET'  "
    EXPORTING
         BSEG_SHKZG = lv_bseg_shkzg
         SKA1_XBILK = lv_ska1_xbilk
         SKB1_RECID = lv_skb1_recid
         T001_XJVAA = lv_t001_xjvaa
         T003_RECIC = lv_t003_recic
         T003_RECID = lv_t003_recid
    IMPORTING
         BSEG_RECID = lv_bseg_recid
. " JOINT_VENTURE_RECIND_SET




ABAP code using 7.40 inline data declarations to call FM JOINT_VENTURE_RECIND_SET

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 RECID FROM BSEG INTO @DATA(ld_bseg_recid).
 
"SELECT single SHKZG FROM BSEG INTO @DATA(ld_bseg_shkzg).
 
"SELECT single XBILK FROM SKA1 INTO @DATA(ld_ska1_xbilk).
 
"SELECT single RECID FROM SKB1 INTO @DATA(ld_skb1_recid).
 
"SELECT single XJVAA FROM T001 INTO @DATA(ld_t001_xjvaa).
 
"SELECT single RECID FROM T003 INTO @DATA(ld_t003_recic).
 
"SELECT single RECID FROM T003 INTO @DATA(ld_t003_recid).
 


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!