P_Purchasingdocument_Fs

DDL: P_PURCHASINGDOCUMENT_FS SQL: PPurchasingdocFs Type: view BASIC Package: VDM_MD_PRODUCT_OBSOLETE

Private Factsheet - Purchasing Document

P_Purchasingdocument_Fs is a Basic CDS View that provides data about "Private Factsheet - Purchasing Document" in SAP S/4HANA. It reads from 2 data sources (I_PurchasingDocument, I_PurchasingInfoRecord) and exposes 3 fields with key fields Supplier, Supplier, Material. Part of development package VDM_MD_PRODUCT_OBSOLETE.

Data Sources (2)

SourceAliasJoin Type
I_PurchasingDocument PurchasingDoc from
I_PurchasingInfoRecord PurchasingInfoRecord union

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName PPurchasingdocFs view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
VDM.private true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Supplier I_PurchasingDocument Supplier Supplier
KEY Supplier Supplier
KEY Material I_PurchasingInfoRecord Material Vehicle Model

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 P_Purchasingdocument_Fs.
-- 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: PPurchasingdocFs

CREATE VIEW P_Purchasingdocument_Fs AS
SELECT
  PurchasingDoc.Supplier AS Supplier,
  PurchasingInfoRecord.Material AS Material
FROM I_PurchasingDocument AS PurchasingDoc
-- UNION with additional select branch(es): I_PurchasingInfoRecord
;