SAP Function Modules

RH_TASKGROUP_ROOTS SAP Function module







RH_TASKGROUP_ROOTS is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.

See here to view full function module documentation and code listing, simply by entering the name RH_TASKGROUP_ROOTS into the relevant SAP transaction such as SE37 or SE80.

Associated Function Group: RHU3
Released Date: Not Released
Processing type: Normal fucntion module
Normal function module settings


Pattern for FM RH_TASKGROUP_ROOTS - RH TASKGROUP ROOTS





CALL FUNCTION 'RH_TASKGROUP_ROOTS' "
* EXPORTING
*   act_plvar =                 " objec-plvar
*   act_relat =                 " hrs1200-relat
* TABLES
*   root_object_index =         " hrobject
*   not_related_index =         " hrobject
    .  "  RH_TASKGROUP_ROOTS

ABAP code example for Function Module RH_TASKGROUP_ROOTS





The ABAP code below is a full code listing to execute function module RH_TASKGROUP_ROOTS including all data declarations. The code uses 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 original method of declaring data variables up front. 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).

DATA:
it_root_object_index  TYPE STANDARD TABLE OF HROBJECT,"TABLES PARAM
wa_root_object_index  LIKE LINE OF it_root_object_index ,
it_not_related_index  TYPE STANDARD TABLE OF HROBJECT,"TABLES PARAM
wa_not_related_index  LIKE LINE OF it_not_related_index .


DATA(ld_act_plvar) = some text here

SELECT single RELAT
FROM HRS1200
INTO @DATA(ld_act_relat).


"populate fields of struture and append to itab
append wa_root_object_index to it_root_object_index.

"populate fields of struture and append to itab
append wa_not_related_index to it_not_related_index. . CALL FUNCTION 'RH_TASKGROUP_ROOTS' * EXPORTING * act_plvar = ld_act_plvar * act_relat = ld_act_relat * TABLES * root_object_index = it_root_object_index * not_related_index = it_not_related_index . " RH_TASKGROUP_ROOTS
IF SY-SUBRC EQ 0. "All OK ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.

DATA:
ld_act_plvar  TYPE OBJEC-PLVAR ,
it_root_object_index  TYPE STANDARD TABLE OF HROBJECT ,
wa_root_object_index  LIKE LINE OF it_root_object_index,
ld_act_relat  TYPE HRS1200-RELAT ,
it_not_related_index  TYPE STANDARD TABLE OF HROBJECT ,
wa_not_related_index  LIKE LINE OF it_not_related_index.


ld_act_plvar = some text here

"populate fields of struture and append to itab
append wa_root_object_index to it_root_object_index.

SELECT single RELAT
FROM HRS1200
INTO ld_act_relat.


"populate fields of struture and append to itab
append wa_not_related_index to it_not_related_index.

Contribute (Add Comments)

Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name RH_TASKGROUP_ROOTS or its description.