C_FldLogsPurchaseOrderVH

DDL: C_FLDLOGSPURCHASEORDERVH SQL: CFLPOVH Type: view CONSUMPTION Package: ODATA_FLOG_PROCESS_RECEIPTS

Field Logistics : Process Receipts PO Value Help

C_FldLogsPurchaseOrderVH is a Consumption CDS View that provides data about "Field Logistics : Process Receipts PO Value Help" in SAP S/4HANA. It reads from 1 data source (I_FldLogsPurchaseOrderVH) and exposes 11 fields with key field PurchaseOrder. Part of development package ODATA_FLOG_PROCESS_RECEIPTS.

Data Sources (1)

SourceAliasJoin Type
I_FldLogsPurchaseOrderVH I_FldLogsPurchaseOrderVH from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CFLPOVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Field Logistics : Process Receipts PO Value Help view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #VALUE_HELP view
VDM.viewType #CONSUMPTION view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
Consumption.ranked true view
Consumption.valueHelpDefault.fetchValues #AUTOMATICALLY_WHEN_DISPLAYED view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY PurchaseOrder PurchaseOrder Purchasing Document
Supplier Supplier Supplier
PurchasingGroup PurchasingGroup Purchasing Group
CompanyCode CompanyCode Receiver Company Code
ReleaseIsNotCompleted ReleaseIsNotCompleted Subj.to Release
PurchasingCompletenessStatus PurchasingCompletenessStatus Incomplete
PurchasingDocumentType PurchasingDocumentType RFQ Type
PurchasingDocumentOrigin PurchasingDocumentOrigin Status
PurchasingDocumentCategory PurchasingDocumentCategory Doc. Category
PurchasingOrganization PurchasingOrganization Purchasing Organization
IsEndOfPurposeBlocked IsEndOfPurposeBlocked Busin. Purp. Cmpltd.

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 C_FldLogsPurchaseOrderVH.
-- 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: CFLPOVH

CREATE VIEW C_FldLogsPurchaseOrderVH AS
SELECT
  PurchaseOrder,
  Supplier,
  PurchasingGroup,
  CompanyCode,
  ReleaseIsNotCompleted,
  PurchasingCompletenessStatus,
  PurchasingDocumentType,
  PurchasingDocumentOrigin,
  PurchasingDocumentCategory,
  PurchasingOrganization,
  IsEndOfPurposeBlocked
FROM I_FldLogsPurchaseOrderVH
;