I_FldLogsRetsHndlgUnitOutpReq

DDL: I_FLDLOGSRETSHNDLGUNITOUTPREQ Type: view_entity TRANSACTIONAL Package: FLOG_RETURN

Field Logistics Returns Output Request

I_FldLogsRetsHndlgUnitOutpReq is a Transactional CDS View that provides data about "Field Logistics Returns Output Request" in SAP S/4HANA. It reads from 1 data source (I_FldLogsStockTP) and exposes 8 fields with key fields Material, FldLogsRemotePlant, FldLogsReferenceDocumentNumber, ReferenceDocumentItem, FldLogsMaintenanceOrder. It has 1 association to related views. Part of development package FLOG_RETURN.

Data Sources (1)

SourceAliasJoin Type
I_FldLogsStockTP _Stock from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_OutboundDeliveryItem _OutboundDeliveryItem _Stock.OutboundDelivery = _OutboundDeliveryItem.OutboundDelivery and _Stock.OutboundDeliveryItem = _OutboundDeliveryItem.OutboundDeliveryItem

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Field Logistics Returns Output Request view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #TRANSACTIONAL view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY Material I_FldLogsStockTP Material Vehicle Model
KEY FldLogsRemotePlant I_FldLogsStockTP FldLogsRemotePlant Plant
KEY FldLogsReferenceDocumentNumber I_FldLogsStockTP FldLogsReferenceDocumentNumber Reference Doc Number
KEY ReferenceDocumentItem I_FldLogsStockTP ReferenceDocumentItem Reference item
KEY FldLogsMaintenanceOrder I_FldLogsStockTP FldLogsMaintenanceOrder
KEY RemoteStorageLocation I_FldLogsStockTP RemoteStorageLocation
KEY HandlingUnitExternalID _HandlingUnit HandlingUnitExternalID Handling Unit
PackingStatus _OutboundDeliveryItem PackingStatus

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_FldLogsRetsHndlgUnitOutpReq.
-- 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_FldLogsRetsHndlgUnitOutpReq AS
SELECT
  _Stock.Material AS Material,
  _Stock.FldLogsRemotePlant AS FldLogsRemotePlant,
  _Stock.FldLogsReferenceDocumentNumber AS FldLogsReferenceDocumentNumber,
  _Stock.ReferenceDocumentItem AS ReferenceDocumentItem,
  _Stock.FldLogsMaintenanceOrder AS FldLogsMaintenanceOrder,
  _Stock.RemoteStorageLocation AS RemoteStorageLocation,
  _HandlingUnit.HandlingUnitExternalID AS HandlingUnitExternalID,
  _OutboundDeliveryItem.PackingStatus AS PackingStatus
FROM I_FldLogsStockTP AS _Stock
LEFT OUTER JOIN I_OutboundDeliveryItem AS _OutboundDeliveryItem ON _Stock.OutboundDelivery = _OutboundDeliveryItem.OutboundDelivery AND _Stock.OutboundDeliveryItem = _OutboundDeliveryItem.OutboundDeliveryItem  -- association [0..1]
;