SAP HR_BE_DMFA_SET_STATUS_HANDLER Function Module for Batch publication of Ees,CUNPs in status handler









HR_BE_DMFA_SET_STATUS_HANDLER is a standard hr be dmfa set status handler SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Batch publication of Ees,CUNPs in status handler 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 hr be dmfa set status handler FM, simply by entering the name HR_BE_DMFA_SET_STATUS_HANDLER into the relevant SAP transaction such as SE37 or SE38.

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



Function HR_BE_DMFA_SET_STATUS_HANDLER 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_BE_DMFA_SET_STATUS_HANDLER'"Batch publication of Ees,CUNPs in status handler
EXPORTING
IM_PB2AMGR = "HR-B2A: Structure for V_PB2AMGR
IM_APPL = "Subapplication
* IM_SETER = "Boolean Variable (X=True, -=False, Space=Unknown)
* IM_NEWST = ' ' "Boolean Variable (X=True, -=False, Space=Unknown)
IM_FILTER = "
IM_PYDATE = "
IM_TAB_EMPLOYEE = "
IM_TAB_EMPLOYER = "

IMPORTING
EX_RETURNCODE = "Return Value of ABAP Statements

CHANGING
* CH_TAB_ERROR = "
.



IMPORTING Parameters details for HR_BE_DMFA_SET_STATUS_HANDLER

IM_PB2AMGR - HR-B2A: Structure for V_PB2AMGR

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

IM_APPL - Subapplication

Data type: T5F99F0-APPL
Optional: No
Call by Reference: Yes

IM_SETER - Boolean Variable (X=True, -=False, Space=Unknown)

Data type: BOOLEAN
Optional: Yes
Call by Reference: Yes

IM_NEWST - Boolean Variable (X=True, -=False, Space=Unknown)

Data type: BOOLEAN
Default: ' '
Optional: Yes
Call by Reference: Yes

IM_FILTER -

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

IM_PYDATE -

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

IM_TAB_EMPLOYEE -

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

IM_TAB_EMPLOYER -

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

EXPORTING Parameters details for HR_BE_DMFA_SET_STATUS_HANDLER

EX_RETURNCODE - Return Value of ABAP Statements

Data type: SY-SUBRC
Optional: No
Call by Reference: Yes

CHANGING Parameters details for HR_BE_DMFA_SET_STATUS_HANDLER

CH_TAB_ERROR -

Data type: P99SF_TAB_ERROR
Optional: Yes
Call by Reference: Yes

Copy and paste ABAP code example for HR_BE_DMFA_SET_STATUS_HANDLER 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_im_pb2amgr  TYPE HRB2A_S_V_PB2AMGR, "   
lv_ch_tab_error  TYPE P99SF_TAB_ERROR, "   
lv_ex_returncode  TYPE SY-SUBRC, "   
lv_im_appl  TYPE T5F99F0-APPL, "   
lv_im_seter  TYPE BOOLEAN, "   
lv_im_newst  TYPE BOOLEAN, "   ' '
lv_im_filter  TYPE PBEDM_FILTER, "   
lv_im_pydate  TYPE D, "   
lv_im_tab_employee  TYPE TABLE, "   
lv_im_tab_employer  TYPE TABLE. "   

  CALL FUNCTION 'HR_BE_DMFA_SET_STATUS_HANDLER'  "Batch publication of Ees,CUNPs in status handler
    EXPORTING
         IM_PB2AMGR = lv_im_pb2amgr
         IM_APPL = lv_im_appl
         IM_SETER = lv_im_seter
         IM_NEWST = lv_im_newst
         IM_FILTER = lv_im_filter
         IM_PYDATE = lv_im_pydate
         IM_TAB_EMPLOYEE = lv_im_tab_employee
         IM_TAB_EMPLOYER = lv_im_tab_employer
    IMPORTING
         EX_RETURNCODE = lv_ex_returncode
    CHANGING
         CH_TAB_ERROR = lv_ch_tab_error
. " HR_BE_DMFA_SET_STATUS_HANDLER




ABAP code using 7.40 inline data declarations to call FM HR_BE_DMFA_SET_STATUS_HANDLER

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 SUBRC FROM SY INTO @DATA(ld_ex_returncode).
 
"SELECT single APPL FROM T5F99F0 INTO @DATA(ld_im_appl).
 
 
DATA(ld_im_newst) = ' '.
 
 
 
 
 


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!