I_DraftAdministrativeUserVH

DDL: I_DRAFTADMINISTRATIVEUSERVH Type: view_entity

Draft User

I_DraftAdministrativeUserVH is a CDS View that provides data about "Draft User" in SAP S/4HANA. It reads from 1 data source (I_User) and exposes 3 fields with key field UserID. It is exposed through 3 OData services (UI_MANUALSPREADING, UI_PRICEALLOCATION, UI_TRANSP_DOC).

Data Sources (1)

SourceAliasJoin Type
I_User _UserDescription inner

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Draft User view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
Search.searchable true view

OData Services (3)

ServiceBindingVersionContractRelease
UI_MANUALSPREADING UI_MANUALSPREADING V4 C1 NOT_RELEASED
UI_PRICEALLOCATION UI_PRICEALLOCATION V4 C1 NOT_RELEASED
UI_TRANSP_DOC UI_TRANSP_DOC V4 C1 NOT_RELEASED

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY UserID UserAttr bname
UserGroup UserAttr attr_id
UserDescription I_User UserDescription
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Draft User'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #X,
  sizeCategory: #S,
  dataClass: #MIXED
}
@Search.searchable: true

define view entity I_DraftAdministrativeUserVH
  as select distinct from usr_attr_id_assign_w_default ( p_attr_type : 'DRAFTSHARE' ) as UserAttr
    inner join            I_User                                                      as _UserDescription on _UserDescription.UserID = UserAttr.bname
{
      @ObjectModel.text.element: ['UserDescription']
      @Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #HIGH }
  key UserAttr.bname                   as UserID,

      @Consumption.hidden: true
      UserAttr.attr_id                 as UserGroup,

      @Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #LOW }
      _UserDescription.UserDescription as UserDescription
}