SAP RH_READ_NODE_SELOBJECT Function Module for









RH_READ_NODE_SELOBJECT is a standard rh read node selobject 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 rh read node selobject FM, simply by entering the name RH_READ_NODE_SELOBJECT into the relevant SAP transaction such as SE37 or SE38.

Function Group: RHSI
Program Name: SAPLRHSI
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function RH_READ_NODE_SELOBJECT 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 'RH_READ_NODE_SELOBJECT'"
EXPORTING
NODE = "

IMPORTING
OTYPE = "
HIDE_VISTAT = "
HIDE_VRSIGN = "
HIDE_VRELAT = "
HIDE_VPROZT = "
PFLAG = "
OBJID = "
REALO = "
EXTERNAL = "
HIDE_BEGDA = "
HIDE_ENDDA = "
HIDE_ISTAT = "
HIDE_VBEGDA = "
HIDE_VENDDA = "
.



IMPORTING Parameters details for RH_READ_NODE_SELOBJECT

NODE -

Data type: SEUCOMM
Optional: No
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for RH_READ_NODE_SELOBJECT

OTYPE -

Data type: OBJEC-OTYPE
Optional: No
Call by Reference: No ( called with pass by value option)

HIDE_VISTAT -

Data type: OBJEC-ISTAT
Optional: No
Call by Reference: Yes

HIDE_VRSIGN -

Data type: P1001-RSIGN
Optional: No
Call by Reference: Yes

HIDE_VRELAT -

Data type: P1001-RELAT
Optional: No
Call by Reference: Yes

HIDE_VPROZT -

Data type: P1001-PROZT
Optional: No
Call by Reference: Yes

PFLAG -

Data type: OBJEC-HISTO
Optional: No
Call by Reference: Yes

OBJID -

Data type: OBJEC-OBJID
Optional: No
Call by Reference: No ( called with pass by value option)

REALO -

Data type: OBJEC-REALO
Optional: No
Call by Reference: No ( called with pass by value option)

EXTERNAL -

Data type: OBJEC-HISTO
Optional: No
Call by Reference: No ( called with pass by value option)

HIDE_BEGDA -

Data type: OBJEC-BEGDA
Optional: No
Call by Reference: Yes

HIDE_ENDDA -

Data type: OBJEC-ENDDA
Optional: No
Call by Reference: Yes

HIDE_ISTAT -

Data type: OBJEC-ISTAT
Optional: No
Call by Reference: Yes

HIDE_VBEGDA -

Data type: OBJEC-BEGDA
Optional: No
Call by Reference: Yes

HIDE_VENDDA -

Data type: OBJEC-ENDDA
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for RH_READ_NODE_SELOBJECT 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_node  TYPE SEUCOMM, "   
lv_otype  TYPE OBJEC-OTYPE, "   
lv_hide_vistat  TYPE OBJEC-ISTAT, "   
lv_hide_vrsign  TYPE P1001-RSIGN, "   
lv_hide_vrelat  TYPE P1001-RELAT, "   
lv_hide_vprozt  TYPE P1001-PROZT, "   
lv_pflag  TYPE OBJEC-HISTO, "   
lv_objid  TYPE OBJEC-OBJID, "   
lv_realo  TYPE OBJEC-REALO, "   
lv_external  TYPE OBJEC-HISTO, "   
lv_hide_begda  TYPE OBJEC-BEGDA, "   
lv_hide_endda  TYPE OBJEC-ENDDA, "   
lv_hide_istat  TYPE OBJEC-ISTAT, "   
lv_hide_vbegda  TYPE OBJEC-BEGDA, "   
lv_hide_vendda  TYPE OBJEC-ENDDA. "   

  CALL FUNCTION 'RH_READ_NODE_SELOBJECT'  "
    EXPORTING
         NODE = lv_node
    IMPORTING
         OTYPE = lv_otype
         HIDE_VISTAT = lv_hide_vistat
         HIDE_VRSIGN = lv_hide_vrsign
         HIDE_VRELAT = lv_hide_vrelat
         HIDE_VPROZT = lv_hide_vprozt
         PFLAG = lv_pflag
         OBJID = lv_objid
         REALO = lv_realo
         EXTERNAL = lv_external
         HIDE_BEGDA = lv_hide_begda
         HIDE_ENDDA = lv_hide_endda
         HIDE_ISTAT = lv_hide_istat
         HIDE_VBEGDA = lv_hide_vbegda
         HIDE_VENDDA = lv_hide_vendda
. " RH_READ_NODE_SELOBJECT




ABAP code using 7.40 inline data declarations to call FM RH_READ_NODE_SELOBJECT

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 OBJEC INTO @DATA(ld_otype).
 
"SELECT single ISTAT FROM OBJEC INTO @DATA(ld_hide_vistat).
 
"SELECT single RSIGN FROM P1001 INTO @DATA(ld_hide_vrsign).
 
"SELECT single RELAT FROM P1001 INTO @DATA(ld_hide_vrelat).
 
"SELECT single PROZT FROM P1001 INTO @DATA(ld_hide_vprozt).
 
"SELECT single HISTO FROM OBJEC INTO @DATA(ld_pflag).
 
"SELECT single OBJID FROM OBJEC INTO @DATA(ld_objid).
 
"SELECT single REALO FROM OBJEC INTO @DATA(ld_realo).
 
"SELECT single HISTO FROM OBJEC INTO @DATA(ld_external).
 
"SELECT single BEGDA FROM OBJEC INTO @DATA(ld_hide_begda).
 
"SELECT single ENDDA FROM OBJEC INTO @DATA(ld_hide_endda).
 
"SELECT single ISTAT FROM OBJEC INTO @DATA(ld_hide_istat).
 
"SELECT single BEGDA FROM OBJEC INTO @DATA(ld_hide_vbegda).
 
"SELECT single ENDDA FROM OBJEC INTO @DATA(ld_hide_vendda).
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!