I_FldLogsShipmentItemEmail

DDL: I_FLDLOGSSHIPMENTITEMEMAIL SQL: IFLSHPTEMAIL Type: view COMPOSITE

Shipment Item Email Template

I_FldLogsShipmentItemEmail is a Composite CDS View that provides data about "Shipment Item Email Template" in SAP S/4HANA. It reads from 1 data source (I_FldLogsReceivedShipmentItem) and exposes 15 fields with key fields FldLogsReferenceDocumentNumber, FldLogsDispatchPlant, DispatchedStartDate. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_FldLogsReceivedShipmentItem I_FldLogsReceivedShipmentItem from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_FldLogsCtnItmQuickActionTxt _QuickActionText $projection.FldLogsCtnQuickAction = _QuickActionText.FldLogsCtnQuickAction and $projection.FieldLogisticsProcessType = _QuickActionText.FieldLogisticsProcessType and _QuickActionText.Language = $session.system_language
[0..1] I_FldLogsCtnItmProcessingInfo _ProcessingLog $projection.FldLogsDispatchPlant = _ProcessingLog.FldLogsDispatchPlant and $projection.DispatchedStartDate = _ProcessingLog.DispatchedStartDate and $projection.FldLogsReferenceDocumentNumber = _ProcessingLog.FldLogsReferenceDocumentNumber
[0..*] I_FldLogsMaterialText _MaterialText $projection.Material = _MaterialText.Material and I_FldLogsReceivedShipmentItem.FldLogsSuplrItemUUID = _MaterialText.FldLogsSuplrItemUUID

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IFLSHPTEMAIL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #C view
VDM.viewType #COMPOSITE view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label Shipment Item Email Template view

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY FldLogsReferenceDocumentNumber FldLogsReferenceDocumentNumber Reference Doc Number
KEY FldLogsDispatchPlant FldLogsDispatchPlant Plant
KEY DispatchedStartDate DispatchedStartDate Dispatch Date
Material Material Vehicle Model
RetblQtyInOrderUnit RetblQtyInOrderUnit
RetblQtyOrderUnit RetblQtyOrderUnit
FldLogsSrceStorLocID FldLogsSrceStorLocID Location
FldLogsDestStorLocID FldLogsDestStorLocID Location
FldLogsCtnQuickAction FldLogsCtnQuickAction Handling Decision
MaterialName _MaterialText MaterialName Material Description
FldLogsRetContainerItemURL
SupplyingPlant FieldLogisticsReceivingPlant
FldLogsCtnItmLastProcessingMsg _ProcessingLog FldLogsCtnItmLastProcessingMsg
FieldLogisticsProcessType FieldLogisticsProcessType Process Type
FldLogsCtnQuickActionText _QuickActionText FldLogsCtnQuickActionText

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_FldLogsShipmentItemEmail.
-- 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.
-- SQL view name: IFLSHPTEMAIL

CREATE VIEW I_FldLogsShipmentItemEmail AS
SELECT
  FldLogsReferenceDocumentNumber,
  FldLogsDispatchPlant,
  DispatchedStartDate,
  Material,
  RetblQtyInOrderUnit,
  RetblQtyOrderUnit,
  FldLogsSrceStorLocID,
  FldLogsDestStorLocID,
  FldLogsCtnQuickAction,
  _MaterialText.MaterialName AS MaterialName,
  cast(' ' as swf_flex_text_text) AS FldLogsRetContainerItemURL,
  FieldLogisticsReceivingPlant AS SupplyingPlant,
  _ProcessingLog.FldLogsCtnItmLastProcessingMsg AS FldLogsCtnItmLastProcessingMsg,
  FieldLogisticsProcessType,
  _QuickActionText.FldLogsCtnQuickActionText AS FldLogsCtnQuickActionText
FROM I_FldLogsReceivedShipmentItem
LEFT OUTER JOIN I_FldLogsCtnItmQuickActionTxt AS _QuickActionText ON FldLogsCtnQuickAction = _QuickActionText.FldLogsCtnQuickAction AND FieldLogisticsProcessType = _QuickActionText.FieldLogisticsProcessType AND _QuickActionText.Language = $session.system_language  -- association [0..1]
LEFT OUTER JOIN I_FldLogsCtnItmProcessingInfo AS _ProcessingLog ON FldLogsDispatchPlant = _ProcessingLog.FldLogsDispatchPlant AND DispatchedStartDate = _ProcessingLog.DispatchedStartDate AND FldLogsReferenceDocumentNumber = _ProcessingLog.FldLogsReferenceDocumentNumber  -- association [0..1]
LEFT OUTER JOIN I_FldLogsMaterialText AS _MaterialText ON Material = _MaterialText.Material AND I_FldLogsReceivedShipmentItem.FldLogsSuplrItemUUID = _MaterialText.FldLogsSuplrItemUUID  -- association [0..*]
;