SAP HR_IMPORT_BUFFER_FROM_PCLX Function Module for
HR_IMPORT_BUFFER_FROM_PCLX is a standard hr import buffer from pclx 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 import buffer from pclx FM, simply by entering the name HR_IMPORT_BUFFER_FROM_PCLX into the relevant SAP transaction such as SE37 or SE38.
Function Group: HRPAY99_BUFFER
Program Name: SAPLHRPAY99_BUFFER
Main Program:
Appliation area: P
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function HR_IMPORT_BUFFER_FROM_PCLX 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_IMPORT_BUFFER_FROM_PCLX'".
EXPORTING
EMPLOYEE_NUMBER = "
CLUSTER_ID = "
* FROM_SEQUENCE_NUMBER = "
* TO_SEQUENCE_NUMBER = "
* INVALIDATE_BUFFER = "
TABLES
* RGDIR = "
EXCEPTIONS
NO_RESULTS = 1 NO_READ_AUTHORITY = 2
IMPORTING Parameters details for HR_IMPORT_BUFFER_FROM_PCLX
EMPLOYEE_NUMBER -
Data type: PERNR-PERNROptional: No
Call by Reference: No ( called with pass by value option)
CLUSTER_ID -
Data type: PCL2-RELIDOptional: No
Call by Reference: No ( called with pass by value option)
FROM_SEQUENCE_NUMBER -
Data type: PC261-SEQNROptional: Yes
Call by Reference: No ( called with pass by value option)
TO_SEQUENCE_NUMBER -
Data type: PC261-SEQNROptional: Yes
Call by Reference: No ( called with pass by value option)
INVALIDATE_BUFFER -
Data type:Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for HR_IMPORT_BUFFER_FROM_PCLX
RGDIR -
Data type: PC261Optional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_RESULTS -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_READ_AUTHORITY -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for HR_IMPORT_BUFFER_FROM_PCLX 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: | ||||
| lt_rgdir | TYPE STANDARD TABLE OF PC261, " | |||
| lv_no_results | TYPE PC261, " | |||
| lv_employee_number | TYPE PERNR-PERNR, " | |||
| lv_cluster_id | TYPE PCL2-RELID, " | |||
| lv_no_read_authority | TYPE PCL2, " | |||
| lv_from_sequence_number | TYPE PC261-SEQNR, " | |||
| lv_to_sequence_number | TYPE PC261-SEQNR, " | |||
| lv_invalidate_buffer | TYPE PC261. " |
|   CALL FUNCTION 'HR_IMPORT_BUFFER_FROM_PCLX' " |
| EXPORTING | ||
| EMPLOYEE_NUMBER | = lv_employee_number | |
| CLUSTER_ID | = lv_cluster_id | |
| FROM_SEQUENCE_NUMBER | = lv_from_sequence_number | |
| TO_SEQUENCE_NUMBER | = lv_to_sequence_number | |
| INVALIDATE_BUFFER | = lv_invalidate_buffer | |
| TABLES | ||
| RGDIR | = lt_rgdir | |
| EXCEPTIONS | ||
| NO_RESULTS = 1 | ||
| NO_READ_AUTHORITY = 2 | ||
| . " HR_IMPORT_BUFFER_FROM_PCLX | ||
ABAP code using 7.40 inline data declarations to call FM HR_IMPORT_BUFFER_FROM_PCLX
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 PERNR FROM PERNR INTO @DATA(ld_employee_number). | ||||
| "SELECT single RELID FROM PCL2 INTO @DATA(ld_cluster_id). | ||||
| "SELECT single SEQNR FROM PC261 INTO @DATA(ld_from_sequence_number). | ||||
| "SELECT single SEQNR FROM PC261 INTO @DATA(ld_to_sequence_number). | ||||
Search for further information about these or an SAP related objects