SAP OIUCA_TRCT_UPDATE_MULTI Function Module for Creates, deletes or updates the OIU_SB_DOIMP and OIU_SB_DOIWC tables.
OIUCA_TRCT_UPDATE_MULTI is a standard oiuca trct update multi SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Creates, deletes or updates the OIU_SB_DOIMP and OIU_SB_DOIWC 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 oiuca trct update multi FM, simply by entering the name OIUCA_TRCT_UPDATE_MULTI into the relevant SAP transaction such as SE37 or SE38.
Function Group: OIUCA_MPWC_TRN_CT_XREF
Program Name: SAPLOIUCA_MPWC_TRN_CT_XREF
Main Program: SAPLOIUCA_MPWC_TRN_CT_XREF
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update: 1

Function OIUCA_TRCT_UPDATE_MULTI 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 'OIUCA_TRCT_UPDATE_MULTI'"Creates, deletes or updates the OIU_SB_DOIMP and OIU_SB_DOIWC tables..
EXPORTING
IV_DBACTION = "Action on database: (u)pdate, (d)elete, (i)nsert
IT_ROIUCA_TRNCT = "MP/WC Transporter to Contract Xref Table Type
* IT_CAMPH = "Table Type for Contract volumes by measurement point header
* IT_CAMPGD = "Table type for OIU_SB_CAMPGD table
* IT_CAMPOD = "Table type for Contract Volumes by Measurement Point - Oil
IMPORTING Parameters details for OIUCA_TRCT_UPDATE_MULTI
IV_DBACTION - Action on database: (u)pdate, (d)elete, (i)nsert
Data type: OIU_DBACTIONOptional: No
Call by Reference: No ( called with pass by value option)
IT_ROIUCA_TRNCT - MP/WC Transporter to Contract Xref Table Type
Data type: /PRA/T_ROIUCA_TRNCTOptional: No
Call by Reference: No ( called with pass by value option)
IT_CAMPH - Table Type for Contract volumes by measurement point header
Data type: /PRA/T_OIU_SB_CAMPHOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_CAMPGD - Table type for OIU_SB_CAMPGD table
Data type: /PRA/T_OIU_SB_CAMPGDOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_CAMPOD - Table type for Contract Volumes by Measurement Point - Oil
Data type: /PRA/T_OIU_SB_CAMPODOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for OIUCA_TRCT_UPDATE_MULTI 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_dbaction | TYPE OIU_DBACTION, " | |||
| lv_it_roiuca_trnct | TYPE /PRA/T_ROIUCA_TRNCT, " | |||
| lv_it_camph | TYPE /PRA/T_OIU_SB_CAMPH, " | |||
| lv_it_campgd | TYPE /PRA/T_OIU_SB_CAMPGD, " | |||
| lv_it_campod | TYPE /PRA/T_OIU_SB_CAMPOD. " |
|   CALL FUNCTION 'OIUCA_TRCT_UPDATE_MULTI' "Creates, deletes or updates the OIU_SB_DOIMP and OIU_SB_DOIWC tables. |
| EXPORTING | ||
| IV_DBACTION | = lv_iv_dbaction | |
| IT_ROIUCA_TRNCT | = lv_it_roiuca_trnct | |
| IT_CAMPH | = lv_it_camph | |
| IT_CAMPGD | = lv_it_campgd | |
| IT_CAMPOD | = lv_it_campod | |
| . " OIUCA_TRCT_UPDATE_MULTI | ||
ABAP code using 7.40 inline data declarations to call FM OIUCA_TRCT_UPDATE_MULTI
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