SAP RHPH_FIND_OBJECTS_FOR_QUAL Function Module for Find Objects Related to Qualifications (Including Inherited Ones)
RHPH_FIND_OBJECTS_FOR_QUAL is a standard rhph find objects for qual SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Find Objects Related to Qualifications (Including Inherited Ones) 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 rhph find objects for qual FM, simply by entering the name RHPH_FIND_OBJECTS_FOR_QUAL into the relevant SAP transaction such as SE37 or SE38.
Function Group: RHPH
Program Name: SAPLRHPH
Main Program:
Appliation area: H
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RHPH_FIND_OBJECTS_FOR_QUAL 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 'RHPH_FIND_OBJECTS_FOR_QUAL'"Find Objects Related to Qualifications (Including Inherited Ones).
EXPORTING
PLVAR = "Plan Version
* GDATE = SY-DATUM "Key Date
WEGID = "
* GET_NAME = 'X' "
TABLES
QUALI_TAB = "
TO_Q_TAB = "
EXCEPTIONS
WEGID_REQUIRED = 1 NO_QUALIFICATION = 2 NO_OBJECT_FOUND = 3 TECHNICAL_ERROR = 4
IMPORTING Parameters details for RHPH_FIND_OBJECTS_FOR_QUAL
PLVAR - Plan Version
Data type: HRP1000-PLVAROptional: No
Call by Reference: No ( called with pass by value option)
GDATE - Key Date
Data type: HRP1000-GDATEDefault: SY-DATUM
Optional: Yes
Call by Reference: No ( called with pass by value option)
WEGID -
Data type: T77AW-WEGIDOptional: No
Call by Reference: No ( called with pass by value option)
GET_NAME -
Data type: SY-INPUTDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for RHPH_FIND_OBJECTS_FOR_QUAL
QUALI_TAB -
Data type: QUALI_PROFOptional: No
Call by Reference: No ( called with pass by value option)
TO_Q_TAB -
Data type: PERSQ_PROFOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
WEGID_REQUIRED -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_QUALIFICATION -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_OBJECT_FOUND - No Items Found
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
TECHNICAL_ERROR - Other
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for RHPH_FIND_OBJECTS_FOR_QUAL 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, " | |||
| lt_quali_tab | TYPE STANDARD TABLE OF QUALI_PROF, " | |||
| lv_wegid_required | TYPE QUALI_PROF, " | |||
| lv_gdate | TYPE HRP1000-GDATE, " SY-DATUM | |||
| lt_to_q_tab | TYPE STANDARD TABLE OF PERSQ_PROF, " | |||
| lv_no_qualification | TYPE PERSQ_PROF, " | |||
| lv_wegid | TYPE T77AW-WEGID, " | |||
| lv_no_object_found | TYPE T77AW, " | |||
| lv_get_name | TYPE SY-INPUT, " 'X' | |||
| lv_technical_error | TYPE SY. " |
|   CALL FUNCTION 'RHPH_FIND_OBJECTS_FOR_QUAL' "Find Objects Related to Qualifications (Including Inherited Ones) |
| EXPORTING | ||
| PLVAR | = lv_plvar | |
| GDATE | = lv_gdate | |
| WEGID | = lv_wegid | |
| GET_NAME | = lv_get_name | |
| TABLES | ||
| QUALI_TAB | = lt_quali_tab | |
| TO_Q_TAB | = lt_to_q_tab | |
| EXCEPTIONS | ||
| WEGID_REQUIRED = 1 | ||
| NO_QUALIFICATION = 2 | ||
| NO_OBJECT_FOUND = 3 | ||
| TECHNICAL_ERROR = 4 | ||
| . " RHPH_FIND_OBJECTS_FOR_QUAL | ||
ABAP code using 7.40 inline data declarations to call FM RHPH_FIND_OBJECTS_FOR_QUAL
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 GDATE FROM HRP1000 INTO @DATA(ld_gdate). | ||||
| DATA(ld_gdate) | = SY-DATUM. | |||
| "SELECT single WEGID FROM T77AW INTO @DATA(ld_wegid). | ||||
| "SELECT single INPUT FROM SY INTO @DATA(ld_get_name). | ||||
| DATA(ld_get_name) | = 'X'. | |||
Search for further information about these or an SAP related objects