CIC_OUTBOUNDDELIVERYITEM
Projection on Outbound Delivery Items
CIC_OUTBOUNDDELIVERYITEM is a CDS View that provides data about "Projection on Outbound Delivery Items" in SAP S/4HANA. It reads from 1 data source (I_DeliveryDocumentItem) and exposes 12 fields with key fields DeliveryDocument, DeliveryDocumentItem. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_DeliveryDocumentItem | I_DeliveryDocumentItem | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Batch | _Batch | $projection.Batch = _Batch.Batch and $projection.Material = _Batch.Material and $projection.Plant = _Batch.Plant and $projection.StockSegment = _Batch.StockSegment and $projection.StockSegment <> ' ' |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Projection on Outbound Delivery Items | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view |
Fields (12)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DeliveryDocument | DeliveryDocument | ||
| KEY | DeliveryDocumentItem | DeliveryDocumentItem | ||
| DeliveryDocumentItemText | DeliveryDocumentItemText | |||
| Material | Material | |||
| ActualDeliveryQuantity | ActualDeliveryQuantity | |||
| DeliveryQuantityUnit | DeliveryQuantityUnit | |||
| ReferenceSDDocument | ReferenceSDDocument | |||
| ReferenceSDDocumentItem | ReferenceSDDocumentItem | |||
| Plant | Plant | |||
| Batch | Batch | |||
| StockSegment | StockSegment | |||
| CountryOfOrigin | _Batch | CountryOfOrigin |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Projection on Outbound Delivery Items'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #C,
sizeCategory: #XL,
dataClass: #TRANSACTIONAL
}
define view entity CIC_OUTBOUNDDELIVERYITEM as select from I_DeliveryDocumentItem
association [0..1] to I_Batch as _Batch on $projection.Batch = _Batch.Batch
and $projection.Material = _Batch.Material
and $projection.Plant = _Batch.Plant
and $projection.StockSegment = _Batch.StockSegment and $projection.StockSegment <> ' '
{
key DeliveryDocument,
key DeliveryDocumentItem,
DeliveryDocumentItemText,
Material,
@Semantics.quantity.unitOfMeasure: 'DeliveryQuantityUnit'
ActualDeliveryQuantity,
DeliveryQuantityUnit,
ReferenceSDDocument,
ReferenceSDDocumentItem,
Plant,
Batch,
StockSegment,
_Batch.CountryOfOrigin
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_BATCH",
"I_DELIVERYDOCUMENTITEM"
],
"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