SAP OIUXI_LOAD_TRACT Function Module for Load Function for Property Tract









OIUXI_LOAD_TRACT is a standard oiuxi load tract SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Load Function for Property Tract 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 oiuxi load tract FM, simply by entering the name OIUXI_LOAD_TRACT into the relevant SAP transaction such as SE37 or SE38.

Function Group: OIUXI_VEN_UTP
Program Name: SAPLOIUXI_VEN_UTP
Main Program: SAPLOIUXI_VEN_UTP
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function OIUXI_LOAD_TRACT 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 'OIUXI_LOAD_TRACT'"Load Function for Property Tract
EXPORTING
I_BUKRS = "Company Code
I_UNIT_VNAME = "Joint venture

IMPORTING
RC = "Return value, return value after ABAP statements

TABLES
LOAD_PUC = "Property Unit Use Control Load Structure
LOAD_TRACT = "Tract Information Load Structure
RETURN = "Return parameter
* I_PPNH = "Prior Period Notification Header
* I_PPND = "Production Prior Period Notification Delivery Ntwk Det. T
* I_VPPNU = "Valuation Prior Period Notification
.



IMPORTING Parameters details for OIUXI_LOAD_TRACT

I_BUKRS - Company Code

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

I_UNIT_VNAME - Joint venture

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

EXPORTING Parameters details for OIUXI_LOAD_TRACT

RC - Return value, return value after ABAP statements

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

TABLES Parameters details for OIUXI_LOAD_TRACT

LOAD_PUC - Property Unit Use Control Load Structure

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

LOAD_TRACT - Tract Information Load Structure

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

RETURN - Return parameter

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

I_PPNH - Prior Period Notification Header

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

I_PPND - Production Prior Period Notification Delivery Ntwk Det. T

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

I_VPPNU - Valuation Prior Period Notification

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

Copy and paste ABAP code example for OIUXI_LOAD_TRACT 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_rc  TYPE SY-SUBRC, "   
lv_i_bukrs  TYPE OIU_DO_PUC-BUKRS, "   
lt_load_puc  TYPE STANDARD TABLE OF ROIUXI_LOAD_PUC, "   
lt_load_tract  TYPE STANDARD TABLE OF ROIUXI_LOAD_TRACT, "   
lv_i_unit_vname  TYPE OIU_DO_PUC-UNIT_VNAME, "   
lt_return  TYPE STANDARD TABLE OF BAPIRET2, "   
lt_i_ppnh  TYPE STANDARD TABLE OF OIU_PR_PPNH, "   
lt_i_ppnd  TYPE STANDARD TABLE OF OIU_PR_PPND, "   
lt_i_vppnu  TYPE STANDARD TABLE OF OIU_RV_VPPNU. "   

  CALL FUNCTION 'OIUXI_LOAD_TRACT'  "Load Function for Property Tract
    EXPORTING
         I_BUKRS = lv_i_bukrs
         I_UNIT_VNAME = lv_i_unit_vname
    IMPORTING
         RC = lv_rc
    TABLES
         LOAD_PUC = lt_load_puc
         LOAD_TRACT = lt_load_tract
         RETURN = lt_return
         I_PPNH = lt_i_ppnh
         I_PPND = lt_i_ppnd
         I_VPPNU = lt_i_vppnu
. " OIUXI_LOAD_TRACT




ABAP code using 7.40 inline data declarations to call FM OIUXI_LOAD_TRACT

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 SUBRC FROM SY INTO @DATA(ld_rc).
 
"SELECT single BUKRS FROM OIU_DO_PUC INTO @DATA(ld_i_bukrs).
 
 
 
"SELECT single UNIT_VNAME FROM OIU_DO_PUC INTO @DATA(ld_i_unit_vname).
 
 
 
 
 


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!