R_QltyNotifTaskLongTextTP

DDL: R_QLTYNOTIFTASKLONGTEXTTP Type: view_entity TRANSACTIONAL

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.

Data Sources (1)

SourceAliasJoin Type
I_QltyNotificationTaskLongText _QltyNotificationTaskLongText from

Associations (1)

CardinalityTargetAliasCondition
[1..1] R_QltyNotificationTP _QltyNotification $projection.QualityNotification = _QltyNotification.QualityNotification

Annotations (10)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
KEY QualityNotification I_QltyNotificationTaskLongText QualityNotification Notification
KEY NotificationTask I_QltyNotificationTaskLongText NotificationTask Task
KEY Language I_QltyNotificationTaskLongText Language Report Text Language
KEY LongTextInternalNumber I_QltyNotificationTaskLongText ItemCounter Sequence
LongTextID I_QltyNotificationTaskLongText LongTextID Text ID
QltyNotificationTaskLongText I_QltyNotificationTaskLongText QltyNotificationTaskLongText Trusted Site Content
MimeType
LongTextCreatedByUser I_QltyNotificationTaskLongText LongTextCreatedByUser Version Created By
LongTextCreatedAt I_QltyNotificationTaskLongText LongTextCreatedAt Uploaded On
LongTextLastChangedByUser I_QltyNotificationTaskLongText LongTextLastChangedByUser User Name
LongTextLastChangedAt I_QltyNotificationTaskLongText LongTextLastChangedAt Timestamp
_QltyNotification _QltyNotification
_QltyNotificationTask _QltyNotificationTask
_Language I_QltyNotificationTaskLongText _Language

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_QltyNotifTaskLongTextTP.
-- 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_QltyNotifTaskLongTextTP AS
SELECT
  _QltyNotificationTaskLongText.QualityNotification AS QualityNotification,
  _QltyNotificationTaskLongText.NotificationTask AS NotificationTask,
  _QltyNotificationTaskLongText.Language AS Language,
  _QltyNotificationTaskLongText.ItemCounter AS LongTextInternalNumber,
  _QltyNotificationTaskLongText.LongTextID AS LongTextID,
  _QltyNotificationTaskLongText.QltyNotificationTaskLongText AS QltyNotificationTaskLongText,
  cast( _QltyNotificationTaskLongText.MimeType as w3conttype ) AS MimeType,
  _QltyNotificationTaskLongText.LongTextCreatedByUser AS LongTextCreatedByUser,
  _QltyNotificationTaskLongText.LongTextCreatedAt AS LongTextCreatedAt,
  _QltyNotificationTaskLongText.LongTextLastChangedByUser AS LongTextLastChangedByUser,
  _QltyNotificationTaskLongText.LongTextLastChangedAt AS LongTextLastChangedAt,
  _QltyNotificationTaskLongText._Language AS _Language
FROM I_QltyNotificationTaskLongText AS _QltyNotificationTaskLongText
LEFT OUTER JOIN R_QltyNotificationTP AS _QltyNotification ON QualityNotification = _QltyNotification.QualityNotification  -- association [1..1]
;