I_ACMUserName

DDL: I_ACMUSERNAME SQL: IUSERNAME Type: view BASIC

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)

SourceAliasJoin Type
I_User User from

Annotations (11)

NameValueLevelField
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

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY UserName I_User UserID
UserDescription adrp name_text
@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":""
}
}*/