I_FldLogsRcvdInboundDelivery
FL Received Inbound Delivery
I_FldLogsRcvdInboundDelivery is a Composite CDS View that provides data about "FL Received Inbound Delivery" in SAP S/4HANA. It reads from 2 data sources (I_DeliveryDocumentItem, I_FieldLogisticsPlantAll) and exposes 6 fields with key fields DeliveryDocument, DeliveryDocumentItem.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_DeliveryDocumentItem | _DeliveryDocumentItem | from |
| I_FieldLogisticsPlantAll | _FldLogsAllPlants | inner |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | FL Received Inbound Delivery | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| VDM.viewType | #COMPOSITE | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DeliveryDocument | I_DeliveryDocumentItem | DeliveryDocument | |
| KEY | DeliveryDocumentItem | I_DeliveryDocumentItem | DeliveryDocumentItem | |
| DeliveryDocumentItemCategory | I_DeliveryDocumentItem | DeliveryDocumentItemCategory | ||
| Warehouse | I_DeliveryDocumentItem | Warehouse | ||
| GoodsMovementStatus | I_DeliveryDocumentItem | GoodsMovementStatus | ||
| SDDocumentCategory | I_DeliveryDocumentItem | SDDocumentCategory |
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'FL Received Inbound Delivery'
@ObjectModel.usageType:{
serviceQuality: #C,
sizeCategory: #L,
dataClass: #TRANSACTIONAL
}
@VDM.viewType: #COMPOSITE
define view entity I_FldLogsRcvdInboundDelivery
as select from I_DeliveryDocumentItem as _DeliveryDocumentItem
inner join I_FieldLogisticsPlantAll as _FldLogsAllPlants on _FldLogsAllPlants.Plant = _DeliveryDocumentItem.Plant
{
key _DeliveryDocumentItem.DeliveryDocument as DeliveryDocument,
key _DeliveryDocumentItem.DeliveryDocumentItem as DeliveryDocumentItem,
_DeliveryDocumentItem.DeliveryDocumentItemCategory as DeliveryDocumentItemCategory,
_DeliveryDocumentItem.Warehouse as Warehouse,
// _DeliveryDocumentItem.ReferenceSDDocument as ReferenceSDDocument,
// _DeliveryDocumentItem.ReferenceSDDocumentItem as ReferenceSDDocumentItem,
_DeliveryDocumentItem.GoodsMovementStatus as GoodsMovementStatus,
_DeliveryDocumentItem.SDDocumentCategory as SDDocumentCategory
// cast( _DeliveryDocumentItem.DeliveryDocument as /scdl/dl_docno_int ) as EWMDelivery,
// cast( lpad( _DeliveryDocumentItem.DeliveryDocumentItem,10,'0') as /scdl/dl_itemno) as EWMDeliveryItem,
// ltrim(_DeliveryDocumentItem.DeliveryDocument, '0') as InboundDelivery,
// _DeliveryDocumentItem.Plant
}
where
_DeliveryDocumentItem.SDDocumentCategory = '7'
// _DeliveryDocumentItem.DeliveryDocumentItemCategory = 'ELN' /* Received*/
// or _DeliveryDocumentItem.DeliveryDocumentItemCategory = 'DIGN' /* Create */
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_DELIVERYDOCUMENTITEM",
"I_FIELDLOGISTICSPLANTALL"
],
"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