I_QltyNotificationWithStatus

DDL: I_QLTYNOTIFICATIONWITHSTATUS Type: view_entity COMPOSITE Package: VDM_QM_NOTIFICATION

Quality Notification with Status

I_QltyNotificationWithStatus is a Composite CDS View that provides data about "Quality Notification with Status" in SAP S/4HANA. It reads from 1 data source (I_QltyNotification) and exposes 6 fields with key field QualityNotification. It has 1 association to related views. Part of development package VDM_QM_NOTIFICATION.

Data Sources (1)

SourceAliasJoin Type
I_QltyNotification I_QltyNotification from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_QltyNotificationStatus _Status0161 $projection.NotificationStatusObject = _Status0161.StatusObject and _Status0161.StatusCode = 'I0161'

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label Quality Notification with Status view
VDM.viewType #COMPOSITE view
ObjectModel.representativeKey QualityNotification view
Analytics.technicalName IQLTYNOTIFWSTS view
ObjectModel.compositionRoot true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY QualityNotification I_QltyNotification QualityNotification Notification
NotificationStatusObject I_QltyNotification NotificationStatusObject
IsBusinessPurposeCompleted I_QltyNotification IsBusinessPurposeCompleted Purpose Completed
NotificationOrigin I_QltyNotification NotificationOrigin
NotificationType I_QltyNotification NotificationType Notifictn Type
Plant I_QltyNotification Plant Valuation Area

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_QltyNotificationWithStatus.
-- 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_QltyNotificationWithStatus AS
SELECT
  I_QltyNotification.QualityNotification AS QualityNotification,
  I_QltyNotification.NotificationStatusObject AS NotificationStatusObject,
  I_QltyNotification.IsBusinessPurposeCompleted AS IsBusinessPurposeCompleted,
  I_QltyNotification.NotificationOrigin AS NotificationOrigin,
  I_QltyNotification.NotificationType AS NotificationType,
  I_QltyNotification.Plant AS Plant
FROM I_QltyNotification
LEFT OUTER JOIN I_QltyNotificationStatus AS _Status0161 ON NotificationStatusObject = _Status0161.StatusObject AND _Status0161.StatusCode = 'I0161'  -- association [0..1]
;