I_ACMUserName
Name of the user along with the user id
I_ACMUserName is a Basic CDS View that provides data about "Name of the user along with the user id" in SAP S/4HANA. It reads from 1 data source (I_User) and exposes 2 fields with key field UserName.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_User | User | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IUSERNAME | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ClientHandling.type | #INHERITED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Name of the user along with the user id | view |
@AbapCatalog.sqlViewName: 'IUSERNAME'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #S,
dataClass: #MASTER
}
@VDM.viewType: #BASIC
@EndUserText.label: 'Name of the user along with the user id'
// Note : This View can be used till 2022 Landscape, lower system will not be supported due to I_User mismatch
define view I_ACMUserName
as select from I_User as User
left outer to one join adrp on adrp.persnumber = User.AddressPersonID
and adrp.nation = ''
and adrp.date_from = '00010101'
{
key User.UserID as UserName,
adrp.name_text as UserDescription
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_USER",
"ADRP"
],
"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