SAP EFG_WORKLIST_POPUP Function Module for









EFG_WORKLIST_POPUP is a standard efg worklist popup SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 efg worklist popup FM, simply by entering the name EFG_WORKLIST_POPUP into the relevant SAP transaction such as SE37 or SE38.

Function Group: EFTR
Program Name: SAPLEFTR
Main Program: SAPLEFTR
Appliation area: E
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function EFG_WORKLIST_POPUP 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 'EFG_WORKLIST_POPUP'"
EXPORTING
X_WMODE = "Processing Mode
* X_DATE = "
* X_IDENTIFIER = "Indicator

IMPORTING
Y_DATE = "
Y_IDENTIFIER = "Indicator
Y_DESCRIPT = "
Y_RESPONSIBLE = "Person Responsible for Translation Worklist

EXCEPTIONS
NOT_QUALIFIED = 1 CANCELLED = 2 FAILED = 3
.




Customer Function user exits

Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.
EXIT_SAPLEFTRANS_001 ISU: User Exit for Transferring Installation Facts

IMPORTING Parameters details for EFG_WORKLIST_POPUP

X_WMODE - Processing Mode

Data type: RFGEN-WMODE
Optional: No
Call by Reference: No ( called with pass by value option)

X_DATE -

Data type: EFRMTRLST-EDATE
Optional: Yes
Call by Reference: No ( called with pass by value option)

X_IDENTIFIER - Indicator

Data type: EFRMTRLST-IDENTIFIER
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for EFG_WORKLIST_POPUP

Y_DATE -

Data type: EFRMTRLST-EDATE
Optional: No
Call by Reference: No ( called with pass by value option)

Y_IDENTIFIER - Indicator

Data type: EFRMTRLST-IDENTIFIER
Optional: No
Call by Reference: No ( called with pass by value option)

Y_DESCRIPT -

Data type: EFRMTRLST-DESCRIPT
Optional: No
Call by Reference: No ( called with pass by value option)

Y_RESPONSIBLE - Person Responsible for Translation Worklist

Data type: EFRMTRLST-RESPONSIBLE
Optional: No
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

NOT_QUALIFIED -

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

CANCELLED - Canceled by user

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

FAILED - The process could not be executed

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

Copy and paste ABAP code example for EFG_WORKLIST_POPUP 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_date  TYPE EFRMTRLST-EDATE, "   
lv_x_wmode  TYPE RFGEN-WMODE, "   
lv_not_qualified  TYPE RFGEN, "   
lv_x_date  TYPE EFRMTRLST-EDATE, "   
lv_cancelled  TYPE EFRMTRLST, "   
lv_y_identifier  TYPE EFRMTRLST-IDENTIFIER, "   
lv_failed  TYPE EFRMTRLST, "   
lv_y_descript  TYPE EFRMTRLST-DESCRIPT, "   
lv_x_identifier  TYPE EFRMTRLST-IDENTIFIER, "   
lv_y_responsible  TYPE EFRMTRLST-RESPONSIBLE. "   

  CALL FUNCTION 'EFG_WORKLIST_POPUP'  "
    EXPORTING
         X_WMODE = lv_x_wmode
         X_DATE = lv_x_date
         X_IDENTIFIER = lv_x_identifier
    IMPORTING
         Y_DATE = lv_y_date
         Y_IDENTIFIER = lv_y_identifier
         Y_DESCRIPT = lv_y_descript
         Y_RESPONSIBLE = lv_y_responsible
    EXCEPTIONS
        NOT_QUALIFIED = 1
        CANCELLED = 2
        FAILED = 3
. " EFG_WORKLIST_POPUP




ABAP code using 7.40 inline data declarations to call FM EFG_WORKLIST_POPUP

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 EDATE FROM EFRMTRLST INTO @DATA(ld_y_date).
 
"SELECT single WMODE FROM RFGEN INTO @DATA(ld_x_wmode).
 
 
"SELECT single EDATE FROM EFRMTRLST INTO @DATA(ld_x_date).
 
 
"SELECT single IDENTIFIER FROM EFRMTRLST INTO @DATA(ld_y_identifier).
 
 
"SELECT single DESCRIPT FROM EFRMTRLST INTO @DATA(ld_y_descript).
 
"SELECT single IDENTIFIER FROM EFRMTRLST INTO @DATA(ld_x_identifier).
 
"SELECT single RESPONSIBLE FROM EFRMTRLST INTO @DATA(ld_y_responsible).
 


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!