P_ACMPrcReconVlogpFinalData

DDL: P_ACMPRCRECONVLOGPFINALDATA SQL: PACMVLOGPDATAPRC Type: view COMPOSITE

P_ACMPrcReconVlogpFinalData is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (I_PhysCmmdtyForMaterial, P_ACMPrcReconVlogpPrepareData) and exposes 22 fields with key fields PricingKey, Version, PricingDocumentItem, ConditionType, SubConditionType.

Data Sources (2)

SourceAliasJoin Type
I_PhysCmmdtyForMaterial PhysCmmdty inner
P_ACMPrcReconVlogpPrepareData VLOGP from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PACMVLOGPDATAPRC view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
VDM.private true view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XXL view

Fields (22)

KeyFieldSource TableSource FieldDescription
KEY PricingKey P_ACMPrcReconVlogpPrepareData PricingKey Pricing Key
KEY Version P_ACMPrcReconVlogpPrepareData Version XML Vers.
KEY PricingDocumentItem
KEY ConditionType P_ACMPrcReconVlogpPrepareData ConditionType Condition type
KEY SubConditionType P_ACMPrcReconVlogpPrepareData SubConditionType
ACMPricingDocumentItem P_ACMPrcReconVlogpPrepareData PricingDocumentItem Item
MTMDataSourceType MTMDataSourceType Type of Data Record
SourceDocument SourceDocument Document
DocumentCurrency DocumentCurrency Document Currency
DeliveryPeriodStartDate DeliveryPeriodStartDate
DeliveryPeriodEndDate DeliveryPeriodEndDate
ConditionTermRate ConditionTermRate
ConditionTermRateCurrency ConditionTermRateCurrency
ConditionTermRateQuantity ConditionTermRateQuantity
ConditionTermRateQuantityUnit ConditionTermRateQuantityUnit
MaturityKeyDate MaturityKeyDate Maturity Key Date
ConditionTermRateFixation ConditionTermRateFixation
RefPricingDocumentItem P_ACMPrcReconVlogpPrepareData PricingDocumentItem Item
PricingStatus P_ACMPrcReconVlogpPrepareData PricingStatus
TargetConversionFactor TargetConversionFactor
SourceConversionFactor SourceConversionFactor
OriginReferenceDocument OriginReferenceDocument Root Document

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_ACMPrcReconVlogpFinalData.
-- 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: PACMVLOGPDATAPRC

CREATE VIEW P_ACMPrcReconVlogpFinalData AS
SELECT
  VLOGP.PricingKey AS PricingKey,
  VLOGP.Version AS Version,
  lpad(VLOGP.PricingDocumentItem, 10, '0') AS PricingDocumentItem,
  VLOGP.ConditionType AS ConditionType,
  VLOGP.SubConditionType AS SubConditionType,
  VLOGP.PricingDocumentItem AS ACMPricingDocumentItem,
  MTMDataSourceType,
  SourceDocument,
  DocumentCurrency,
  DeliveryPeriodStartDate,
  DeliveryPeriodEndDate,
  ConditionTermRate,
  ConditionTermRateCurrency,
  ConditionTermRateQuantity,
  ConditionTermRateQuantityUnit,
  MaturityKeyDate,
  ConditionTermRateFixation,
  VLOGP.PricingDocumentItem AS RefPricingDocumentItem,
  VLOGP.PricingStatus AS PricingStatus,
  TargetConversionFactor,
  SourceConversionFactor,
  OriginReferenceDocument
FROM P_ACMPrcReconVlogpPrepareData AS VLOGP
INNER JOIN I_PhysCmmdtyForMaterial AS PhysCmmdty ON /* join condition not captured in parsed metadata */
;