I_FldLogsKitOutbDelivGRRef
Kit Outbound delivery from goods receipt reference
I_FldLogsKitOutbDelivGRRef is a Composite CDS View that provides data about "Kit Outbound delivery from goods receipt reference" in SAP S/4HANA. It reads from 3 data sources (I_FldLogsDeliveryDocItem, I_FldLogsKitMatlDocumentItem, I_FldLogsExtLinksForPurDocs) and exposes 6 fields with key fields PurchasingDocument, PurchasingDocumentItem.
Data Sources (3)
| Source | Alias | Join Type |
|---|---|---|
| I_FldLogsDeliveryDocItem | _DeliveryDocumentItem | inner |
| I_FldLogsKitMatlDocumentItem | _MaterialDocumentRecord | inner |
| I_FldLogsExtLinksForPurDocs | I_FldLogsExtLinksForPurDocs | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Kit Outbound delivery from goods receipt reference | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| VDM.viewType | #COMPOSITE | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PurchasingDocument | I_FldLogsKitMatlDocumentItem | PurchaseOrder | |
| KEY | PurchasingDocumentItem | I_FldLogsKitMatlDocumentItem | PurchaseOrderItem | |
| DeliveryDocument | I_FldLogsDeliveryDocItem | DeliveryDocument | ||
| DeliveryDocumentItem | I_FldLogsDeliveryDocItem | DeliveryDocumentItem | ||
| ActualDeliveryQuantity | I_FldLogsDeliveryDocItem | ActualDeliveryQuantity | ||
| DeliveryQuantityUnit | I_FldLogsDeliveryDocItem | DeliveryQuantityUnit |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Kit Outbound delivery from goods receipt reference'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #C,
sizeCategory: #L,
dataClass: #TRANSACTIONAL
}
@VDM: {
lifecycle.contract.type: #SAP_INTERNAL_API,
viewType: #COMPOSITE
}
define view entity I_FldLogsKitOutbDelivGRRef
as select from I_FldLogsExtLinksForPurDocs
inner join I_FldLogsDeliveryDocItem as _DeliveryDocumentItem on _DeliveryDocumentItem.ReferenceSDDocument = I_FldLogsExtLinksForPurDocs.StockTransportOrder
and _DeliveryDocumentItem.PurchasingDocumentItem = I_FldLogsExtLinksForPurDocs.StockTransportOrderItem
inner join I_FldLogsKitMatlDocumentItem as _MaterialDocumentRecord on _MaterialDocumentRecord.MaterialDocument = I_FldLogsExtLinksForPurDocs.MaterialDocument
and _MaterialDocumentRecord.MaterialDocumentItem = I_FldLogsExtLinksForPurDocs.MaterialDocumentItem
and _MaterialDocumentRecord.MaterialDocumentYear = I_FldLogsExtLinksForPurDocs.MaterialDocumentYear
{
key _MaterialDocumentRecord.PurchaseOrder as PurchasingDocument,
key _MaterialDocumentRecord.PurchaseOrderItem as PurchasingDocumentItem,
_DeliveryDocumentItem.DeliveryDocument,
_DeliveryDocumentItem.DeliveryDocumentItem,
@Semantics.quantity.unitOfMeasure: 'DeliveryQuantityUnit'
_DeliveryDocumentItem.ActualDeliveryQuantity,
_DeliveryDocumentItem.DeliveryQuantityUnit
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_FLDLOGSDELIVERYDOCITEM",
"I_FLDLOGSEXTLINKSFORPURDOCS",
"I_FLDLOGSKITMATLDOCUMENTITEM"
],
"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