I_FldLogsDocFlwPurDocs

DDL: I_FLDLOGSDOCFLWPURDOCS SQL: IFLDFPR Type: view BASIC Package: ODATA_FLOG_SP_WODOCFLOW

Field Logistics:DocFlow Purchasing Document

I_FldLogsDocFlwPurDocs is a Basic CDS View that provides data about "Field Logistics:DocFlow Purchasing Document" in SAP S/4HANA. It reads from 1 data source (eban) and exposes 13 fields with key fields PurchaseRequisition, PurchaseRequisitionItem, PurchasingDocument, PurchasingDocumentItem. Part of development package ODATA_FLOG_SP_WODOCFLOW.

Data Sources (1)

SourceAliasJoin Type
eban Purchaserequisitionitem from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IFLDFPR view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #M view
EndUserText.label Field Logistics:DocFlow Purchasing Document view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY PurchaseRequisition
KEY PurchaseRequisitionItem
KEY PurchasingDocument PurchaseOrderItem ebeln Source PurchDoc
KEY PurchasingDocumentItem PurchaseOrderItem ebelp Item pur. doc.
PurchasingDocumentCategory eban bstyp Source doc.cat.
PurchaseRequisitionType eban bsart Stnd purch.ord.
PurchasingDocumentItemCategory eban pstyp Item Category
Material eban matnr Vehicle Model
FldLogsSupplyProcess eban fldlogssupplyprocess Supply Process
SubsequentDocumentCategory
PurReqnReleaseStatus eban banpr Proc.state
PurchasingProcessingStatus PurchaseOrder procstat Tour Status
IsEndOfPurposeBlocked eban iseopblocked Business Usage Comp.

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_FldLogsDocFlwPurDocs.
-- 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: IFLDFPR

CREATE VIEW I_FldLogsDocFlwPurDocs AS
SELECT
  cast (Purchaserequisitionitem.banfn as vdm_purchaserequisition preserving type ) AS PurchaseRequisition,
  cast (Purchaserequisitionitem.bnfpo as vdm_purchaserequisitionitem preserving type ) AS PurchaseRequisitionItem,
  PurchaseOrderItem.ebeln AS PurchasingDocument,
  PurchaseOrderItem.ebelp AS PurchasingDocumentItem,
  Purchaserequisitionitem.bstyp AS PurchasingDocumentCategory,
  Purchaserequisitionitem.bsart AS PurchaseRequisitionType,
  Purchaserequisitionitem.pstyp AS PurchasingDocumentItemCategory,
  Purchaserequisitionitem.matnr AS Material,
  Purchaserequisitionitem.fldlogssupplyprocess AS FldLogsSupplyProcess,
  cast(PurchaseOrder.bstyp as char4) AS SubsequentDocumentCategory,
  Purchaserequisitionitem.banpr AS PurReqnReleaseStatus,
  PurchaseOrder.procstat AS PurchasingProcessingStatus,
  Purchaserequisitionitem.iseopblocked AS IsEndOfPurposeBlocked
FROM eban AS Purchaserequisitionitem
;