P_ConvertedSalesQuotationAmt

DDL: P_CONVERTEDSALESQUOTATIONAMT Type: view COMPOSITE Package: ODATA_SD_CUSTOMER360

Converted Sales Quotation Amount

P_ConvertedSalesQuotationAmt is a Composite CDS View that provides data about "Converted Sales Quotation Amount" in SAP S/4HANA. It reads from 1 data source (I_SalesOrderItem) and exposes 3 fields with key fields SalesQuotation, SalesQuotationItem. Part of development package ODATA_SD_CUSTOMER360.

Data Sources (1)

SourceAliasJoin Type
I_SalesOrderItem I_SalesOrderItem from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName PCNVRTDSLSAMT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #P view
VDM.private true view
VDM.viewType #COMPOSITE view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SalesQuotation ReferenceSDDocument Reference Doc.
KEY SalesQuotationItem ReferenceSDDocumentItem Reference Item
CnvrtdSalesQuotationNetAmount

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_ConvertedSalesQuotationAmt.
-- 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_ConvertedSalesQuotationAmt AS
SELECT
  ReferenceSDDocument AS SalesQuotation,
  ReferenceSDDocumentItem AS SalesQuotationItem,
  sum(NetAmount) AS CnvrtdSalesQuotationNetAmount
FROM I_SalesOrderItem
;