I_ProjectDemandSituation

DDL: I_PROJECTDEMANDSITUATION SQL: IPRJDMNDSITN Type: view BASIC

Demand exception handling

I_ProjectDemandSituation is a Basic CDS View that provides data about "Demand exception handling" in SAP S/4HANA. It reads from 1 data source (R_ProjectDemand) and exposes 6 fields with key field ProjectDemandUUID. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
R_ProjectDemand R_ProjectDemand from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_ProjectDemandWorkPackageText _ProjectElementData $projection.ReferencedObjectUUID = _ProjectElementData.ProjectElementUUID
[0..1] I_SitnInstceIndicator _SitnInstceIndicator _SitnInstceIndicator.SitnInstceAnchorObjectKey = $projection.ProjectDemandFormattedName and _SitnInstceIndicator.SitnDefAnchorObject = 'ProjectDemandFormattedName'

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IPRJDMNDSITN view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label Demand exception handling view
VDM.viewType #BASIC view
Metadata.allowExtensions true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey ProjectDemandUUID view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
Search.searchable true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ProjectDemandUUID ProjectDemandUUID Entity GUID
ProjectDemandFormattedName
ProjectDemand ProjectDemand Demand ID
ProjectDemandName ProjectDemandName Demand Name
_SitnInstceIndicator _SitnInstceIndicator
ReferencedObjectUUID ReferencedObjectUUID Referenced Object

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_ProjectDemandSituation.
-- 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.
-- SQL view name: IPRJDMNDSITN

CREATE VIEW I_ProjectDemandSituation AS
SELECT
  ProjectDemandUUID,
  bintohex(ProjectDemandUUID) AS ProjectDemandFormattedName,
  ProjectDemand,
  ProjectDemandName,
  ReferencedObjectUUID
FROM R_ProjectDemand
LEFT OUTER JOIN I_ProjectDemandWorkPackageText AS _ProjectElementData ON ReferencedObjectUUID = _ProjectElementData.ProjectElementUUID  -- association [0..1]
LEFT OUTER JOIN I_SitnInstceIndicator AS _SitnInstceIndicator ON _SitnInstceIndicator.SitnInstceAnchorObjectKey = ProjectDemandFormattedName AND _SitnInstceIndicator.SitnDefAnchorObject = 'ProjectDemandFormattedName'  -- association [0..1]
;