P_PrepaymentDocumentMarketVal

DDL: P_PREPAYMENTDOCUMENTMARKETVAL SQL: PPMGDOCMKTVAL Type: view COMPOSITE

P_PrepaymentDocumentMarketVal is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (P_PrepaymentDocumentFixedVal) and exposes 6 fields with key fields TradingContract, TradingContractItem, PrepaymentRefDocCondition.

Data Sources (1)

SourceAliasJoin Type
P_PrepaymentDocumentFixedVal PricingVal from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName PPMGDOCMKTVAL view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.private true view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY TradingContract P_PrepaymentDocumentFixedVal TradingContract
KEY TradingContractItem P_PrepaymentDocumentFixedVal TradingContractItem Item Number
KEY PrepaymentRefDocCondition P_PrepaymentDocumentFixedVal PrepaymentRefDocCondition
PrepaymentRefDocFixedPriceCrcy P_PrepaymentDocumentFixedVal PrepaymentRefDocFixedPriceCrcy
PrepaymentTotalAmtIsFixedPrice P_PrepaymentDocumentFixedVal PrepaymentTotalAmtIsFixedPrice
PrepaymentWrkCtrDocPricingOptn P_PrepaymentDocumentFixedVal PrepaymentWrkCtrDocPricingOptn

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_PrepaymentDocumentMarketVal.
-- 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: PPMGDOCMKTVAL

CREATE VIEW P_PrepaymentDocumentMarketVal AS
SELECT
  PricingVal.TradingContract AS TradingContract,
  PricingVal.TradingContractItem AS TradingContractItem,
  PricingVal.PrepaymentRefDocCondition AS PrepaymentRefDocCondition,
  PricingVal.PrepaymentRefDocFixedPriceCrcy AS PrepaymentRefDocFixedPriceCrcy,
  PricingVal.PrepaymentTotalAmtIsFixedPrice AS PrepaymentTotalAmtIsFixedPrice,
  PricingVal.PrepaymentWrkCtrDocPricingOptn AS PrepaymentWrkCtrDocPricingOptn
FROM P_PrepaymentDocumentFixedVal AS PricingVal
;