SAP OIRE_UPLOAD_PROCESS_STATUS Function Module for Process status update for the upload process
OIRE_UPLOAD_PROCESS_STATUS is a standard oire upload process status SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Process status update for the upload process 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 oire upload process status FM, simply by entering the name OIRE_UPLOAD_PROCESS_STATUS into the relevant SAP transaction such as SE37 or SE38.
Function Group: OIRE_PC_UPLOAD
Program Name: SAPLOIRE_PC_UPLOAD
Main Program: SAPLOIRE_PC_UPLOAD
Appliation area: V
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function OIRE_UPLOAD_PROCESS_STATUS 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 'OIRE_UPLOAD_PROCESS_STATUS'"Process status update for the upload process.
EXPORTING
I_PROCDEF = "Process Definition (IS-OIL SSR)
CHANGING
PC_PC_OBJ = "
PC_CC01_OBJ = "
* PC_CE_OBJ = "
TABLES
XDTFLOCH = "SSR PC: Template for generated DTF tables (header)
EXCEPTIONS
PROCESS_CUSTOMIZING = 1
IMPORTING Parameters details for OIRE_UPLOAD_PROCESS_STATUS
I_PROCDEF - Process Definition (IS-OIL SSR)
Data type: OIRAPROCDEF-PROCDEFOptional: No
Call by Reference: Yes
CHANGING Parameters details for OIRE_UPLOAD_PROCESS_STATUS
PC_PC_OBJ -
Data type: OIRA1_PC_REFOBJOptional: No
Call by Reference: Yes
PC_CC01_OBJ -
Data type: OIRA1_CC01_REFOBJOptional: No
Call by Reference: Yes
PC_CE_OBJ -
Data type: OIRA1_CE_REFOBJOptional: Yes
Call by Reference: Yes
TABLES Parameters details for OIRE_UPLOAD_PROCESS_STATUS
XDTFLOCH - SSR PC: Template for generated DTF tables (header)
Data type: OIREUPLKXXXXOptional: No
Call by Reference: Yes
EXCEPTIONS details
PROCESS_CUSTOMIZING - An error occured while retrieving the process control customizing.
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for OIRE_UPLOAD_PROCESS_STATUS 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_xdtfloch | TYPE STANDARD TABLE OF OIREUPLKXXXX, " | |||
| lv_i_procdef | TYPE OIRAPROCDEF-PROCDEF, " | |||
| lv_pc_pc_obj | TYPE OIRA1_PC_REFOBJ, " | |||
| lv_process_customizing | TYPE OIRA1_PC_REFOBJ, " | |||
| lv_pc_cc01_obj | TYPE OIRA1_CC01_REFOBJ, " | |||
| lv_pc_ce_obj | TYPE OIRA1_CE_REFOBJ. " |
|   CALL FUNCTION 'OIRE_UPLOAD_PROCESS_STATUS' "Process status update for the upload process |
| EXPORTING | ||
| I_PROCDEF | = lv_i_procdef | |
| CHANGING | ||
| PC_PC_OBJ | = lv_pc_pc_obj | |
| PC_CC01_OBJ | = lv_pc_cc01_obj | |
| PC_CE_OBJ | = lv_pc_ce_obj | |
| TABLES | ||
| XDTFLOCH | = lt_xdtfloch | |
| EXCEPTIONS | ||
| PROCESS_CUSTOMIZING = 1 | ||
| . " OIRE_UPLOAD_PROCESS_STATUS | ||
ABAP code using 7.40 inline data declarations to call FM OIRE_UPLOAD_PROCESS_STATUS
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 PROCDEF FROM OIRAPROCDEF INTO @DATA(ld_i_procdef). | ||||
Search for further information about these or an SAP related objects