I_ACMCreatedByUser

DDL: I_ACMCREATEDBYUSER Type: view_entity BASIC

ACM Application Document created by user

I_ACMCreatedByUser is a Basic CDS View that provides data about "ACM Application Document created by user" in SAP S/4HANA. It reads from 1 data source (usr21) and exposes 2 fields with key field UserName.

Data Sources (1)

SourceAliasJoin Type
usr21 usr21 from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label ACM Application Document created by user view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #BASIC view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY UserName usr21 bname
UserDescription adrp name_text
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'ACM Application Document created by user'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #A,
  sizeCategory: #S,
  dataClass: #MASTER
}
@VDM.viewType: #BASIC
define view entity I_ACMCreatedByUser
  as select from           usr21
    left outer to one join adrp on  usr21.persnumber = adrp.persnumber
                                and adrp.nation      = ''
                                and adrp.date_from   = '00010101'

{
  key usr21.bname    as UserName,
      adrp.name_text as UserDescription
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"ADRP",
"USR21"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/