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

Function EWU_STATUS_UPDATE 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 'EWU_STATUS_UPDATE'"NOTRANSL: Fortschreiben des Programmstatus.
EXPORTING
* STATUS = "Program status
* AUFSETZARG = "Restart argument during restart
EXCEPTIONS
NO_PAKET_ENTRY = 1 FOREIGN_LOCK = 2 SYSTEM_FAILURE = 3 NO_PROGRAM_ENTRY = 4 WRONG_CALL = 5 ACTIVE_PAKET_NOT_FOUND = 6 UPDATE_DENIED = 7
IMPORTING Parameters details for EWU_STATUS_UPDATE
STATUS - Program status
Data type: EWUPGSTAT-STATUSOptional: Yes
Call by Reference: No ( called with pass by value option)
AUFSETZARG - Restart argument during restart
Data type:Optional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_PAKET_ENTRY - Package not maintained
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
FOREIGN_LOCK - Data record locked in control table
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
SYSTEM_FAILURE - System error when calling enqueue module
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_PROGRAM_ENTRY - Program not maintained in control table
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
WRONG_CALL - Incorrect calling of function module
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
ACTIVE_PAKET_NOT_FOUND - Active package was not found
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
UPDATE_DENIED - Update not allowed in this form
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for EWU_STATUS_UPDATE 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_status | TYPE EWUPGSTAT-STATUS, " | |||
| lv_no_paket_entry | TYPE EWUPGSTAT, " | |||
| lv_aufsetzarg | TYPE EWUPGSTAT, " | |||
| lv_foreign_lock | TYPE EWUPGSTAT, " | |||
| lv_system_failure | TYPE EWUPGSTAT, " | |||
| lv_no_program_entry | TYPE EWUPGSTAT, " | |||
| lv_wrong_call | TYPE EWUPGSTAT, " | |||
| lv_active_paket_not_found | TYPE EWUPGSTAT, " | |||
| lv_update_denied | TYPE EWUPGSTAT. " |
|   CALL FUNCTION 'EWU_STATUS_UPDATE' "NOTRANSL: Fortschreiben des Programmstatus |
| EXPORTING | ||
| STATUS | = lv_status | |
| AUFSETZARG | = lv_aufsetzarg | |
| EXCEPTIONS | ||
| NO_PAKET_ENTRY = 1 | ||
| FOREIGN_LOCK = 2 | ||
| SYSTEM_FAILURE = 3 | ||
| NO_PROGRAM_ENTRY = 4 | ||
| WRONG_CALL = 5 | ||
| ACTIVE_PAKET_NOT_FOUND = 6 | ||
| UPDATE_DENIED = 7 | ||
| . " EWU_STATUS_UPDATE | ||
ABAP code using 7.40 inline data declarations to call FM EWU_STATUS_UPDATE
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 STATUS FROM EWUPGSTAT INTO @DATA(ld_status). | ||||
Search for further information about these or an SAP related objects