SAP EPS_PROGRESS_POPUP Function Module for EPS client: transmission monitor









EPS_PROGRESS_POPUP is a standard eps progress popup SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for EPS client: transmission monitor 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 eps progress popup FM, simply by entering the name EPS_PROGRESS_POPUP into the relevant SAP transaction such as SE37 or SE38.

Function Group: GPOP
Program Name: SAPLGPOP
Main Program:
Appliation area: S
Release date: 18-Oct-1994
Mode(Normal, Remote etc): Normal Function Module
Update:



Function EPS_PROGRESS_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 'EPS_PROGRESS_POPUP'"EPS client: transmission monitor
EXPORTING
* BTN_TXT = ' ' "Text for Button in 3rd line
* TEXT_1 = ' ' "Text, left-justified in 1st line
* TEXT_2 = ' ' "Text, right-justified in 1st line
* TEXT_3 = ' ' "Text, left-justified in line 3
* TEXT_4 = ' ' "
* TEXT_G1 = ' ' "
* TEXT_G2 = ' ' "
* TITLE_G1 = ' ' "
* TITLE_G2 = ' ' "
WINID = "Dialog parameter
* CURVAL_G1 = ' ' "Current value / progress in line 3
* CURVAL_G2 = ' ' "Current value / progress in line 3
* LAYOUT = '1' "
* MAXVAL_G1 = ' ' "Maximum value / progress
* MAXVAL_G2 = ' ' "Maximum value / progress
* POPUP_LINK = 'ASYNC' "
* POPUP_STAT = ' ' "Dialog parameter
* POPUP_TITLE = 'SAP' "Title of the progress display

IMPORTING
M_TYP = "Dialog parameter
POPUP_EVENT = "Cnfrmtn of M_TYP ='I' :'CANCEL' / 'ASYNC'
RWNID = "Dialog parameter

EXCEPTIONS
GRAPH_RECEIVE = 1 INVALID_LAYOUT = 2
.



IMPORTING Parameters details for EPS_PROGRESS_POPUP

BTN_TXT - Text for Button in 3rd line

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

TEXT_1 - Text, left-justified in 1st line

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

TEXT_2 - Text, right-justified in 1st line

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

TEXT_3 - Text, left-justified in line 3

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

TEXT_4 -

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

TEXT_G1 -

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

TEXT_G2 -

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

TITLE_G1 -

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

TITLE_G2 -

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

WINID - Dialog parameter

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

CURVAL_G1 - Current value / progress in line 3

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

CURVAL_G2 - Current value / progress in line 3

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

LAYOUT -

Data type:
Default: '1'
Optional: Yes
Call by Reference: No ( called with pass by value option)

MAXVAL_G1 - Maximum value / progress

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

MAXVAL_G2 - Maximum value / progress

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

POPUP_LINK -

Data type:
Default: 'ASYNC'
Optional: Yes
Call by Reference: No ( called with pass by value option)

POPUP_STAT - Dialog parameter

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

POPUP_TITLE - Title of the progress display

Data type:
Default: 'SAP'
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for EPS_PROGRESS_POPUP

M_TYP - Dialog parameter

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

POPUP_EVENT - Cnfrmtn of M_TYP ='I' :'CANCEL' / 'ASYNC'

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

RWNID - Dialog parameter

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

EXCEPTIONS details

GRAPH_RECEIVE -

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

INVALID_LAYOUT -

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

Copy and paste ABAP code example for EPS_PROGRESS_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_m_typ  TYPE STRING, "   
lv_btn_txt  TYPE STRING, "   SPACE
lv_graph_receive  TYPE STRING, "   
lv_text_1  TYPE STRING, "   SPACE
lv_text_2  TYPE STRING, "   SPACE
lv_text_3  TYPE STRING, "   SPACE
lv_text_4  TYPE STRING, "   SPACE
lv_text_g1  TYPE STRING, "   SPACE
lv_text_g2  TYPE STRING, "   SPACE
lv_title_g1  TYPE STRING, "   SPACE
lv_title_g2  TYPE STRING, "   SPACE
lv_winid  TYPE STRING, "   
lv_curval_g1  TYPE STRING, "   SPACE
lv_popup_event  TYPE STRING, "   
lv_invalid_layout  TYPE STRING, "   
lv_rwnid  TYPE STRING, "   
lv_curval_g2  TYPE STRING, "   SPACE
lv_layout  TYPE STRING, "   '1'
lv_maxval_g1  TYPE STRING, "   SPACE
lv_maxval_g2  TYPE STRING, "   SPACE
lv_popup_link  TYPE STRING, "   'ASYNC'
lv_popup_stat  TYPE STRING, "   SPACE
lv_popup_title  TYPE STRING. "   'SAP'

  CALL FUNCTION 'EPS_PROGRESS_POPUP'  "EPS client: transmission monitor
    EXPORTING
         BTN_TXT = lv_btn_txt
         TEXT_1 = lv_text_1
         TEXT_2 = lv_text_2
         TEXT_3 = lv_text_3
         TEXT_4 = lv_text_4
         TEXT_G1 = lv_text_g1
         TEXT_G2 = lv_text_g2
         TITLE_G1 = lv_title_g1
         TITLE_G2 = lv_title_g2
         WINID = lv_winid
         CURVAL_G1 = lv_curval_g1
         CURVAL_G2 = lv_curval_g2
         LAYOUT = lv_layout
         MAXVAL_G1 = lv_maxval_g1
         MAXVAL_G2 = lv_maxval_g2
         POPUP_LINK = lv_popup_link
         POPUP_STAT = lv_popup_stat
         POPUP_TITLE = lv_popup_title
    IMPORTING
         M_TYP = lv_m_typ
         POPUP_EVENT = lv_popup_event
         RWNID = lv_rwnid
    EXCEPTIONS
        GRAPH_RECEIVE = 1
        INVALID_LAYOUT = 2
. " EPS_PROGRESS_POPUP




ABAP code using 7.40 inline data declarations to call FM EPS_PROGRESS_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.

 
DATA(ld_btn_txt) = ' '.
 
 
DATA(ld_text_1) = ' '.
 
DATA(ld_text_2) = ' '.
 
DATA(ld_text_3) = ' '.
 
DATA(ld_text_4) = ' '.
 
DATA(ld_text_g1) = ' '.
 
DATA(ld_text_g2) = ' '.
 
DATA(ld_title_g1) = ' '.
 
DATA(ld_title_g2) = ' '.
 
 
DATA(ld_curval_g1) = ' '.
 
 
 
 
DATA(ld_curval_g2) = ' '.
 
DATA(ld_layout) = '1'.
 
DATA(ld_maxval_g1) = ' '.
 
DATA(ld_maxval_g2) = ' '.
 
DATA(ld_popup_link) = 'ASYNC'.
 
DATA(ld_popup_stat) = ' '.
 
DATA(ld_popup_title) = 'SAP'.
 


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!