A_SrcgProjItmDmndDistrDetail

DDL: A_SRCGPROJITMDMNDDISTRDETAIL Type: view_entity CONSUMPTION

Demand Distribution Details

A_SrcgProjItmDmndDistrDetail is a Consumption CDS View that provides data about "Demand Distribution Details" in SAP S/4HANA. It reads from 1 data source (R_SrcgProjItmDmndDistrDetailTP) and exposes 12 fields with key field SrcgProjDmndDistrDetailsUUID.

Data Sources (1)

SourceAliasJoin Type
R_SrcgProjItmDmndDistrDetailTP R_SrcgProjItmDmndDistrDetailTP projection

Annotations (16)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey SrcgProjDmndDistrDetailsUUID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Demand Distribution Details view
OData.entityType.name SrcgProjDmndDistrDetails_Type view
AbapCatalog.extensibility.extensible true view
AbapCatalog.extensibility.allowNewDatasources false view
AbapCatalog.extensibility.elementSuffix SPT view
AbapCatalog.extensibility.quota.maximumFields 204 view
AbapCatalog.extensibility.quota.maximumBytes 4080 view
AbapCatalog.extensibility.allowNewCompositions true view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY SrcgProjDmndDistrDetailsUUID SrcgProjDmndDistrDetailsUUID Demand Distribution Details UUID
SourcingProjectUUID SourcingProjectUUID Sourcing Project UUID
SrcgProjDmndDistributionUUID SrcgProjDmndDistributionUUID Demand Distribution UUID
FiscalYear FiscalYear G/L Fiscal Year
SourcingOrigin SourcingOrigin Sourcing Origin
SourcingScenario SourcingScenario Integration Scenario
RequestedQuantity RequestedQuantity Requested Quantity
MaximumRequestedPeriodQuantity MaximumRequestedPeriodQuantity
RequestedCommitmentPeriod _SrcgProjDemandDistribution RequestedCommitmentPeriod
RequestedCommitmentPeriodNamelocalized
RequestedQuantityUnit
RequestedQuantityISOUnit

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_SrcgProjItmDmndDistrDetail.
-- 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_SrcgProjItmDmndDistrDetail AS
SELECT
  SrcgProjDmndDistrDetailsUUID,
  SourcingProjectUUID,
  SrcgProjDmndDistributionUUID,
  FiscalYear,
  SourcingOrigin,
  SourcingScenario,
  RequestedQuantity,
  MaximumRequestedPeriodQuantity,
  _SrcgProjDemandDistribution.RequestedCommitmentPeriod AS RequestedCommitmentPeriod,
  _SrcgProjDemandDistribution._SPItmDmndDistrReqdCmtmtPerdT.RequestedCommitmentPeriodName : localized AS RequestedCommitmentPeriodNamelocalized,
  _SrcgProjDemandDistribution._SourcingProjectItem.RequestedQuantityUnit AS RequestedQuantityUnit,
  cast(_SrcgProjDemandDistribution._SourcingProjectItem._RequestedQuantityUnit.UnitOfMeasureISOCode as vdm_requested_iso_unit preserving type ) AS RequestedQuantityISOUnit
FROM R_SrcgProjItmDmndDistrDetailTP
;