WFD_WORKFORCEASSIGNMENT

CDS View

Workforce Domain - Assignments

WFD_WORKFORCEASSIGNMENT is a CDS View in S/4HANA. Workforce Domain - Assignments. It contains 3 fields. 3 CDS views read from this table.

CDS Views using this table (3)

ViewTypeJoinVDMDescription
WFD_PremG view from Workforce Domain - Sel view for PREMG
WFD_PremJ view from Workforce Domain - Sel view for PREMJ
WFD_PremU view from Workforce Domain - Sel view for PREMU

Fields (3)

KeyField CDS FieldsUsed in Views
KEY WorkforceAssignmentID WorkforceAssignmentID 3
WorkforceAssgmtEndDate WorkforceAssgmtEndDate 3
WorkforceAssgmtStartDate WorkforceAssgmtStartDate 3
@AbapCatalog.sqlViewName: 'WFD_ASSGMT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Workforce Domain - Assignments'

@ObjectModel.usageType.sizeCategory         : #XL   //inherited from P_WorkforceAssignment

@ObjectModel.usageType.serviceQuality       : #B    //inherited from P_WorkforceAssignment

@ObjectModel.usageType.dataClass            : #MIXED

define root view WFD_WorkForceAssignment
  as select from P_WorkforceAssignment

  composition [1..*] of WFD_WorkForceAssignmentDetails as _details
  association [0..1] to P_WorkforceKeyMapping          as _mapping on $projection.WorkforceAssignmentID = _mapping.WorkforceAssignmentID
  
{
      //P_WorkforceAssignment

  key WorkforceAssignmentID,
      WorkforceAssgmtStartDate,
      WorkforceAssgmtEndDate,
      BusinessPartner,
      ExtWorkforceAssgmtUUID,
      //IsPrimaryEmployment,


      _details,
      _mapping

}