I_FldLogsKitOutbDelivGRRef

DDL: I_FLDLOGSKITOUTBDELIVGRREF Type: view_entity COMPOSITE

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)

SourceAliasJoin Type
I_FldLogsDeliveryDocItem _DeliveryDocumentItem inner
I_FldLogsKitMatlDocumentItem _MaterialDocumentRecord inner
I_FldLogsExtLinksForPurDocs I_FldLogsExtLinksForPurDocs from

Annotations (8)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/