R_QltyNotificationLongTextTP
Quality Notification Long Text
R_QltyNotificationLongTextTP is a Transactional CDS View that provides data about "Quality Notification Long Text" in SAP S/4HANA. It reads from 1 data source (I_QltyNotificationLongText) and exposes 12 fields with key fields QualityNotification, LongTextInternalNumber, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_QltyNotificationLongText | _QltyNotificationLongText | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | Quality Notification Long Text | 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 (12)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | QualityNotification | I_QltyNotificationLongText | QualityNotification | |
| KEY | LongTextInternalNumber | I_QltyNotificationLongText | ItemCounter | |
| KEY | Language | I_QltyNotificationLongText | Language | |
| LongTextID | I_QltyNotificationLongText | LongTextID | ||
| QltyNotificationLongText | I_QltyNotificationLongText | QltyNotificationLongText | ||
| MimeType | ||||
| LongTextCreatedByUser | I_QltyNotificationLongText | LongTextCreatedByUser | ||
| LongTextCreatedAt | I_QltyNotificationLongText | LongTextCreatedAt | ||
| LongTextLastChangedByUser | I_QltyNotificationLongText | LongTextLastChangedByUser | ||
| LongTextLastChangedAt | I_QltyNotificationLongText | LongTextLastChangedAt | ||
| _QltyNotification | _QltyNotification | |||
| _Language | I_QltyNotificationLongText | _Language |
@AbapCatalog.viewEnhancementCategory: [#PROJECTION_LIST]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Quality Notification Long Text'
@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_QltyNotificationLongTextTP
as select from I_QltyNotificationLongText as _QltyNotificationLongText
association to parent R_QltyNotificationTP as _QltyNotification on $projection.QualityNotification = _QltyNotification.QualityNotification
{
@ObjectModel.foreignKey.association: '_QltyNotification'
key _QltyNotificationLongText.QualityNotification,
key _QltyNotificationLongText.ItemCounter as LongTextInternalNumber,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key _QltyNotificationLongText.Language,
_QltyNotificationLongText.LongTextID,
@Semantics.text: true
_QltyNotificationLongText.QltyNotificationLongText,
cast( _QltyNotificationLongText.MimeType as w3conttype ) as MimeType,
// Admin Data
@Semantics.user.createdBy: true
_QltyNotificationLongText.LongTextCreatedByUser,
@Semantics.systemDate.createdAt: true
_QltyNotificationLongText.LongTextCreatedAt,
@Semantics.user.lastChangedBy: true
_QltyNotificationLongText.LongTextLastChangedByUser,
@Semantics.systemDate.lastChangedAt: true
_QltyNotificationLongText.LongTextLastChangedAt,
// Associations
_QltyNotification,
_QltyNotificationLongText._Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_QLTYNOTIFICATIONLONGTEXT"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"R_QLTYNOTIFICATIONTP"
],
"BASE":
[
"I_QLTYNOTIFICATIONLONGTEXT"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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