SAP HR_ST_DE_E2_GET_NOTIF Function Module for









HR_ST_DE_E2_GET_NOTIF is a standard hr st de e2 get notif 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 hr st de e2 get notif FM, simply by entering the name HR_ST_DE_E2_GET_NOTIF into the relevant SAP transaction such as SE37 or SE38.

Function Group: HRST_E2
Program Name: SAPLHRST_E2
Main Program: SAPLHRST_E2
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function HR_ST_DE_E2_GET_NOTIF 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 'HR_ST_DE_E2_GET_NOTIF'"
EXPORTING
FUTAN = "
FUTAB = "
UM = "

TABLES
TAB_SO_PERNR = "
TAB_P01E2_TRANS_ST = "
TAB_P01E2_ANMELDUNG = "
TAB_P01E2_ABMELDUNG = "
TAB_P01E2_UMMELDUNG = "
TAB_P01E2_ADM = "
TAB_P01E2_HIST = "
TAB_P01E2_STATUS = "
TAB_V_P01E2_STATUS = "
TAB_P01E2_TRANS = "
.



IMPORTING Parameters details for HR_ST_DE_E2_GET_NOTIF

FUTAN -

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

FUTAB -

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

UM -

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

TABLES Parameters details for HR_ST_DE_E2_GET_NOTIF

TAB_SO_PERNR -

Data type: HRDEST_E2_T_SO_PERNR
Optional: No
Call by Reference: Yes

TAB_P01E2_TRANS_ST -

Data type: HRDEST_E2_T_TRANS_ST
Optional: No
Call by Reference: Yes

TAB_P01E2_ANMELDUNG -

Data type: HRDEST_E2_T_ANMELDUNG
Optional: No
Call by Reference: Yes

TAB_P01E2_ABMELDUNG -

Data type: HRDEST_E2_T_ABMELDUNG
Optional: No
Call by Reference: Yes

TAB_P01E2_UMMELDUNG -

Data type: HRDEST_E2_T_UMMELDUNG
Optional: No
Call by Reference: Yes

TAB_P01E2_ADM -

Data type: HRDEST_E2_T_ADM
Optional: No
Call by Reference: Yes

TAB_P01E2_HIST -

Data type: HRDEST_E2_T_HIST
Optional: No
Call by Reference: Yes

TAB_P01E2_STATUS -

Data type: HRDEST_E2_T_STATUS
Optional: No
Call by Reference: Yes

TAB_V_P01E2_STATUS -

Data type: HRDEST_E2_T_V_STATUS
Optional: No
Call by Reference: Yes

TAB_P01E2_TRANS -

Data type: HRDEST_E2_T_P01E2_TRANS
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for HR_ST_DE_E2_GET_NOTIF 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_futan  TYPE BOOLEAN, "   
lt_tab_so_pernr  TYPE STANDARD TABLE OF HRDEST_E2_T_SO_PERNR, "   
lt_tab_p01e2_trans_st  TYPE STANDARD TABLE OF HRDEST_E2_T_TRANS_ST, "   
lv_futab  TYPE BOOLEAN, "   
lt_tab_p01e2_anmeldung  TYPE STANDARD TABLE OF HRDEST_E2_T_ANMELDUNG, "   
lv_um  TYPE BOOLEAN, "   
lt_tab_p01e2_abmeldung  TYPE STANDARD TABLE OF HRDEST_E2_T_ABMELDUNG, "   
lt_tab_p01e2_ummeldung  TYPE STANDARD TABLE OF HRDEST_E2_T_UMMELDUNG, "   
lt_tab_p01e2_adm  TYPE STANDARD TABLE OF HRDEST_E2_T_ADM, "   
lt_tab_p01e2_hist  TYPE STANDARD TABLE OF HRDEST_E2_T_HIST, "   
lt_tab_p01e2_status  TYPE STANDARD TABLE OF HRDEST_E2_T_STATUS, "   
lt_tab_v_p01e2_status  TYPE STANDARD TABLE OF HRDEST_E2_T_V_STATUS, "   
lt_tab_p01e2_trans  TYPE STANDARD TABLE OF HRDEST_E2_T_P01E2_TRANS. "   

  CALL FUNCTION 'HR_ST_DE_E2_GET_NOTIF'  "
    EXPORTING
         FUTAN = lv_futan
         FUTAB = lv_futab
         UM = lv_um
    TABLES
         TAB_SO_PERNR = lt_tab_so_pernr
         TAB_P01E2_TRANS_ST = lt_tab_p01e2_trans_st
         TAB_P01E2_ANMELDUNG = lt_tab_p01e2_anmeldung
         TAB_P01E2_ABMELDUNG = lt_tab_p01e2_abmeldung
         TAB_P01E2_UMMELDUNG = lt_tab_p01e2_ummeldung
         TAB_P01E2_ADM = lt_tab_p01e2_adm
         TAB_P01E2_HIST = lt_tab_p01e2_hist
         TAB_P01E2_STATUS = lt_tab_p01e2_status
         TAB_V_P01E2_STATUS = lt_tab_v_p01e2_status
         TAB_P01E2_TRANS = lt_tab_p01e2_trans
. " HR_ST_DE_E2_GET_NOTIF




ABAP code using 7.40 inline data declarations to call FM HR_ST_DE_E2_GET_NOTIF

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.

 
 
 
 
 
 
 
 
 
 
 
 
 


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!