HR_EXPORT_DATA_TO_OTHER_SYS is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name HR_EXPORT_DATA_TO_OTHER_SYS into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
PBS1
Released Date:
Not Released
Processing type: Remote-Enabled
CALL FUNCTION 'HR_EXPORT_DATA_TO_OTHER_SYS' "
EXPORTING
indxkey = " indx-srtfd
* headline1 = " t512g-gtext
* headline2 = " t512g-gtext
* headline3 = " t512g-gtext
* headline4 = " t512g-gtext
* footnote1 = " t512g-gtext
* footnote2 = " t512g-gtext
* footnote3 = " t512g-gtext
* release = " sy-saprl
* system = " sy-sysid
* TABLES
* datatab = " hrdatatab
* fieldnames = " hrfieldnam
* hr_errortab = " hrerror
* daten1 = " hrdaten1
* daten2 = " hrdaten2
* daten3 = " hrdaten3
. " HR_EXPORT_DATA_TO_OTHER_SYS
The ABAP code below is a full code listing to execute function module HR_EXPORT_DATA_TO_OTHER_SYS including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
| it_datatab | TYPE STANDARD TABLE OF HRDATATAB,"TABLES PARAM |
| wa_datatab | LIKE LINE OF it_datatab , |
| it_fieldnames | TYPE STANDARD TABLE OF HRFIELDNAM,"TABLES PARAM |
| wa_fieldnames | LIKE LINE OF it_fieldnames , |
| it_hr_errortab | TYPE STANDARD TABLE OF HRERROR,"TABLES PARAM |
| wa_hr_errortab | LIKE LINE OF it_hr_errortab , |
| it_daten1 | TYPE STANDARD TABLE OF HRDATEN1,"TABLES PARAM |
| wa_daten1 | LIKE LINE OF it_daten1 , |
| it_daten2 | TYPE STANDARD TABLE OF HRDATEN2,"TABLES PARAM |
| wa_daten2 | LIKE LINE OF it_daten2 , |
| it_daten3 | TYPE STANDARD TABLE OF HRDATEN3,"TABLES PARAM |
| wa_daten3 | LIKE LINE OF it_daten3 . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_indxkey | TYPE INDX-SRTFD , |
| it_datatab | TYPE STANDARD TABLE OF HRDATATAB , |
| wa_datatab | LIKE LINE OF it_datatab, |
| ld_headline1 | TYPE T512G-GTEXT , |
| it_fieldnames | TYPE STANDARD TABLE OF HRFIELDNAM , |
| wa_fieldnames | LIKE LINE OF it_fieldnames, |
| ld_headline2 | TYPE T512G-GTEXT , |
| it_hr_errortab | TYPE STANDARD TABLE OF HRERROR , |
| wa_hr_errortab | LIKE LINE OF it_hr_errortab, |
| ld_headline3 | TYPE T512G-GTEXT , |
| it_daten1 | TYPE STANDARD TABLE OF HRDATEN1 , |
| wa_daten1 | LIKE LINE OF it_daten1, |
| ld_headline4 | TYPE T512G-GTEXT , |
| it_daten2 | TYPE STANDARD TABLE OF HRDATEN2 , |
| wa_daten2 | LIKE LINE OF it_daten2, |
| ld_footnote1 | TYPE T512G-GTEXT , |
| it_daten3 | TYPE STANDARD TABLE OF HRDATEN3 , |
| wa_daten3 | LIKE LINE OF it_daten3, |
| ld_footnote2 | TYPE T512G-GTEXT , |
| ld_footnote3 | TYPE T512G-GTEXT , |
| ld_release | TYPE SY-SAPRL , |
| ld_system | TYPE SY-SYSID . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name HR_EXPORT_DATA_TO_OTHER_SYS or its description.
HR_EXPORT_DATA_TO_OTHER_SYS - HR_EXIT_CC_UCOMM_GB - User exit for country specific user commands HR_EXIT_0442_PBO_INIT_NL - NL Landen exit voor initiele verwerking IT0442 HR_EXIT_0442_PBO_INIT_GB - GB country exit for initial country processing 0442 HR_EXIT_0442_PBO_2300_GB - Company Car exit PBO of screen 2300 HR_EXIT_0442_PBO_2200_NL - Landenexit in PBO van scherm 2200