I_AlertHighRisk

DDL: I_ALERTHIGHRISK SQL: IALTHIGHRISK Type: view COMPOSITE

Master Project Alert for High Risk

I_AlertHighRisk is a Composite CDS View that provides data about "Master Project Alert for High Risk" in SAP S/4HANA. It reads from 1 data source (I_MstrProjAlertRisk) and exposes 8 fields with key field MasterProject.

Data Sources (1)

SourceAliasJoin Type
I_MstrProjAlertRisk HighRisk from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IALTHIGHRISK view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #COMPOSITE view
EndUserText.label Master Project Alert for High Risk view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #MIXED view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY MasterProject I_MstrProjAlertRisk MasterProject Project ID
MasterProjectUUID I_MstrProjAlertRisk MasterProjectUUID NodeID
MasterProjectType I_MstrProjAlertRisk MasterProjectType
MasterProjectOrganization I_MstrProjAlertRisk MasterProjectOrganization
MasterProjectIsConfidential I_MstrProjAlertRisk MasterProjectIsConfidential
MasterProjectAlert I_MstrProjAlertRisk MasterProjectAlert
MstrProjAlertValue
UnitOfMeasure

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_AlertHighRisk.
-- 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: IALTHIGHRISK

CREATE VIEW I_AlertHighRisk AS
SELECT
  HighRisk.MasterProject AS MasterProject,
  HighRisk.MasterProjectUUID AS MasterProjectUUID,
  HighRisk.MasterProjectType AS MasterProjectType,
  HighRisk.MasterProjectOrganization AS MasterProjectOrganization,
  HighRisk.MasterProjectIsConfidential AS MasterProjectIsConfidential,
  HighRisk.MasterProjectAlert AS MasterProjectAlert,
  sum(HighRisk.MstrProjAlertValue) AS MstrProjAlertValue,
  ' ' AS UnitOfMeasure
FROM I_MstrProjAlertRisk AS HighRisk
;