R_QltyNotificationTP
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)
| Source | Alias | Join Type |
|---|---|---|
| I_QltyNotification | Notification | from |
Associations (5)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [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)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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..*]
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA