SAP HRNQF_WRITE_QUAL_DATA Function Module for Write NQF Qualifications data to infotypes
HRNQF_WRITE_QUAL_DATA is a standard hrnqf write qual data SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Write NQF Qualifications data to infotypes 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 hrnqf write qual data FM, simply by entering the name HRNQF_WRITE_QUAL_DATA into the relevant SAP transaction such as SE37 or SE38.
Function Group: HRNQFZA_DATA
Program Name: SAPLHRNQFZA_DATA
Main Program: SAPLHRNQFZA_DATA
Appliation area: H
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function HRNQF_WRITE_QUAL_DATA 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 'HRNQF_WRITE_QUAL_DATA'"Write NQF Qualifications data to infotypes.
EXPORTING
PLVAR = "
OTYPE = "
OBJID = "
* BEGDA = '19000101' "
* ENDDA = '99991231' "
INFTY1631 = "Fields for unit standard infotype
EXCEPTIONS
NO_AUTHORITY = 1 OBJECT_NOT_FOUND = 2 INVALID_DATE = 3 ERROR_DURING_INSERT = 4 UNDEFINED = 5
IMPORTING Parameters details for HRNQF_WRITE_QUAL_DATA
PLVAR -
Data type: HRP1000-PLVAROptional: No
Call by Reference: No ( called with pass by value option)
OTYPE -
Data type: HRP1000-OTYPEOptional: No
Call by Reference: No ( called with pass by value option)
OBJID -
Data type: HRP1000-OBJIDOptional: No
Call by Reference: No ( called with pass by value option)
BEGDA -
Data type: HRP1000-BEGDADefault: '19000101'
Optional: Yes
Call by Reference: No ( called with pass by value option)
ENDDA -
Data type: HRP1000-ENDDADefault: '99991231'
Optional: Yes
Call by Reference: No ( called with pass by value option)
INFTY1631 - Fields for unit standard infotype
Data type: NQFQUALOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_AUTHORITY -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
OBJECT_NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
INVALID_DATE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
ERROR_DURING_INSERT -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
UNDEFINED -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for HRNQF_WRITE_QUAL_DATA 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_plvar | TYPE HRP1000-PLVAR, " | |||
| lv_no_authority | TYPE HRP1000, " | |||
| lv_otype | TYPE HRP1000-OTYPE, " | |||
| lv_object_not_found | TYPE HRP1000, " | |||
| lv_objid | TYPE HRP1000-OBJID, " | |||
| lv_invalid_date | TYPE HRP1000, " | |||
| lv_begda | TYPE HRP1000-BEGDA, " '19000101' | |||
| lv_error_during_insert | TYPE HRP1000, " | |||
| lv_endda | TYPE HRP1000-ENDDA, " '99991231' | |||
| lv_undefined | TYPE HRP1000, " | |||
| lv_infty1631 | TYPE NQFQUAL. " |
|   CALL FUNCTION 'HRNQF_WRITE_QUAL_DATA' "Write NQF Qualifications data to infotypes |
| EXPORTING | ||
| PLVAR | = lv_plvar | |
| OTYPE | = lv_otype | |
| OBJID | = lv_objid | |
| BEGDA | = lv_begda | |
| ENDDA | = lv_endda | |
| INFTY1631 | = lv_infty1631 | |
| EXCEPTIONS | ||
| NO_AUTHORITY = 1 | ||
| OBJECT_NOT_FOUND = 2 | ||
| INVALID_DATE = 3 | ||
| ERROR_DURING_INSERT = 4 | ||
| UNDEFINED = 5 | ||
| . " HRNQF_WRITE_QUAL_DATA | ||
ABAP code using 7.40 inline data declarations to call FM HRNQF_WRITE_QUAL_DATA
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 PLVAR FROM HRP1000 INTO @DATA(ld_plvar). | ||||
| "SELECT single OTYPE FROM HRP1000 INTO @DATA(ld_otype). | ||||
| "SELECT single OBJID FROM HRP1000 INTO @DATA(ld_objid). | ||||
| "SELECT single BEGDA FROM HRP1000 INTO @DATA(ld_begda). | ||||
| DATA(ld_begda) | = '19000101'. | |||
| "SELECT single ENDDA FROM HRP1000 INTO @DATA(ld_endda). | ||||
| DATA(ld_endda) | = '99991231'. | |||
Search for further information about these or an SAP related objects