SAP HR_BE_BOWA_PUBLISH_DECLARATION Function Module for Retrieve next Seqnr for Sender
HR_BE_BOWA_PUBLISH_DECLARATION is a standard hr be bowa publish declaration SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Retrieve next Seqnr for Sender 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 publish declaration FM, simply by entering the name HR_BE_BOWA_PUBLISH_DECLARATION 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_PUBLISH_DECLARATION 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_PUBLISH_DECLARATION'"Retrieve next Seqnr for Sender.
EXPORTING
IM_SENDER_KEY = "Document Identification
IM_APPL = "Subapplication
* IM_FTN = "File transaction number
IM_BEGDA = "Date
IM_ENDDA = "Date
* IM_TEMSE = "HR TemSe object
* IM_GLBID = "HR B2A: Global Object ID
* IM_STATS = "Status
* IM_TEST = "Boolean Variable (X=True, -=False, Space=Unknown)
IMPORTING
EX_SEQ_NR = "BELCOTAX sequence number
EX_RETURNCODE = "Return Value of ABAP Statements
IMPORTING Parameters details for HR_BE_BOWA_PUBLISH_DECLARATION
IM_SENDER_KEY - Document Identification
Data type: P12_BOW_TAX_KEYOptional: No
Call by Reference: Yes
IM_APPL - Subapplication
Data type: P_APPLOptional: No
Call by Reference: Yes
IM_FTN - File transaction number
Data type: P12_BOW_FTNOptional: 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_TEMSE - HR TemSe object
Data type: P_TS_TSOBJOptional: Yes
Call by Reference: Yes
IM_GLBID - HR B2A: Global Object ID
Data type: PC_B2A_GLBIDOptional: Yes
Call by Reference: Yes
IM_STATS - Status
Data type: T5F99ST-STATSOptional: Yes
Call by Reference: Yes
IM_TEST - Boolean Variable (X=True, -=False, Space=Unknown)
Data type: BOOLEANOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for HR_BE_BOWA_PUBLISH_DECLARATION
EX_SEQ_NR - BELCOTAX sequence number
Data type: BTSEQOptional: No
Call by Reference: Yes
EX_RETURNCODE - Return Value of ABAP Statements
Data type: SY-SUBRCOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for HR_BE_BOWA_PUBLISH_DECLARATION 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_ex_seq_nr | TYPE BTSEQ, " | |||
| lv_im_sender_key | TYPE P12_BOW_TAX_KEY, " | |||
| lv_im_appl | TYPE P_APPL, " | |||
| lv_ex_returncode | TYPE SY-SUBRC, " | |||
| lv_im_ftn | TYPE P12_BOW_FTN, " | |||
| lv_im_begda | TYPE DATUM, " | |||
| lv_im_endda | TYPE DATUM, " | |||
| lv_im_temse | TYPE P_TS_TSOBJ, " | |||
| lv_im_glbid | TYPE PC_B2A_GLBID, " | |||
| lv_im_stats | TYPE T5F99ST-STATS, " | |||
| lv_im_test | TYPE BOOLEAN. " |
|   CALL FUNCTION 'HR_BE_BOWA_PUBLISH_DECLARATION' "Retrieve next Seqnr for Sender |
| EXPORTING | ||
| IM_SENDER_KEY | = lv_im_sender_key | |
| IM_APPL | = lv_im_appl | |
| IM_FTN | = lv_im_ftn | |
| IM_BEGDA | = lv_im_begda | |
| IM_ENDDA | = lv_im_endda | |
| IM_TEMSE | = lv_im_temse | |
| IM_GLBID | = lv_im_glbid | |
| IM_STATS | = lv_im_stats | |
| IM_TEST | = lv_im_test | |
| IMPORTING | ||
| EX_SEQ_NR | = lv_ex_seq_nr | |
| EX_RETURNCODE | = lv_ex_returncode | |
| . " HR_BE_BOWA_PUBLISH_DECLARATION | ||
ABAP code using 7.40 inline data declarations to call FM HR_BE_BOWA_PUBLISH_DECLARATION
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 STATS FROM T5F99ST INTO @DATA(ld_im_stats). | ||||
Search for further information about these or an SAP related objects