SAP Function Modules

S_AUTH_GET_USERS_OF_GROUP SAP Function module







S_AUTH_GET_USERS_OF_GROUP 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 S_AUTH_GET_USERS_OF_GROUP into the relevant SAP transaction such as SE37 or SE80.

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


Pattern for FM S_AUTH_GET_USERS_OF_GROUP - S AUTH GET USERS OF GROUP





CALL FUNCTION 'S_AUTH_GET_USERS_OF_GROUP' "
  EXPORTING
    user_group =                " aaa_users-user_name  User or User Group
*   check_indirect_users = 'X'  " smensapnew-customized  Customized ('C') or standard menu ('S') flag
  TABLES
    user_agr_resolved =         " str_agrs
*   direct_users_of_group =     " str_agrs      Roles
*   indirect_users_of_group =   " str_agrs      Roles
    .  "  S_AUTH_GET_USERS_OF_GROUP

ABAP code example for Function Module S_AUTH_GET_USERS_OF_GROUP





The ABAP code below is a full code listing to execute function module S_AUTH_GET_USERS_OF_GROUP 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_user_agr_resolved  TYPE STANDARD TABLE OF STR_AGRS,"TABLES PARAM
wa_user_agr_resolved  LIKE LINE OF it_user_agr_resolved ,
it_direct_users_of_group  TYPE STANDARD TABLE OF STR_AGRS,"TABLES PARAM
wa_direct_users_of_group  LIKE LINE OF it_direct_users_of_group ,
it_indirect_users_of_group  TYPE STANDARD TABLE OF STR_AGRS,"TABLES PARAM
wa_indirect_users_of_group  LIKE LINE OF it_indirect_users_of_group .


SELECT single USER_NAME
FROM AAA_USERS
INTO @DATA(ld_user_group).


SELECT single CUSTOMIZED
FROM SMENSAPNEW
INTO @DATA(ld_check_indirect_users).


"populate fields of struture and append to itab
append wa_user_agr_resolved to it_user_agr_resolved.

"populate fields of struture and append to itab
append wa_direct_users_of_group to it_direct_users_of_group.

"populate fields of struture and append to itab
append wa_indirect_users_of_group to it_indirect_users_of_group. . CALL FUNCTION 'S_AUTH_GET_USERS_OF_GROUP' EXPORTING user_group = ld_user_group * check_indirect_users = ld_check_indirect_users TABLES user_agr_resolved = it_user_agr_resolved * direct_users_of_group = it_direct_users_of_group * indirect_users_of_group = it_indirect_users_of_group . " S_AUTH_GET_USERS_OF_GROUP
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_user_group  TYPE AAA_USERS-USER_NAME ,
it_user_agr_resolved  TYPE STANDARD TABLE OF STR_AGRS ,
wa_user_agr_resolved  LIKE LINE OF it_user_agr_resolved,
ld_check_indirect_users  TYPE SMENSAPNEW-CUSTOMIZED ,
it_direct_users_of_group  TYPE STANDARD TABLE OF STR_AGRS ,
wa_direct_users_of_group  LIKE LINE OF it_direct_users_of_group,
it_indirect_users_of_group  TYPE STANDARD TABLE OF STR_AGRS ,
wa_indirect_users_of_group  LIKE LINE OF it_indirect_users_of_group.


SELECT single USER_NAME
FROM AAA_USERS
INTO ld_user_group.


"populate fields of struture and append to itab
append wa_user_agr_resolved to it_user_agr_resolved.

SELECT single CUSTOMIZED
FROM SMENSAPNEW
INTO ld_check_indirect_users.


"populate fields of struture and append to itab
append wa_direct_users_of_group to it_direct_users_of_group.

"populate fields of struture and append to itab
append wa_indirect_users_of_group to it_indirect_users_of_group.

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 S_AUTH_GET_USERS_OF_GROUP or its description.