SAP OIUXI_UTP_CHECKIN Function Module for Check-in Unit Tract Participation records









OIUXI_UTP_CHECKIN is a standard oiuxi utp checkin SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Check-in Unit Tract Participation records 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 utp checkin FM, simply by entering the name OIUXI_UTP_CHECKIN into the relevant SAP transaction such as SE37 or SE38.

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



Function OIUXI_UTP_CHECKIN 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_UTP_CHECKIN'"Check-in Unit Tract Participation records
EXPORTING
MESSAGE_ID = "Connection ID

IMPORTING
E_MESSAGE_ID = "Connection ID
RESP_HEADER = "header structure (outbound to XI)

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

EXCEPTIONS
INPUT_FAIL = 1 OUTPUT_FAIL = 2
.



IMPORTING Parameters details for OIUXI_UTP_CHECKIN

MESSAGE_ID - Connection ID

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

EXPORTING Parameters details for OIUXI_UTP_CHECKIN

E_MESSAGE_ID - Connection ID

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

RESP_HEADER - header structure (outbound to XI)

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

TABLES Parameters details for OIUXI_UTP_CHECKIN

LOAD_PUC - Property Unit Use Control Header

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

LOAD_TRACT - Tract Information

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

I_PPNH - Prior Period Notification Header

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

I_PPND - Production Prior Period Notification Delivery Ntwk Det. T

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

I_VPPNU - Valuation Prior Period Notification

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

RETURN - Return Parameter

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

EXCEPTIONS details

INPUT_FAIL - Error processing input data

Data type:
Optional: No
Call by Reference: Yes

OUTPUT_FAIL - Error processing output data

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for OIUXI_UTP_CHECKIN 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:
lt_load_puc  TYPE STANDARD TABLE OF ROIUXI_LOAD_PUC, "   
lv_input_fail  TYPE ROIUXI_LOAD_PUC, "   
lv_message_id  TYPE OIUXI_CONN_ID, "   
lv_e_message_id  TYPE OIUXI_CONN_ID, "   
lt_load_tract  TYPE STANDARD TABLE OF ROIUXI_LOAD_TRACT, "   
lv_output_fail  TYPE ROIUXI_LOAD_TRACT, "   
lv_resp_header  TYPE ROIUXI_HEADER, "   
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, "   
lt_return  TYPE STANDARD TABLE OF BAPIRET2. "   

  CALL FUNCTION 'OIUXI_UTP_CHECKIN'  "Check-in Unit Tract Participation records
    EXPORTING
         MESSAGE_ID = lv_message_id
    IMPORTING
         E_MESSAGE_ID = lv_e_message_id
         RESP_HEADER = lv_resp_header
    TABLES
         LOAD_PUC = lt_load_puc
         LOAD_TRACT = lt_load_tract
         I_PPNH = lt_i_ppnh
         I_PPND = lt_i_ppnd
         I_VPPNU = lt_i_vppnu
         RETURN = lt_return
    EXCEPTIONS
        INPUT_FAIL = 1
        OUTPUT_FAIL = 2
. " OIUXI_UTP_CHECKIN




ABAP code using 7.40 inline data declarations to call FM OIUXI_UTP_CHECKIN

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!