P_SrcgProjQuotationDeviation

DDL: P_SRCGPROJQUOTATIONDEVIATION Type: view_entity CONSUMPTION Package: VDM_MM_PUR_SRCGPROJQTN

Quotation Deviation

P_SrcgProjQuotationDeviation is a Consumption CDS View that provides data about "Quotation Deviation" in SAP S/4HANA. It reads from 1 data source (P_SrcgProjQuotationAmount) and exposes 4 fields with key field SourcingProjectQuotationUUID. Part of development package VDM_MM_PUR_SRCGPROJQTN.

Data Sources (1)

SourceAliasJoin Type
P_SrcgProjQuotationAmount P_SrcgProjQuotationAmount from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.private true view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY SourcingProjectQuotationUUID SourcingProjectQuotationUUID Supplier Quotation UUID
SrcgProjQtnOfferCurrency SrcgProjQtnOfferCurrency Quotation Currency
DocumentCurrency DocumentCurrency Document Currency
SrcgProjQtnDeviationAmount

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_SrcgProjQuotationDeviation.
-- 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.

CREATE VIEW P_SrcgProjQuotationDeviation AS
SELECT
  SourcingProjectQuotationUUID,
  SrcgProjQtnOfferCurrency,
  DocumentCurrency,
  cast(SrcgProjQtnTotNetAmt - SrcgProjQtnTotalTargetAmount as vdm_srcgprojqtndeviationamt ) AS SrcgProjQtnDeviationAmount
FROM P_SrcgProjQuotationAmount
;