R_WorkAssignmentKeyMapOldModel

DDL: R_WORKASSIGNMENTKEYMAPOLDMODEL Type: view_entity COMPOSITE

Multi Work Assignments on Old Model

R_WorkAssignmentKeyMapOldModel is a Composite CDS View that provides data about "Multi Work Assignments on Old Model" in SAP S/4HANA. It reads from 1 data source (R_WorkAssignmentKeyMap) and exposes 2 fields with key field BusinessPartner.

Data Sources (1)

SourceAliasJoin Type
R_WorkAssignmentKeyMap R_WorkAssignmentKeyMap from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Multi Work Assignments on Old Model view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner BusinessPartner
NumberOfWorkAssignments
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@VDM: {
//  viewType: #BASIC,

  viewType: #COMPOSITE,
  lifecycle.contract.type: #SAP_INTERNAL_API
}
@ObjectModel.usageType:{
  serviceQuality: #X,
  sizeCategory: #XL,
  dataClass: #MASTER
}
@EndUserText.label: 'Multi Work Assignments on Old Model'
define view entity R_WorkAssignmentKeyMapOldModel
  as select from R_WorkAssignmentKeyMap
{
  key BusinessPartner,
      count(*) as NumberOfWorkAssignments
}
where
      WorkforceBPModelType = 'O'
  and BusinessPartner      is not initial
group by
  BusinessPartner