R_QltyNotificationLongTextTP

DDL: R_QLTYNOTIFICATIONLONGTEXTTP Type: view_entity TRANSACTIONAL

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)

SourceAliasJoin Type
I_QltyNotificationLongText _QltyNotificationLongText from

Annotations (10)

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

KeyFieldSource TableSource FieldDescription
KEY QualityNotification I_QltyNotificationLongText QualityNotification Notification
KEY LongTextInternalNumber I_QltyNotificationLongText ItemCounter Sequence
KEY Language I_QltyNotificationLongText Language Report Text Language
LongTextID I_QltyNotificationLongText LongTextID Text ID
QltyNotificationLongText I_QltyNotificationLongText QltyNotificationLongText Trusted Site Content
MimeType
LongTextCreatedByUser I_QltyNotificationLongText LongTextCreatedByUser Version Created By
LongTextCreatedAt I_QltyNotificationLongText LongTextCreatedAt Uploaded On
LongTextLastChangedByUser I_QltyNotificationLongText LongTextLastChangedByUser User Name
LongTextLastChangedAt I_QltyNotificationLongText LongTextLastChangedAt Timestamp
_QltyNotification _QltyNotification
_Language I_QltyNotificationLongText _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_QltyNotificationLongTextTP.
-- 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_QltyNotificationLongTextTP AS
SELECT
  _QltyNotificationLongText.QualityNotification AS QualityNotification,
  _QltyNotificationLongText.ItemCounter AS LongTextInternalNumber,
  _QltyNotificationLongText.Language AS Language,
  _QltyNotificationLongText.LongTextID AS LongTextID,
  _QltyNotificationLongText.QltyNotificationLongText AS QltyNotificationLongText,
  cast( _QltyNotificationLongText.MimeType as w3conttype ) AS MimeType,
  _QltyNotificationLongText.LongTextCreatedByUser AS LongTextCreatedByUser,
  _QltyNotificationLongText.LongTextCreatedAt AS LongTextCreatedAt,
  _QltyNotificationLongText.LongTextLastChangedByUser AS LongTextLastChangedByUser,
  _QltyNotificationLongText.LongTextLastChangedAt AS LongTextLastChangedAt,
  _QltyNotificationLongText._Language AS _Language
FROM I_QltyNotificationLongText AS _QltyNotificationLongText
;