dhcdc_auth_group_user

DDL: DHCDC_AUTH_GROUP_USER Type: view_entity

All users with auth. group assignment

dhcdc_auth_group_user is a CDS View that provides data about "All users with auth. group assignment" in SAP S/4HANA. It reads from 2 data sources (dhcdcauthgrpusr, usr01) and exposes 2 fields with key field UserID.

Data Sources (2)

SourceAliasJoin Type
dhcdcauthgrpusr a left_outer
usr01 u from

Annotations (2)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label All users with auth. group assignment view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY UserID usr01 bname
GroupID
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'All users with auth. group assignment'
define view entity dhcdc_auth_group_user as select from usr01 as u
  left outer join dhcdcauthgrpusr as a on u.bname = a.uname
{
  key u.bname as UserID,
  coalesce( a.group_id, '!' ) as GroupID
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DHCDCAUTHGRPUSR",
"USR01"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/