I_FldLogsPrdcssrDocRemote
Field Logistics Predecessor documents
I_FldLogsPrdcssrDocRemote is a Composite CDS View that provides data about "Field Logistics Predecessor documents" in SAP S/4HANA. It reads from 1 data source (I_PurchasingDocumentItem) and exposes 28 fields with key fields PurchasingDocument, PurchasingDocumentItem, DeliveryDocumentendasOutboundDelivery.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_PurchasingDocumentItem | STO | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFLPREDOC_R | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| EndUserText.label | Field Logistics Predecessor documents | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #COMPOSITE | view |
Fields (28)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PurchasingDocument | I_PurchasingDocumentItem | PurchasingDocument | Purchasing Document |
| KEY | PurchasingDocumentItem | I_PurchasingDocumentItem | PurchasingDocumentItem | Purchasing Doc. Item |
| KEY | DeliveryDocumentendasOutboundDelivery | |||
| PurchaseRequisitionItem | I_PurchasingDocumentItem | PurchaseRequisitionItem | Requisn. item | |
| DeliveryDocumentendasDeliveryDocument | ||||
| MaterialDocument | _IBD | MaterialDocument | Material Doc. | |
| MaterialDocumentItem | _IBD | MaterialDocumentItem | Material Document Item | |
| MaterialDocumentYear | _IBD | MaterialDocumentYear | Material Document Year | |
| RefPurchaseRequisitionItem | ||||
| EWMOutboundDeliveryOrder | _EWM_OUTBDELIV | EWMOutboundDeliveryOrder | Document Number | |
| FldLogsPickingWrhsTask | _EWM_WarehouseTask | WarehouseTask | Warehouse Task | |
| PurchaseOrder | _IBD | PurchaseOrder | Purchasing Document | |
| PurchaseOrderItem | _IBD | PurchaseOrderItem | Purchasing Document Item | |
| StockTransportOrder | I_PurchasingDocumentItem | PurchasingDocument | Purchasing Document | |
| SupplyingPlant | ||||
| InboundDeliveryUUID | _EWM_InbDeliveryItem | InboundDeliveryUUID | Document ID | |
| InboundDeliveryItemUUID | _EWM_InbDeliveryItem | InboundDeliveryItemUUID | Item ID | |
| WarehouseTask | _WarehouseTask | WarehouseTask | Warehouse Task | |
| PurchasingDocumentSubtype | _PurchasingDocument | PurchasingDocumentSubtype | Control | |
| MaintenanceOrder | _SupplierItem | MaintenanceOrder | Order | |
| OrderCategory | _SupplierItem | OrderCategory | Order Category | |
| Project | _SupplierItem | Project | WBS Element | |
| ProjectDemand | _SupplierItem | ProjectDemand | Demand ID | |
| ProjectDescription | ||||
| ProjectDemandName | ||||
| EWMInboundDelivery | ||||
| EWMInboundDeliveryItem | _EWM_InbDel | EWMInboundDeliveryItem | Item Number | |
| _Order | _Order |
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_FldLogsPrdcssrDocRemote.
-- 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: IFLPREDOC_R
CREATE VIEW I_FldLogsPrdcssrDocRemote AS
SELECT
STO.PurchasingDocument AS PurchasingDocument,
STO.PurchasingDocumentItem AS PurchasingDocumentItem,
case when _SupplierItem.DeliveryDocument is not null then _SupplierItem.DeliveryDocument else _DeliveryDocumentItem.DeliveryDocument end as OutboundDelivery AS DeliveryDocumentendasOutboundDelivery,
STO.PurchaseRequisitionItem AS PurchaseRequisitionItem,
case when _SupplierItem.DeliveryDocument is not null then _SupplierItem.DeliveryDocument else _IBD.DeliveryDocument end as DeliveryDocument AS DeliveryDocumentendasDeliveryDocument,
_IBD.MaterialDocument AS MaterialDocument,
_IBD.MaterialDocumentItem AS MaterialDocumentItem,
_IBD.MaterialDocumentYear AS MaterialDocumentYear,
_IBD._PurchaseOrderItem.PurchaseRequisitionItem AS RefPurchaseRequisitionItem,
_EWM_OUTBDELIV.EWMOutboundDeliveryOrder AS EWMOutboundDeliveryOrder,
_EWM_WarehouseTask.WarehouseTask AS FldLogsPickingWrhsTask,
_IBD.PurchaseOrder AS PurchaseOrder,
_IBD.PurchaseOrderItem AS PurchaseOrderItem,
STO.PurchasingDocument AS StockTransportOrder,
STO._PurchasingDocument.SupplyingPlant AS SupplyingPlant,
_EWM_InbDeliveryItem.InboundDeliveryUUID AS InboundDeliveryUUID,
_EWM_InbDeliveryItem.InboundDeliveryItemUUID AS InboundDeliveryItemUUID,
_WarehouseTask.WarehouseTask AS WarehouseTask,
_PurchasingDocument.PurchasingDocumentSubtype AS PurchasingDocumentSubtype,
_SupplierItem.MaintenanceOrder AS MaintenanceOrder,
_SupplierItem.OrderCategory AS OrderCategory,
_SupplierItem.Project AS Project,
_SupplierItem.ProjectDemand AS ProjectDemand,
_SupplierItem._PPMTask.TaskName AS ProjectDescription,
_SupplierItem._ProjectDemand.ProjectDemandName AS ProjectDemandName,
ltrim(_EWM_InbDel.EWMInboundDelivery, '0') AS EWMInboundDelivery,
_EWM_InbDel.EWMInboundDeliveryItem AS EWMInboundDeliveryItem
FROM I_PurchasingDocumentItem AS STO
;
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