I_FldLogsShipmentItemEmail
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)
| Source | Alias | Join Type |
|---|---|---|
| I_FldLogsReceivedShipmentItem | I_FldLogsReceivedShipmentItem | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [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)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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..*]
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- 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
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA