I_FldLogsMaintOrderToIssueVH
Maintenance Orders
I_FldLogsMaintOrderToIssueVH is a Composite CDS View that provides data about "Maintenance Orders" in SAP S/4HANA. It reads from 2 data sources (I_FieldLogisticsPlantAll, I_OrderComponent) and exposes 16 fields with key fields Reservation, ReservationItem, RecordType.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_FieldLogisticsPlantAll | _FldLogsAllPlants | inner |
| I_OrderComponent | _Order | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | Maintenance Orders | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.representativeKey | Reservation | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| VDM.viewType | #COMPOSITE | view |
Fields (16)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Reservation | I_OrderComponent | Reservation | |
| KEY | ReservationItem | I_OrderComponent | ReservationItem | |
| KEY | RecordType | I_OrderComponent | RecordType | |
| OrderID | I_OrderComponent | OrderID | ||
| BillOfMaterialItemNumber | I_OrderComponent | BillOfMaterialItemNumber | ||
| Plant | I_OrderComponent | Plant | ||
| StorageLocation | I_OrderComponent | StorageLocation | ||
| ControllingArea | I_OrderComponent | ControllingArea | ||
| Material | I_OrderComponent | Material | ||
| _Material | I_OrderComponent | _Material | ||
| _Plant | I_OrderComponent | _Plant | ||
| _Reservation | I_OrderComponent | _Reservation | ||
| _Order | I_OrderComponent | _Order | ||
| _StorageLocation | I_OrderComponent | _StorageLocation | ||
| _ControllingArea | I_OrderComponent | _ControllingArea | ||
| _ReservationDocRecordType | I_OrderComponent | _ReservationDocRecordType |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Maintenance Orders'
@ObjectModel.usageType:{
serviceQuality: #C,
sizeCategory: #XL,
dataClass: #MIXED }
@ObjectModel.representativeKey: 'Reservation'
@ObjectModel.dataCategory: #VALUE_HELP
@VDM.viewType: #COMPOSITE
define view entity I_FldLogsMaintOrderToIssueVH
as select from I_OrderComponent as _Order
inner join I_FieldLogisticsPlantAll as _FldLogsAllPlants on _FldLogsAllPlants.Plant = _Order.Plant
{
key _Order.Reservation,
key _Order.ReservationItem,
key _Order.RecordType,
_Order.OrderID,
_Order.BillOfMaterialItemNumber,
_Order.Plant,
_Order.StorageLocation,
_Order.ControllingArea,
_Order.Material,
/*Associations*/
_Order._Material,
_Order._Plant,
_Order._Reservation,
_Order._Order,
_Order._StorageLocation,
_Order._ControllingArea,
_Order._ReservationDocRecordType
}
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