SAP HR_BE_BOWA_B2A_PUBLISH_DECL Function Module for Publish in Status Handler
HR_BE_BOWA_B2A_PUBLISH_DECL is a standard hr be bowa b2a publish decl SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Publish 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 bowa b2a publish decl FM, simply by entering the name HR_BE_BOWA_B2A_PUBLISH_DECL into the relevant SAP transaction such as SE37 or SE38.
Function Group: HRPAYBE_BOWA_STATUS_ADM
Program Name: SAPLHRPAYBE_BOWA_STATUS_ADM
Main Program: SAPLHRPAYBE_BOWA_STATUS_ADM
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function HR_BE_BOWA_B2A_PUBLISH_DECL 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_BOWA_B2A_PUBLISH_DECL'"Publish in Status Handler.
EXPORTING
IM_PB2AMGR = "HR-B2A: Struktur für V_PB2AMGR
IM_DECLARATION = "
* IM_APPL = "Teilapplikation
IM_BEGDA = "Date
IM_ENDDA = "Date
* IM_STATS = "
* IM_NEWST = "New status
* IM_UPDATE = "Update DB tables
* IM_GEN_DATE = "Date
IMPORTING
EX_RETURNCODE = "Return Value, Return Value After ABAP Statements
CHANGING
* CH_TAB_ERROR = "
IMPORTING Parameters details for HR_BE_BOWA_B2A_PUBLISH_DECL
IM_PB2AMGR - HR-B2A: Struktur für V_PB2AMGR
Data type: HRB2A_S_V_PB2AMGROptional: No
Call by Reference: Yes
IM_DECLARATION -
Data type: PBEBW_EMPLOYEROptional: No
Call by Reference: Yes
IM_APPL - Teilapplikation
Data type: T5F99F0-APPLOptional: Yes
Call by Reference: Yes
IM_BEGDA - Date
Data type: DATUMOptional: No
Call by Reference: Yes
IM_ENDDA - Date
Data type: DATUMOptional: No
Call by Reference: Yes
IM_STATS -
Data type: T5F99ST-STATSOptional: Yes
Call by Reference: Yes
IM_NEWST - New status
Data type: BOOLEANOptional: Yes
Call by Reference: Yes
IM_UPDATE - Update DB tables
Data type: BOOLEANOptional: Yes
Call by Reference: Yes
IM_GEN_DATE - Date
Data type: DATUMOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for HR_BE_BOWA_B2A_PUBLISH_DECL
EX_RETURNCODE - Return Value, Return Value After ABAP Statements
Data type: SY-SUBRCOptional: No
Call by Reference: Yes
CHANGING Parameters details for HR_BE_BOWA_B2A_PUBLISH_DECL
CH_TAB_ERROR -
Data type: P99SF_TAB_ERROROptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for HR_BE_BOWA_B2A_PUBLISH_DECL 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_declaration | TYPE PBEBW_EMPLOYER, " | |||
| lv_im_appl | TYPE T5F99F0-APPL, " | |||
| lv_im_begda | TYPE DATUM, " | |||
| lv_im_endda | TYPE DATUM, " | |||
| lv_im_stats | TYPE T5F99ST-STATS, " | |||
| lv_im_newst | TYPE BOOLEAN, " | |||
| lv_im_update | TYPE BOOLEAN, " | |||
| lv_im_gen_date | TYPE DATUM. " |
|   CALL FUNCTION 'HR_BE_BOWA_B2A_PUBLISH_DECL' "Publish in Status Handler |
| EXPORTING | ||
| IM_PB2AMGR | = lv_im_pb2amgr | |
| IM_DECLARATION | = lv_im_declaration | |
| IM_APPL | = lv_im_appl | |
| IM_BEGDA | = lv_im_begda | |
| IM_ENDDA | = lv_im_endda | |
| IM_STATS | = lv_im_stats | |
| IM_NEWST | = lv_im_newst | |
| IM_UPDATE | = lv_im_update | |
| IM_GEN_DATE | = lv_im_gen_date | |
| IMPORTING | ||
| EX_RETURNCODE | = lv_ex_returncode | |
| CHANGING | ||
| CH_TAB_ERROR | = lv_ch_tab_error | |
| . " HR_BE_BOWA_B2A_PUBLISH_DECL | ||
ABAP code using 7.40 inline data declarations to call FM HR_BE_BOWA_B2A_PUBLISH_DECL
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). | ||||
| "SELECT single STATS FROM T5F99ST INTO @DATA(ld_im_stats). | ||||
Search for further information about these or an SAP related objects