SAP EWB_FOPROC_OPEN Function Module for Front Office Process: Open
EWB_FOPROC_OPEN is a standard ewb foproc open SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Front Office Process: Open 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 ewb foproc open FM, simply by entering the name EWB_FOPROC_OPEN into the relevant SAP transaction such as SE37 or SE38.
Function Group: EWB8
Program Name: SAPLEWB8
Main Program: SAPLEWB8
Appliation area: E
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function EWB_FOPROC_OPEN 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 'EWB_FOPROC_OPEN'"Front Office Process: Open.
EXPORTING
X_PROCNAME = "
X_WMODE = "
* X_PROCTYPE = 01 "
IMPORTING
Y_COBJ = "
EXCEPTIONS
PROC_INVALID = 1 PROC_EXISTING = 2 PROC_NOT_FOUND = 3 FOREIGN_LOCK = 4 CANCELLED = 5 GENERAL_FAULT = 6
IMPORTING Parameters details for EWB_FOPROC_OPEN
X_PROCNAME -
Data type: EWBPROCX-BUSPROCOptional: No
Call by Reference: No ( called with pass by value option)
X_WMODE -
Data type: EBAGEN-WMODEOptional: No
Call by Reference: No ( called with pass by value option)
X_PROCTYPE -
Data type: EWBPROCX-PROCTYPEDefault: 01
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for EWB_FOPROC_OPEN
Y_COBJ -
Data type:Optional: No
Call by Reference: Yes
EXCEPTIONS details
PROC_INVALID -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
PROC_EXISTING -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
PROC_NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
FOREIGN_LOCK -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
CANCELLED -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
GENERAL_FAULT -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for EWB_FOPROC_OPEN 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_y_cobj | TYPE STRING, " | |||
| lv_x_procname | TYPE EWBPROCX-BUSPROC, " | |||
| lv_proc_invalid | TYPE EWBPROCX, " | |||
| lv_x_wmode | TYPE EBAGEN-WMODE, " | |||
| lv_proc_existing | TYPE EBAGEN, " | |||
| lv_x_proctype | TYPE EWBPROCX-PROCTYPE, " 01 | |||
| lv_proc_not_found | TYPE EWBPROCX, " | |||
| lv_foreign_lock | TYPE EWBPROCX, " | |||
| lv_cancelled | TYPE EWBPROCX, " | |||
| lv_general_fault | TYPE EWBPROCX. " |
|   CALL FUNCTION 'EWB_FOPROC_OPEN' "Front Office Process: Open |
| EXPORTING | ||
| X_PROCNAME | = lv_x_procname | |
| X_WMODE | = lv_x_wmode | |
| X_PROCTYPE | = lv_x_proctype | |
| IMPORTING | ||
| Y_COBJ | = lv_y_cobj | |
| EXCEPTIONS | ||
| PROC_INVALID = 1 | ||
| PROC_EXISTING = 2 | ||
| PROC_NOT_FOUND = 3 | ||
| FOREIGN_LOCK = 4 | ||
| CANCELLED = 5 | ||
| GENERAL_FAULT = 6 | ||
| . " EWB_FOPROC_OPEN | ||
ABAP code using 7.40 inline data declarations to call FM EWB_FOPROC_OPEN
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 BUSPROC FROM EWBPROCX INTO @DATA(ld_x_procname). | ||||
| "SELECT single WMODE FROM EBAGEN INTO @DATA(ld_x_wmode). | ||||
| "SELECT single PROCTYPE FROM EWBPROCX INTO @DATA(ld_x_proctype). | ||||
| DATA(ld_x_proctype) | = 01. | |||
Search for further information about these or an SAP related objects