SAP LSO_RH_GET_QUALIFICATION Function Module for
LSO_RH_GET_QUALIFICATION is a standard lso rh get qualification 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 lso rh get qualification FM, simply by entering the name LSO_RH_GET_QUALIFICATION into the relevant SAP transaction such as SE37 or SE38.
Function Group: LSO_RHV4
Program Name: SAPLLSO_RHV4
Main Program: SAPLLSO_RHV4
Appliation area: H
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function LSO_RH_GET_QUALIFICATION 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 'LSO_RH_GET_QUALIFICATION'".
EXPORTING
* BEGDA = '19000101' "
* ENDDA = '99991231' "
* STICH = "
* ISTAT = ' ' "
* EXTEND = 'X' "
* SORT = 'X' "
* AUTH_SOBID = ' ' "
TABLES
PARTIC_TAB = "
QUALIF_TAB = "
EXCEPTIONS
NO_QUALIF_FOUND = 1
IMPORTING Parameters details for LSO_RH_GET_QUALIFICATION
BEGDA -
Data type: P1001-BEGDADefault: '19000101'
Optional: Yes
Call by Reference: No ( called with pass by value option)
ENDDA -
Data type: P1001-ENDDADefault: '99991231'
Optional: Yes
Call by Reference: No ( called with pass by value option)
STICH -
Data type: P1001-BEGDAOptional: Yes
Call by Reference: No ( called with pass by value option)
ISTAT -
Data type: P1001-ISTATDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXTEND -
Data type: HRRHDB-EXTENDDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
SORT -
Data type: HRRHDB-SORTDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
AUTH_SOBID -
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for LSO_RH_GET_QUALIFICATION
PARTIC_TAB -
Data type: HRSOBIDOptional: No
Call by Reference: No ( called with pass by value option)
QUALIF_TAB -
Data type: HRVQUALIFOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_QUALIF_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for LSO_RH_GET_QUALIFICATION 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_begda | TYPE P1001-BEGDA, " '19000101' | |||
| lt_partic_tab | TYPE STANDARD TABLE OF HRSOBID, " | |||
| lv_no_qualif_found | TYPE HRSOBID, " | |||
| lv_endda | TYPE P1001-ENDDA, " '99991231' | |||
| lt_qualif_tab | TYPE STANDARD TABLE OF HRVQUALIF, " | |||
| lv_stich | TYPE P1001-BEGDA, " | |||
| lv_istat | TYPE P1001-ISTAT, " ' ' | |||
| lv_extend | TYPE HRRHDB-EXTEND, " 'X' | |||
| lv_sort | TYPE HRRHDB-SORT, " 'X' | |||
| lv_auth_sobid | TYPE HRRHDB. " SPACE |
|   CALL FUNCTION 'LSO_RH_GET_QUALIFICATION' " |
| EXPORTING | ||
| BEGDA | = lv_begda | |
| ENDDA | = lv_endda | |
| STICH | = lv_stich | |
| ISTAT | = lv_istat | |
| EXTEND | = lv_extend | |
| SORT | = lv_sort | |
| AUTH_SOBID | = lv_auth_sobid | |
| TABLES | ||
| PARTIC_TAB | = lt_partic_tab | |
| QUALIF_TAB | = lt_qualif_tab | |
| EXCEPTIONS | ||
| NO_QUALIF_FOUND = 1 | ||
| . " LSO_RH_GET_QUALIFICATION | ||
ABAP code using 7.40 inline data declarations to call FM LSO_RH_GET_QUALIFICATION
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 BEGDA FROM P1001 INTO @DATA(ld_begda). | ||||
| DATA(ld_begda) | = '19000101'. | |||
| "SELECT single ENDDA FROM P1001 INTO @DATA(ld_endda). | ||||
| DATA(ld_endda) | = '99991231'. | |||
| "SELECT single BEGDA FROM P1001 INTO @DATA(ld_stich). | ||||
| "SELECT single ISTAT FROM P1001 INTO @DATA(ld_istat). | ||||
| DATA(ld_istat) | = ' '. | |||
| "SELECT single EXTEND FROM HRRHDB INTO @DATA(ld_extend). | ||||
| DATA(ld_extend) | = 'X'. | |||
| "SELECT single SORT FROM HRRHDB INTO @DATA(ld_sort). | ||||
| DATA(ld_sort) | = 'X'. | |||
| DATA(ld_auth_sobid) | = ' '. | |||
Search for further information about these or an SAP related objects