I_SrcgProjQtnItmDmndDistrDet

DDL: I_SRCGPROJQTNITMDMNDDISTRDET Type: view_entity BASIC

Dmnd Distr Dets for Itm in Srcg Proj Qtn

I_SrcgProjQtnItmDmndDistrDet is a Basic CDS View that provides data about "Dmnd Distr Dets for Itm in Srcg Proj Qtn" in SAP S/4HANA. It reads from 1 data source (R_SrcgProjQtnItmDmndDistrDet) and exposes 8 fields with key field SrcgProjQtnDmndDistrDetsUUID. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
R_SrcgProjQtnItmDmndDistrDet R_SrcgProjQtnItmDmndDistrDet from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_SourcingProjectQuotation _SourcingProjectQuotation $projection.SourcingProjectQuotationUUID = _SourcingProjectQuotation.SourcingProjectQuotationUUID
[1..1] E_SrcgProjQtnItmDmndDistrDet _Extension $projection.SrcgProjQtnDmndDistrDetsUUID = _Extension.SrcgProjQtnDmndDistrDetsUUID

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.representativeKey SrcgProjQtnDmndDistrDetsUUID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
VDM.viewType #BASIC view
EndUserText.label Dmnd Distr Dets for Itm in Srcg Proj Qtn view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY SrcgProjQtnDmndDistrDetsUUID SrcgProjQtnDmndDistrDetsUUID Demand Distribution Details UUID
SrcgProjQtnDmndDistrUUID SrcgProjQtnDmndDistrUUID Demand Distribution UUID in Quotation
FiscalYear FiscalYear G/L Fiscal Year
RequestedQuantity RequestedQuantity Requested Quantity
SrcgProjQtnOfferedQuantity SrcgProjQtnOfferedQuantity Offered Quantity
RequestedQuantityUnit RequestedQuantityUnit Requested Quantity Unit
SourcingProjectQuotationUUID SourcingProjectQuotationUUID Supplier Quotation UUID
_SourcingProjectQuotation _SourcingProjectQuotation

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 I_SrcgProjQtnItmDmndDistrDet.
-- 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 I_SrcgProjQtnItmDmndDistrDet AS
SELECT
  SrcgProjQtnDmndDistrDetsUUID,
  SrcgProjQtnDmndDistrUUID,
  FiscalYear,
  RequestedQuantity,
  SrcgProjQtnOfferedQuantity,
  RequestedQuantityUnit,
  SourcingProjectQuotationUUID
FROM R_SrcgProjQtnItmDmndDistrDet
LEFT OUTER JOIN I_SourcingProjectQuotation AS _SourcingProjectQuotation ON SourcingProjectQuotationUUID = _SourcingProjectQuotation.SourcingProjectQuotationUUID  -- association [1..1]
LEFT OUTER JOIN E_SrcgProjQtnItmDmndDistrDet AS _Extension ON SrcgProjQtnDmndDistrDetsUUID = _Extension.SrcgProjQtnDmndDistrDetsUUID  -- association [1..1]
;