SAP UMUPG_STATUS_HANDLING Function Module for Combined Upgrade & Unicode Conversion: Status
UMUPG_STATUS_HANDLING is a standard umupg status handling SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Combined Upgrade & Unicode Conversion: Status 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 umupg status handling FM, simply by entering the name UMUPG_STATUS_HANDLING into the relevant SAP transaction such as SE37 or SE38.
Function Group: SUGM
Program Name: SAPLSUGM
Main Program: SAPLSUGM
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function UMUPG_STATUS_HANDLING 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 'UMUPG_STATUS_HANDLING'"Combined Upgrade & Unicode Conversion: Status.
EXPORTING
* IV_ACTION = 'READ' "Name einer Add-On Auslieferungs-Einheit
* IV_STATUS = '?' "
IMPORTING
EV_CURRENT_STATUS = "
TABLES
* TT_UM4STATUS = "
EXCEPTIONS
PARAMETER_ERROR = 1
IMPORTING Parameters details for UMUPG_STATUS_HANDLING
IV_ACTION - Name einer Add-On Auslieferungs-Einheit
Data type: NAVERS-R3RELEASEDefault: 'READ'
Optional: No
Call by Reference: No ( called with pass by value option)
IV_STATUS -
Data type: UM4STATUS-STATUSDefault: '?'
Optional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for UMUPG_STATUS_HANDLING
EV_CURRENT_STATUS -
Data type: UM4STATUS-STATUSOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for UMUPG_STATUS_HANDLING
TT_UM4STATUS -
Data type: UM4STATUSOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
PARAMETER_ERROR -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for UMUPG_STATUS_HANDLING 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_action | TYPE NAVERS-R3RELEASE, " 'READ' | |||
| lt_tt_um4status | TYPE STANDARD TABLE OF UM4STATUS, " | |||
| lv_parameter_error | TYPE UM4STATUS, " | |||
| lv_ev_current_status | TYPE UM4STATUS-STATUS, " | |||
| lv_iv_status | TYPE UM4STATUS-STATUS. " '?' |
|   CALL FUNCTION 'UMUPG_STATUS_HANDLING' "Combined Upgrade & Unicode Conversion: Status |
| EXPORTING | ||
| IV_ACTION | = lv_iv_action | |
| IV_STATUS | = lv_iv_status | |
| IMPORTING | ||
| EV_CURRENT_STATUS | = lv_ev_current_status | |
| TABLES | ||
| TT_UM4STATUS | = lt_tt_um4status | |
| EXCEPTIONS | ||
| PARAMETER_ERROR = 1 | ||
| . " UMUPG_STATUS_HANDLING | ||
ABAP code using 7.40 inline data declarations to call FM UMUPG_STATUS_HANDLING
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 R3RELEASE FROM NAVERS INTO @DATA(ld_iv_action). | ||||
| DATA(ld_iv_action) | = 'READ'. | |||
| "SELECT single STATUS FROM UM4STATUS INTO @DATA(ld_ev_current_status). | ||||
| "SELECT single STATUS FROM UM4STATUS INTO @DATA(ld_iv_status). | ||||
| DATA(ld_iv_status) | = '?'. | |||
Search for further information about these or an SAP related objects