R_QltyNotifTaskLongTextTP
Quality Notification Task Long Text - TP
R_QltyNotifTaskLongTextTP is a Transactional CDS View that provides data about "Quality Notification Task Long Text - TP" in SAP S/4HANA. It reads from 1 data source (I_QltyNotificationTaskLongText) and exposes 14 fields with key fields QualityNotification, NotificationTask, Language, LongTextInternalNumber. It has 1 association to related views. Part of development package VDM_QM_NOTIFICATION.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_QltyNotificationTaskLongText | _QltyNotificationTaskLongText | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | R_QltyNotificationTP | _QltyNotification | $projection.QualityNotification = _QltyNotification.QualityNotification |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | Quality Notification Task Long Text - TP | view | |
| VDM.viewType | #TRANSACTIONAL | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.representativeKey | LongTextInternalNumber | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (14)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | QualityNotification | I_QltyNotificationTaskLongText | QualityNotification | |
| KEY | NotificationTask | I_QltyNotificationTaskLongText | NotificationTask | |
| KEY | Language | I_QltyNotificationTaskLongText | Language | |
| KEY | LongTextInternalNumber | I_QltyNotificationTaskLongText | ItemCounter | |
| LongTextID | I_QltyNotificationTaskLongText | LongTextID | ||
| QltyNotificationTaskLongText | I_QltyNotificationTaskLongText | QltyNotificationTaskLongText | ||
| MimeType | ||||
| LongTextCreatedByUser | I_QltyNotificationTaskLongText | LongTextCreatedByUser | ||
| LongTextCreatedAt | I_QltyNotificationTaskLongText | LongTextCreatedAt | ||
| LongTextLastChangedByUser | I_QltyNotificationTaskLongText | LongTextLastChangedByUser | ||
| LongTextLastChangedAt | I_QltyNotificationTaskLongText | LongTextLastChangedAt | ||
| _QltyNotification | _QltyNotification | |||
| _QltyNotificationTask | _QltyNotificationTask | |||
| _Language | I_QltyNotificationTaskLongText | _Language |
@AbapCatalog.viewEnhancementCategory: [#PROJECTION_LIST]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Quality Notification Task Long Text - TP'
@VDM: {
viewType: #TRANSACTIONAL,
lifecycle.contract.type: #SAP_INTERNAL_API
}
@ObjectModel: {
usageType: {
serviceQuality: #C,
sizeCategory: #L,
dataClass: #TRANSACTIONAL
},
representativeKey: 'LongTextInternalNumber',
dataCategory: #TEXT
}
@Metadata.ignorePropagatedAnnotations: true
define view entity R_QltyNotifTaskLongTextTP
as select from I_QltyNotificationTaskLongText as _QltyNotificationTaskLongText
association [1..1] to R_QltyNotificationTP as _QltyNotification on $projection.QualityNotification = _QltyNotification.QualityNotification
association to parent R_QltyNotificationTaskTP as _QltyNotificationTask on $projection.QualityNotification = _QltyNotificationTask.QualityNotification
and $projection.NotificationTask = _QltyNotificationTask.NotificationTask
{
@ObjectModel.foreignKey.association: '_QltyNotification'
key _QltyNotificationTaskLongText.QualityNotification,
@ObjectModel.foreignKey.association: '_QltyNotificationTask'
key _QltyNotificationTaskLongText.NotificationTask,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key _QltyNotificationTaskLongText.Language,
key _QltyNotificationTaskLongText.ItemCounter as LongTextInternalNumber,
_QltyNotificationTaskLongText.LongTextID,
@Semantics.text: true
_QltyNotificationTaskLongText.QltyNotificationTaskLongText,
cast( _QltyNotificationTaskLongText.MimeType as w3conttype ) as MimeType,
// Admin Data
@Semantics.user.createdBy: true
_QltyNotificationTaskLongText.LongTextCreatedByUser,
@Semantics.systemDate.createdAt: true
_QltyNotificationTaskLongText.LongTextCreatedAt,
@Semantics.user.lastChangedBy: true
_QltyNotificationTaskLongText.LongTextLastChangedByUser,
@Semantics.systemDate.lastChangedAt: true
_QltyNotificationTaskLongText.LongTextLastChangedAt,
/* Associations */
_QltyNotification,
_QltyNotificationTask,
_QltyNotificationTaskLongText._Language
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- 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