A_WorkCenterDayOperation
Daily Operations
A_WorkCenterDayOperation is a Composite CDS View that provides data about "Daily Operations" in SAP S/4HANA. It reads from 1 data source (I_TodaysOperations) and exposes 19 fields with key fields WorkCenterInternalID, ManufacturingOrder, ManufacturingOrderOperation, ManufacturingOrderCategory.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_TodaysOperations | I_TodaysOperations | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | AWRKCTRDAYOP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Daily Operations | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view |
Fields (19)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | WorkCenterInternalID | WorkCenterInternalID | ||
| KEY | ManufacturingOrder | ManufacturingOrder | Production Order | |
| KEY | ManufacturingOrderOperation | ManufacturingOrderOperation | ||
| KEY | ManufacturingOrderCategory | ManufacturingOrderCategory | ||
| MfgOrderOperationText | MfgOrderOperationText | |||
| Material | Material | |||
| OperationIsReleased | OperationIsReleased | Operation Is Released | ||
| OpErlstSchedldExecStrtDte | OpErlstSchedldExecStrtDte | Planned Start Date | ||
| OpErlstSchedldExecStrtTme | OpErlstSchedldExecStrtTme | Planned Start Time | ||
| OpErlstSchedldExecEndDte | OpErlstSchedldExecEndDte | Planned End Date | ||
| OpErlstSchedldExecEndTme | OpErlstSchedldExecEndTme | Planned End Time | ||
| OpPlannedTotalQuantity | OpPlannedTotalQuantity | |||
| OperationUnit | OperationUnit | |||
| ConfirmedQuantity | ConfirmedQuantity | |||
| ConfirmedQuantityInBaseUnit | ConfirmedQuantityUnit | |||
| ConfirmedQuantityUnit | ConfirmedQuantityUnit | |||
| ErlstSchedldExecDurnInWorkdays | ErlstSchedldExecDurnInWorkdays | Planned Duration | ||
| OpActualExecutionDays | OpActualExecutionDays | Actual Duration | ||
| ManufacturingOrderSequence | ManufacturingOrderSequence |
@AbapCatalog.sqlViewName: 'AWRKCTRDAYOP'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Daily Operations'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #COMPOSITE
@ObjectModel.usageType: {serviceQuality: #C, sizeCategory: #XL, dataClass: #TRANSACTIONAL}
@Metadata.ignorePropagatedAnnotations: true
@VDM.lifecycle.contract.type:#PUBLIC_REMOTE_API
define view A_WorkCenterDayOperation
as select from I_TodaysOperations
{
key WorkCenterInternalID,
@EndUserText.label: 'Production Order'
key ManufacturingOrder,
key ManufacturingOrderOperation,
key ManufacturingOrderCategory,
MfgOrderOperationText,
Material,
@EndUserText.label: 'Operation Is Released'
OperationIsReleased,
@EndUserText.label: 'Planned Start Date'
OpErlstSchedldExecStrtDte,
@EndUserText.label: 'Planned Start Time'
OpErlstSchedldExecStrtTme,
@EndUserText.label: 'Planned End Date'
OpErlstSchedldExecEndDte,
@EndUserText.label: 'Planned End Time'
OpErlstSchedldExecEndTme,
@Semantics.quantity.unitOfMeasure: 'OperationUnit'
OpPlannedTotalQuantity,
@Semantics.unitOfMeasure: true
OperationUnit,
@Semantics.quantity.unitOfMeasure: 'ConfirmedQuantityUnit'
ConfirmedQuantity,
@Semantics.quantity.unitOfMeasure: 'ConfirmedQuantityUnit'
ConfirmedQuantityUnit as ConfirmedQuantityInBaseUnit,
@Semantics.unitOfMeasure: true
ConfirmedQuantityUnit,
@EndUserText.label: 'Planned Duration'
ErlstSchedldExecDurnInWorkdays,
@EndUserText.label: 'Actual Duration'
OpActualExecutionDays,
ManufacturingOrderSequence
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_TODAYSOPERATIONS"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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