R_QltyNotificationTP

DDL: R_QLTYNOTIFICATIONTP Type: view_entity TRANSACTIONAL

Quality Notification

R_QltyNotificationTP is a Transactional CDS View that provides data about "Quality Notification" in SAP S/4HANA. It reads from 1 data source (I_QltyNotification) and exposes 54 fields with key field QualityNotification. It has 5 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_QltyNotification Notification from

Associations (5)

CardinalityTargetAliasCondition
[1..1] E_QualityNotification _Extension $projection.QualityNotification = _Extension.QualityNotification
[0..*] R_QltyNotificationLongTextTP _QltyNotificationLongText
[0..*] R_QualityNotificationPartnerTP _QltyNotificationPartner
[0..*] R_QualityNotificationItemTP _QualityNotificationItem
[0..*] R_QltyNotificationTaskTP _QltyNotificationTask

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Quality Notification view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey QualityNotification view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.sapObjectNodeType.name QualityNotification view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #TRANSACTIONAL view

Fields (54)

KeyFieldSource TableSource FieldDescription
KEY QualityNotification QualityNotification Notification
MasterLanguage MasterLanguage Primary lang.
NotificationOrigin NotificationOrigin
NotificationType NotificationType Notifictn Type
NotifProcessingPhase NotifProcessingPhase Notif. Phase
NotificationText NotificationText Description
NotificationPriorityType NotificationPriorityType
NotificationPriority NotificationPriority
NotificationStatusObject NotificationStatusObject
IsBusinessPurposeCompleted IsBusinessPurposeCompleted Purpose Completed
IsDeleted IsDeleted TRUE
NotificationCatalog NotificationCatalog
NotificationCodeGroup NotificationCodeGroup
NotificationCodeID NotificationCodeID
NotificationComplaintQuantity NotificationComplaintQuantity
NotificationExternalQty NotificationExternalQty
NotificationQuantityUnit NotificationQuantityUnit
NotificationReportingDate NotificationReportingDate
NotificationCompletionDate NotificationCompletionDate Completion Date
NotificationRequiredStartDate NotificationRequiredStartDate
NotificationRequiredStartTime NotificationRequiredStartTime
NotificationRequiredEndDate NotificationRequiredEndDate
NotificationRequiredEndTime NotificationRequiredEndTime
NotificationTimeZone NotificationTimeZone Notif.Time.Zone
Supplier Supplier Supplier
Customer Customer Sold-to Party
Material Material Vehicle Model
MaterialGroup MaterialGroup Product Group
Plant Plant Valuation Area
PurchasingDocument PurchasingDocument Purchasing Document
PurchasingDocumentItem PurchasingDocumentItem Purchasing Doc. Item
PurchasingOrganization PurchasingOrganization Purchasing Organization
PurchasingGroup PurchasingGroup Purchasing Group
ActiveDivision ActiveDivision
SalesOrganization SalesOrganization Sales Organization
DistributionChannel DistributionChannel RefDistCh-Cust/Mat.
WBSElementInternalID WBSElementInternalID WBS Internal ID
WorkCenterTypeCode WorkCenterTypeCode Object Type
MainWorkCenterInternalID MainWorkCenterInternalID Work Center
MainWorkCenterPlant MainWorkCenterPlant Plnt WorkCenter
InspectionLot InspectionLot Inspection Lot
Batch Batch Lot No.
MaterialDocumentYear MaterialDocumentYear Material Document Year
MaterialDocument MaterialDocument Material Doc.
MaterialDocumentItem MaterialDocumentItem Material Document Item
CreatedByUser CreatedByUser User Name
CreationDate CreationDate Time Stamp
LastChangedByUser LastChangedByUser User Name
LastChangedDate LastChangedDate Created On
ChangedDateTime ChangedDateTime Time Stamp
_QltyNotificationLongText _QltyNotificationLongText
_QltyNotificationPartner _QltyNotificationPartner
_QualityNotificationItem _QualityNotificationItem
_QltyNotificationTask _QltyNotificationTask

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_QltyNotificationTP.
-- 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_QltyNotificationTP AS
SELECT
  QualityNotification,
  MasterLanguage,
  NotificationOrigin,
  NotificationType,
  NotifProcessingPhase,
  NotificationText,
  NotificationPriorityType,
  NotificationPriority,
  NotificationStatusObject,
  IsBusinessPurposeCompleted,
  IsDeleted,
  NotificationCatalog,
  NotificationCodeGroup,
  NotificationCodeID,
  NotificationComplaintQuantity,
  NotificationExternalQty,
  NotificationQuantityUnit,
  NotificationReportingDate,
  NotificationCompletionDate,
  NotificationRequiredStartDate,
  NotificationRequiredStartTime,
  NotificationRequiredEndDate,
  NotificationRequiredEndTime,
  NotificationTimeZone,
  Supplier,
  Customer,
  Material,
  MaterialGroup,
  Plant,
  PurchasingDocument,
  PurchasingDocumentItem,
  PurchasingOrganization,
  PurchasingGroup,
  ActiveDivision,
  SalesOrganization,
  DistributionChannel,
  WBSElementInternalID,
  WorkCenterTypeCode,
  MainWorkCenterInternalID,
  MainWorkCenterPlant,
  InspectionLot,
  Batch,
  MaterialDocumentYear,
  MaterialDocument,
  MaterialDocumentItem,
  CreatedByUser,
  CreationDate,
  LastChangedByUser,
  LastChangedDate,
  ChangedDateTime
FROM I_QltyNotification AS Notification
LEFT OUTER JOIN E_QualityNotification AS _Extension ON QualityNotification = _Extension.QualityNotification  -- association [1..1]
LEFT OUTER JOIN R_QltyNotificationLongTextTP AS _QltyNotificationLongText ON /* condition not available in parsed metadata */  -- association [0..*]
LEFT OUTER JOIN R_QualityNotificationPartnerTP AS _QltyNotificationPartner ON /* condition not available in parsed metadata */  -- association [0..*]
LEFT OUTER JOIN R_QualityNotificationItemTP AS _QualityNotificationItem ON /* condition not available in parsed metadata */  -- association [0..*]
LEFT OUTER JOIN R_QltyNotificationTaskTP AS _QltyNotificationTask ON /* condition not available in parsed metadata */  -- association [0..*]
;