I_FieldLogisticsOrder
Field Logistics Order
I_FieldLogisticsOrder is a Composite CDS View that provides data about "Field Logistics Order" in SAP S/4HANA. It reads from 1 data source (I_LogisticsOrder) and exposes 11 fields with key field OrderID.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_LogisticsOrder | I_LogisticsOrder | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | Field Logistics Order | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| VDM.viewType | #COMPOSITE | view |
Fields (11)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | OrderID | OrderID | ||
| OrderCategory | OrderCategory | |||
| OrderType | OrderType | |||
| OrderDescription | OrderDescription | |||
| PriorityCode | PriorityCode | |||
| Plant | Plant | |||
| PlannedStartDate | PlannedStartDate | |||
| ScheduledBasicStartDate | ScheduledBasicStartDate | |||
| MRPController | MRPController | |||
| ControllingArea | ControllingArea | |||
| ResponsiblePlannerGroup | ResponsiblePlannerGroup |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Field Logistics Order'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #B,
sizeCategory: #L,
dataClass: #TRANSACTIONAL
}
@VDM.viewType: #COMPOSITE
define view entity I_FieldLogisticsOrder
as select from I_LogisticsOrder
{
key OrderID,
OrderCategory,
OrderType,
OrderDescription,
PriorityCode,
Plant,
PlannedStartDate,
ScheduledBasicStartDate,
MRPController,
ControllingArea,
ResponsiblePlannerGroup
}
where
(
IsMarkedForDeletion is initial
or IsMarkedForDeletion is null
)
and(
OrderCategory = '20' --Network Order
or OrderCategory = '30' --MO
)
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