I_FldLogsRcvdItmRefDocGdsRcpt

DDL: I_FLDLOGSRCVDITMREFDOCGDSRCPT Type: view_entity COMPOSITE Package: FLOG_RETURN_PROCG_BASE

FL Received Item GR for Ref Doc

I_FldLogsRcvdItmRefDocGdsRcpt is a Composite CDS View that provides data about "FL Received Item GR for Ref Doc" in SAP S/4HANA. It reads from 1 data source (I_FldLogsRetCtnItemEnhanced) and exposes 8 fields with key fields MaterialDocument, MaterialDocumentItem. It has 1 association to related views. Part of development package FLOG_RETURN_PROCG_BASE.

Data Sources (1)

SourceAliasJoin Type
I_FldLogsRetCtnItemEnhanced I_FldLogsRetCtnItemEnhanced from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_MaterialDocumentRecord _MaterialDocumentRecord _MaterialDocumentRecord.MaterialDocument = $projection.MaterialDocument

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label FL Received Item GR for Ref Doc view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #COMPOSITE view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY MaterialDocument MaterialDocument Material Doc.
KEY MaterialDocumentItem _MaterialDocumentRecord MaterialDocumentItem Material Document Item
FldLogsReferenceDocumentNumber FldLogsReferenceDocumentNumber Reference Doc Number
OutboundDelivery OutboundDelivery LE Delivery
OutboundDeliveryItem OutboundDeliveryItem Logistics Execution Delivery Item
WarehouseTask WarehouseTask Warehouse Task
FldLogsReferenceDocCategory FldLogsReferenceDocCategory Ref. Document Type
_OutboundDelivery _OutboundDelivery

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_FldLogsRcvdItmRefDocGdsRcpt.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW I_FldLogsRcvdItmRefDocGdsRcpt AS
SELECT
  MaterialDocument,
  _MaterialDocumentRecord.MaterialDocumentItem AS MaterialDocumentItem,
  FldLogsReferenceDocumentNumber,
  OutboundDelivery,
  OutboundDeliveryItem,
  WarehouseTask,
  FldLogsReferenceDocCategory
FROM I_FldLogsRetCtnItemEnhanced
LEFT OUTER JOIN I_MaterialDocumentRecord AS _MaterialDocumentRecord ON _MaterialDocumentRecord.MaterialDocument = MaterialDocument  -- association [0..1]
;