SAP OIUX1_GET_UNIT_VENTURE Function Module for Get unit venture name for a venture
OIUX1_GET_UNIT_VENTURE is a standard oiux1 get unit venture SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Get unit venture name for a venture 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 oiux1 get unit venture FM, simply by entering the name OIUX1_GET_UNIT_VENTURE into the relevant SAP transaction such as SE37 or SE38.
Function Group: OIUX1_TAX_CONTROL
Program Name: SAPLOIUX1_TAX_CONTROL
Main Program: SAPLOIUX1_TAX_CONTROL
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function OIUX1_GET_UNIT_VENTURE 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 'OIUX1_GET_UNIT_VENTURE'"Get unit venture name for a venture.
EXPORTING
BUKRS = "Company Code
VNAME = "Display variant
DOI_NO = "Division of interest (DOI)
SALES_YYYYMM = "Sales YYYYMM
IMPORTING
UNIT_VNAME = "Joint Venture
IMPORTING Parameters details for OIUX1_GET_UNIT_VENTURE
BUKRS - Company Code
Data type: BUKRSOptional: No
Call by Reference: Yes
VNAME - Display variant
Data type: JV_NAMEOptional: No
Call by Reference: Yes
DOI_NO - Division of interest (DOI)
Data type: OIU_DOI_NOOptional: No
Call by Reference: Yes
SALES_YYYYMM - Sales YYYYMM
Data type: OIUREP_SALES_YYYYMMOptional: No
Call by Reference: Yes
EXPORTING Parameters details for OIUX1_GET_UNIT_VENTURE
UNIT_VNAME - Joint Venture
Data type: JV_NAMEOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for OIUX1_GET_UNIT_VENTURE 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_bukrs | TYPE BUKRS, " | |||
| lv_unit_vname | TYPE JV_NAME, " | |||
| lv_vname | TYPE JV_NAME, " | |||
| lv_doi_no | TYPE OIU_DOI_NO, " | |||
| lv_sales_yyyymm | TYPE OIUREP_SALES_YYYYMM. " |
|   CALL FUNCTION 'OIUX1_GET_UNIT_VENTURE' "Get unit venture name for a venture |
| EXPORTING | ||
| BUKRS | = lv_bukrs | |
| VNAME | = lv_vname | |
| DOI_NO | = lv_doi_no | |
| SALES_YYYYMM | = lv_sales_yyyymm | |
| IMPORTING | ||
| UNIT_VNAME | = lv_unit_vname | |
| . " OIUX1_GET_UNIT_VENTURE | ||
ABAP code using 7.40 inline data declarations to call FM OIUX1_GET_UNIT_VENTURE
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