R_ManagerWorkAssignmentName

DDL: R_MANAGERWORKASSIGNMENTNAME Type: view_entity COMPOSITE Package: ODATA_CA_BUM_WF

Work Assignment Manager Name

R_ManagerWorkAssignmentName is a Composite CDS View that provides data about "Work Assignment Manager Name" in SAP S/4HANA. It reads from 1 data source (I_BusinessPartner) and exposes 3 fields with key field BPIdentificationNumber. Part of development package ODATA_CA_BUM_WF.

Data Sources (1)

SourceAliasJoin Type
I_BusinessPartner _BusinessPartner inner

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey BPIdentificationNumber view
Consumption.ranked true view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
EndUserText.label Work Assignment Manager Name view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
AccessControl.personalData.blocking #NOT_REQUIRED view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BPIdentificationNumber _BuPaIdentification BPIdentificationNumber
BusinessPartner _BuPaIdentification BusinessPartner
PersonFullName I_BusinessPartner PersonFullName
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey:'BPIdentificationNumber'
@Consumption.ranked:true
@Metadata.ignorePropagatedAnnotations: true
@VDM: {
  viewType: #COMPOSITE,
  lifecycle.contract.type: #SAP_INTERNAL_API
}
@EndUserText.label: 'Work Assignment Manager Name'

@ObjectModel.usageType:{
  serviceQuality: #C,
  sizeCategory: #XL,
  dataClass: #MASTER
}
@AccessControl.personalData.blocking: #NOT_REQUIRED
define view entity R_ManagerWorkAssignmentName
  as select distinct from I_BuPaIdentification as _BuPaIdentification
    inner join            I_BusinessPartner    as _BusinessPartner on _BusinessPartner.BusinessPartner = _BuPaIdentification.BusinessPartner
{
  key  _BuPaIdentification.BPIdentificationNumber,
       _BuPaIdentification.BusinessPartner,
       @Semantics.text
       @EndUserText: { label: 'Full Name' }
       _BusinessPartner.PersonFullName
}
where
  _BuPaIdentification.BPIdentificationType = 'HCM033'