dhcdc_auth_group_user
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)
| Source | Alias | Join Type |
|---|---|---|
| dhcdcauthgrpusr | a | left_outer |
| usr01 | u | from |
Annotations (2)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | All users with auth. group assignment | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA