R_SrcgProjItemQuotationCount

DDL: R_SRCGPROJITEMQUOTATIONCOUNT Type: view_entity COMPOSITE

Quotation Count for Sourcing Project Itm

R_SrcgProjItemQuotationCount is a Composite CDS View that provides data about "Quotation Count for Sourcing Project Itm" in SAP S/4HANA. It reads from 1 data source (P_SrcgProjItmQtnCount) and exposes 4 fields with key field SourcingProjectItemUUID.

Data Sources (1)

SourceAliasJoin Type
P_SrcgProjItmQtnCount P_SrcgProjItmQtnCount from

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
ObjectModel.representativeKey SourcingProjectItemUUID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
EndUserText.label Quotation Count for Sourcing Project Itm view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY SourcingProjectItemUUID SourcingProjectItemUUID Item UUID
NumberOfSubmittedQuotations NumberOfSubmittedQuotations
NumberOfAwardedQuotations NumberOfAwardedQuotations
SrcgProjTotalNumberOfQuotation

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 R_SrcgProjItemQuotationCount.
-- 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 R_SrcgProjItemQuotationCount AS
SELECT
  SourcingProjectItemUUID,
  NumberOfSubmittedQuotations,
  NumberOfAwardedQuotations,
  NumberOfSubmittedQuotations + NumberOfAwardedQuotations AS SrcgProjTotalNumberOfQuotation
FROM P_SrcgProjItmQtnCount
;