SAP HR_RU_FIND_LOW_LEVEL_OBJECTS Function Module for Find low level PD objects
HR_RU_FIND_LOW_LEVEL_OBJECTS is a standard hr ru find low level objects 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 low level PD objects 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 hr ru find low level objects FM, simply by entering the name HR_RU_FIND_LOW_LEVEL_OBJECTS into the relevant SAP transaction such as SE37 or SE38.
Function Group: HRPADRUTILITIES
Program Name: SAPLHRPADRUTILITIES
Main Program: SAPLHRPADRUTILITIES
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function HR_RU_FIND_LOW_LEVEL_OBJECTS 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_RU_FIND_LOW_LEVEL_OBJECTS'"Find low level PD objects.
EXPORTING
P_OTYPE = "Object Type
P_OBJID = "Object ID
P_PLVAR = "Plan Version
P_RSIGN = "Relationship Specification
P_RELAT = "Relationship Between Objects
P_BEGDA = "Start Date
P_ENDDA = "End Date
* PT_EOBJID = "List of excluded nodes
TABLES
T_OBJECT = "ÂÐÑÛØæÐ ±´ Ú ¸ÝäÞÂØßã 1001
IMPORTING Parameters details for HR_RU_FIND_LOW_LEVEL_OBJECTS
P_OTYPE - Object Type
Data type: HRP1001-OTYPEOptional: No
Call by Reference: Yes
P_OBJID - Object ID
Data type: HRP1001-OBJIDOptional: No
Call by Reference: Yes
P_PLVAR - Plan Version
Data type: HRP1001-PLVAROptional: No
Call by Reference: Yes
P_RSIGN - Relationship Specification
Data type: HRP1001-RSIGNOptional: No
Call by Reference: Yes
P_RELAT - Relationship Between Objects
Data type: HRP1001-RELATOptional: No
Call by Reference: Yes
P_BEGDA - Start Date
Data type: HRP1001-BEGDAOptional: No
Call by Reference: Yes
P_ENDDA - End Date
Data type: HRP1001-ENDDAOptional: No
Call by Reference: Yes
PT_EOBJID - List of excluded nodes
Data type: RNGE_OBJID_TABOptional: Yes
Call by Reference: Yes
TABLES Parameters details for HR_RU_FIND_LOW_LEVEL_OBJECTS
T_OBJECT - ÂÐÑÛØæÐ ±´ Ú ¸ÝäÞÂØßã 1001
Data type: HRP1001Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for HR_RU_FIND_LOW_LEVEL_OBJECTS 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_p_otype | TYPE HRP1001-OTYPE, " | |||
| lt_t_object | TYPE STANDARD TABLE OF HRP1001, " | |||
| lv_p_objid | TYPE HRP1001-OBJID, " | |||
| lv_p_plvar | TYPE HRP1001-PLVAR, " | |||
| lv_p_rsign | TYPE HRP1001-RSIGN, " | |||
| lv_p_relat | TYPE HRP1001-RELAT, " | |||
| lv_p_begda | TYPE HRP1001-BEGDA, " | |||
| lv_p_endda | TYPE HRP1001-ENDDA, " | |||
| lv_pt_eobjid | TYPE RNGE_OBJID_TAB. " |
|   CALL FUNCTION 'HR_RU_FIND_LOW_LEVEL_OBJECTS' "Find low level PD objects |
| EXPORTING | ||
| P_OTYPE | = lv_p_otype | |
| P_OBJID | = lv_p_objid | |
| P_PLVAR | = lv_p_plvar | |
| P_RSIGN | = lv_p_rsign | |
| P_RELAT | = lv_p_relat | |
| P_BEGDA | = lv_p_begda | |
| P_ENDDA | = lv_p_endda | |
| PT_EOBJID | = lv_pt_eobjid | |
| TABLES | ||
| T_OBJECT | = lt_t_object | |
| . " HR_RU_FIND_LOW_LEVEL_OBJECTS | ||
ABAP code using 7.40 inline data declarations to call FM HR_RU_FIND_LOW_LEVEL_OBJECTS
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 OTYPE FROM HRP1001 INTO @DATA(ld_p_otype). | ||||
| "SELECT single OBJID FROM HRP1001 INTO @DATA(ld_p_objid). | ||||
| "SELECT single PLVAR FROM HRP1001 INTO @DATA(ld_p_plvar). | ||||
| "SELECT single RSIGN FROM HRP1001 INTO @DATA(ld_p_rsign). | ||||
| "SELECT single RELAT FROM HRP1001 INTO @DATA(ld_p_relat). | ||||
| "SELECT single BEGDA FROM HRP1001 INTO @DATA(ld_p_begda). | ||||
| "SELECT single ENDDA FROM HRP1001 INTO @DATA(ld_p_endda). | ||||
Search for further information about these or an SAP related objects