I_FldLogsWorkOrderVH
Work Order Value Help Non Teco Orders
I_FldLogsWorkOrderVH is a Composite CDS View that provides data about "Work Order Value Help Non Teco Orders" in SAP S/4HANA. It reads from 2 data sources (I_ProjectNetwork, I_Order) and exposes 9 fields with key field OrderID. It has 1 association to related views.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_ProjectNetwork | _ProjectNetwork | union |
| I_Order | _WorkOrderAll | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_MaintenanceOrder | _NonTecoOrder | _NonTecoOrder.MaintenanceOrder = _WorkOrderAll.OrderID |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFLWORKORDERVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Work Order Value Help Non Teco Orders | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_EXCLUDED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | OrderID | OrderID | ||
| OrderDescription | OrderDescription | |||
| ControllingArea | ControllingArea | |||
| Plant | Plant | |||
| ProjectNetworkkeyOrderID | ||||
| OrderDescription | ProjectNetworkDescription | |||
| ControllingArea | ControllingArea | |||
| Plant | Plant | |||
| OrderCategory | OrderCategory |
@AbapCatalog.sqlViewName: 'IFLWORKORDERVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Work Order Value Help Non Teco Orders'
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.sizeCategory: #L
@VDM.viewType: #COMPOSITE
@ObjectModel.dataCategory: #VALUE_HELP
@AccessControl.personalData.blocking: #BLOCKED_DATA_EXCLUDED
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_FldLogsWorkOrderVH
as select from I_Order as _WorkOrderAll
association [0..1] to I_MaintenanceOrder as _NonTecoOrder on _NonTecoOrder.MaintenanceOrder = _WorkOrderAll.OrderID
{
key OrderID,
OrderDescription,
ControllingArea,
Plant,
_NonTecoOrder.MaintenanceOrderCategory as OrderCategory
}
where //Non Teco Orders
_NonTecoOrder.MaintenanceProcessingPhase <> '3'
and _NonTecoOrder.MaintenanceProcessingPhase <> '6'
union select from I_ProjectNetwork as _ProjectNetwork
association [0..1] to I_FldLogsNtwkOrderActiveStatus as _NonTecoOrder on _NonTecoOrder.ProjectNetwork = _ProjectNetwork.ProjectNetwork
{
key OrderID,
ProjectNetworkDescription as OrderDescription,
ControllingArea,
Plant,
OrderCategory
}
where //Non Teco Orders
_NonTecoOrder.StatusCode <> 'I0045'
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