R_SrcgProjQtnItmDmndDistrTP

DDL: R_SRCGPROJQTNITMDMNDDISTRTP Type: view_entity TRANSACTIONAL

Dmnd Distr for Itm in Srcg Proj Qtn - TP

R_SrcgProjQtnItmDmndDistrTP is a Transactional CDS View that provides data about "Dmnd Distr for Itm in Srcg Proj Qtn - TP" in SAP S/4HANA. It reads from 1 data source (R_SrcgProjQtnItmDmndDistr) and exposes 28 fields with key field SrcgProjQtnDmndDistrUUID. It has 6 associations to related views.

Data Sources (1)

SourceAliasJoin Type
R_SrcgProjQtnItmDmndDistr R_SrcgProjQtnItmDmndDistr from

Associations (6)

CardinalityTargetAliasCondition
[1..1] R_SourcingProjectQuotationTP _SourcingProjectQuotation $projection.SourcingProjectQuotationUUID = _SourcingProjectQuotation.SourcingProjectQuotationUUID
[1..1] I_BackendPlantForPurg _Plant _Plant.Plant = $projection.Plant and _Plant.CompanyCode = $projection.CompanyCode and _Plant.ProcurementHubSourceSystem = $projection.ProcurementHubSourceSystem
[0..1] I_BackendCoCodeForPurg _ProcmtHubCompanyCode $projection.CompanyCode = _ProcmtHubCompanyCode.CompanyCode and $projection.ProcurementHubSourceSystem = _ProcmtHubCompanyCode.ProcurementHubSourceSystem
[0..*] I_SPItmDmndDistrReqdCmtmtPerdT _SPItmDmndDistrReqdCmtmtPerdT $projection.RequestedCommitmentPeriod = _SPItmDmndDistrReqdCmtmtPerdT.RequestedCommitmentPeriod
[1..1] E_SrcgProjQtnItmDmndDistr _Extension $projection.SrcgProjQtnDmndDistrUUID = _Extension.SrcgProjQtnDmndDistrUUID
[*] R_SrcgProjQtnItmDmndDistrDetTP _SrcgProjQtnDmndDistrDets

Annotations (15)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.representativeKey SrcgProjQtnDmndDistrUUID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.sapObjectNodeType.name SrcgProjQtnItmDmndDistribution view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
EndUserText.label Dmnd Distr for Itm in Srcg Proj Qtn - TP view
AbapCatalog.extensibility.extensible true view
AbapCatalog.extensibility.allowNewDatasources false view
AbapCatalog.extensibility.elementSuffix SQD view
AbapCatalog.extensibility.quota.maximumFields 608 view
AbapCatalog.extensibility.quota.maximumBytes 60800 view
AbapCatalog.extensibility.allowNewCompositions true view

Fields (28)

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
Plant Plant Valuation Area
CompanyCode CompanyCode Receiver Company Code
PurchasingGroup PurchasingGroup Purchasing Group
PurchasingOrganization PurchasingOrganization Purchasing Organization
ProcurementHubSourceSystem ProcurementHubSourceSystem Connected System ID
MaxAnnualRequestedQuantity MaxAnnualRequestedQuantity Max. Requested Quantity
RequestedQuantityUnit RequestedQuantityUnit Requested Quantity Unit
SrcgProjQtnTotOfferedQuantity SrcgProjQtnTotOfferedQuantity Total Offered Quantity
RequestedCommitmentPeriod RequestedCommitmentPeriod
PlannedDeliveryDurationInDays PlannedDeliveryDurationInDays Plnd dely time
StorageLocation StorageLocation StorageLocation
ProcmtHubPlantUniqueID ProcmtHubPlantUniqueID Plant Unique ID
_SourcingProjectQuotation _SourcingProjectQuotation
_SrcgProjQtnItem _SrcgProjQtnItem
_SrcgProjQtnDmndDistrDets _SrcgProjQtnDmndDistrDets
_CompanyCode _CompanyCode
_PurchasingGroup _PurchasingGroup
_PurchasingOrganization _PurchasingOrganization
_Plant _Plant
_ProcmtHubCompanyCode _ProcmtHubCompanyCode
_SrcgProjDemandDistribution _SrcgProjDemandDistribution
_RequestedQuantityUnit _RequestedQuantityUnit
_SPItmDmndDistrReqdCmtmtPerdT _SPItmDmndDistrReqdCmtmtPerdT

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_SrcgProjQtnItmDmndDistrTP.
-- 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_SrcgProjQtnItmDmndDistrTP AS
SELECT
  SrcgProjQtnDmndDistrUUID,
  SourcingProjectQuotationUUID,
  SrcgProjQtnItemUUID,
  SrcgProjDmndDistributionUUID,
  ProcurementProject,
  Plant,
  CompanyCode,
  PurchasingGroup,
  PurchasingOrganization,
  ProcurementHubSourceSystem,
  MaxAnnualRequestedQuantity,
  RequestedQuantityUnit,
  SrcgProjQtnTotOfferedQuantity,
  RequestedCommitmentPeriod,
  PlannedDeliveryDurationInDays,
  StorageLocation,
  ProcmtHubPlantUniqueID
FROM R_SrcgProjQtnItmDmndDistr
LEFT OUTER JOIN R_SourcingProjectQuotationTP AS _SourcingProjectQuotation ON SourcingProjectQuotationUUID = _SourcingProjectQuotation.SourcingProjectQuotationUUID  -- association [1..1]
LEFT OUTER JOIN I_BackendPlantForPurg AS _Plant ON _Plant.Plant = Plant AND _Plant.CompanyCode = CompanyCode AND _Plant.ProcurementHubSourceSystem = ProcurementHubSourceSystem  -- association [1..1]
LEFT OUTER JOIN I_BackendCoCodeForPurg AS _ProcmtHubCompanyCode ON CompanyCode = _ProcmtHubCompanyCode.CompanyCode AND ProcurementHubSourceSystem = _ProcmtHubCompanyCode.ProcurementHubSourceSystem  -- association [0..1]
LEFT OUTER JOIN I_SPItmDmndDistrReqdCmtmtPerdT AS _SPItmDmndDistrReqdCmtmtPerdT ON RequestedCommitmentPeriod = _SPItmDmndDistrReqdCmtmtPerdT.RequestedCommitmentPeriod  -- association [0..*]
LEFT OUTER JOIN E_SrcgProjQtnItmDmndDistr AS _Extension ON SrcgProjQtnDmndDistrUUID = _Extension.SrcgProjQtnDmndDistrUUID  -- association [1..1]
LEFT OUTER JOIN R_SrcgProjQtnItmDmndDistrDetTP AS _SrcgProjQtnDmndDistrDets ON /* condition not available in parsed metadata */  -- association [*]
;