E_WorkforceAssignmentDetails
Extended view for workforce assignment details
E_WorkforceAssignmentDetails is a Extension CDS View that provides data about "Extended view for workforce assignment details" in SAP S/4HANA. It reads from 1 data source (wfd_d_assgmtdets) and exposes 2 fields with key fields WorkforceAssignment, WorkforceAssgmtStartDate. Part of development package WFD_BL_PERSISTENCE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| wfd_d_assgmtdets | Persistence | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | EWRKFORCEASGMTDT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| VDM.viewType | #EXTENSION | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| EndUserText.label | Extended view for workforce assignment details | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | WorkforceAssignment | wfd_d_assgmtdets | workforce_assgmt_id | |
| KEY | WorkforceAssgmtStartDate | wfd_d_assgmtdets | start_date |
@AbapCatalog.sqlViewName: 'EWRKFORCEASGMTDT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@VDM.viewType: #EXTENSION
@ObjectModel: {
usageType: {
dataClass: #TRANSACTIONAL,
serviceQuality: #B,
sizeCategory: #S
}
}
@EndUserText.label: 'Extended view for workforce assignment details'
define view E_WorkforceAssignmentDetails
as select from wfd_d_assgmtdets as Persistence
{
key Persistence.workforce_assgmt_id as WorkforceAssignment,
key Persistence.start_date as WorkforceAssgmtStartDate
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA