A_SrcgProjQtnItmDmndDistr

DDL: A_SRCGPROJQTNITMDMNDDISTR Type: view_entity CONSUMPTION

Demand Distribution

A_SrcgProjQtnItmDmndDistr is a Consumption CDS View that provides data about "Demand Distribution" in SAP S/4HANA. It reads from 1 data source (R_SrcgProjQtnItmDmndDistrTP) and exposes 16 fields with key field SrcgProjQtnDmndDistrUUID. It is exposed through 1 OData service (API_SOURCINGPROJECTQUOTATION).

Data Sources (1)

SourceAliasJoin Type
R_SrcgProjQtnItmDmndDistrTP R_SrcgProjQtnItmDmndDistrTP projection

Annotations (16)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.representativeKey SrcgProjQtnDmndDistrUUID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Demand Distribution view
OData.entityType.name SrcgProjQtnDmndDistr_Type view
AbapCatalog.extensibility.extensible true view
AbapCatalog.extensibility.allowNewDatasources false view
AbapCatalog.extensibility.elementSuffix SQD view
AbapCatalog.extensibility.quota.maximumFields 408 view
AbapCatalog.extensibility.quota.maximumBytes 8160 view
AbapCatalog.extensibility.allowNewCompositions true view

OData Services (1)

ServiceBindingVersionContractRelease
API_SOURCINGPROJECTQUOTATION API_SRCGPROJQUOTATION V4 C2 C1

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY SrcgProjQtnDmndDistrUUID SrcgProjQtnDmndDistrUUID Demand Distribution UUID in Quotation
SourcingProjectQuotationUUID SourcingProjectQuotationUUID Supplier Quotation UUID
SrcgProjQtnItemUUID SrcgProjQtnItemUUID Supplier Quotation Item UUID
SrcgProjDmndDistributionUUID SrcgProjDmndDistributionUUID Demand Distribution UUID
ProcurementProject ProcurementProject Project
ProcurementHubSourceSystem ProcurementHubSourceSystem Connected System ID
CompanyCode CompanyCode Receiver Company Code
Plant Plant Valuation Area
MaxAnnualRequestedQuantity MaxAnnualRequestedQuantity Max. Requested Quantity
RequestedQuantityUnit RequestedQuantityUnit Requested Quantity Unit
RequestedQuantityISOUnit
SrcgProjQtnTotOfferedQuantity SrcgProjQtnTotOfferedQuantity Total Offered Quantity
PurchasingOrganization PurchasingOrganization Purchasing Organization
PurchasingGroup PurchasingGroup Purchasing Group
StorageLocation StorageLocation StorageLocation
ProcmtHubPlantUniqueID ProcmtHubPlantUniqueID Plant Unique ID

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 A_SrcgProjQtnItmDmndDistr.
-- 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 A_SrcgProjQtnItmDmndDistr AS
SELECT
  SrcgProjQtnDmndDistrUUID,
  SourcingProjectQuotationUUID,
  SrcgProjQtnItemUUID,
  SrcgProjDmndDistributionUUID,
  ProcurementProject,
  ProcurementHubSourceSystem,
  CompanyCode,
  Plant,
  MaxAnnualRequestedQuantity,
  RequestedQuantityUnit,
  cast(_RequestedQuantityUnit.UnitOfMeasureISOCode as vdm_requested_iso_unit preserving type ) AS RequestedQuantityISOUnit,
  SrcgProjQtnTotOfferedQuantity,
  PurchasingOrganization,
  PurchasingGroup,
  StorageLocation,
  ProcmtHubPlantUniqueID
FROM R_SrcgProjQtnItmDmndDistrTP
;