Deprecated
This CDS view is deprecated in S/4HANA. View all deprecated CDS views →

C_SitnDefNotifTextTP

DDL: C_SITNDEFNOTIFTEXTTP SQL: CSITNOTIFTEXTTP Type: view CONSUMPTION

Notification Text

C_SitnDefNotifTextTP is a Consumption CDS View that provides data about "Notification Text" in SAP S/4HANA. It reads from 1 data source (I_SitnDefNotifTextTP) and exposes 11 fields with key fields SitnDefinitionID, SitnDefNotificationID, Language. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_SitnDefNotifTextTP NotificationText from

Associations (3)

CardinalityTargetAliasCondition
[1..1] C_SitnDefinitionTP _Definition $projection.SitnDefinitionID = _Definition.SitnDefinitionID
[1..1] C_SitnDefNotifTP _Notification $projection.SitnDefinitionID = _Notification.SitnDefinitionID and $projection.SitnDefNotificationID = _Notification.SitnDefNotificationID
[1..1] C_SitnDefLanguage _Language $projection.LanguageForEdit = _Language.Language

Annotations (19)

NameValueLevelField
AbapCatalog.sqlViewName CSITNOTIFTEXTTP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.status #DEPRECATED view
ObjectModel.transactionalProcessingDelegated true view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey SitnDefinitionID view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.algorithm #SESSION_VARIABLE view
UI.headerInfo.typeName Situation Notification Text view
UI.headerInfo.typeNamePlural Situation Notification Texts view
EndUserText.label Notification Text view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY SitnDefinitionID I_SitnDefNotifTextTP SitnDefinitionID Situation Type ID
KEY SitnDefNotificationID I_SitnDefNotifTextTP SitnDefNotificationID Situation Notif ID
KEY Language Language Report Text Language
LanguageForEdit LanguageForEdit Original Language
SitnNotifPublicText I_SitnDefNotifTextTP SitnNotifPublicText Public Notif. Text
SitnNotifSensitiveParsedText I_SitnDefNotifTextTP SitnNotifSensitiveParsedText
SitnNotifSensitiveText I_SitnDefNotifTextTP SitnNotifSensitiveText Secure Text
SitnNotifSensitiveTextIsParsed I_SitnDefNotifTextTP SitnNotifSensitiveTextIsParsed
_Definition _Definition
_Notification _Notification
_Language _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 C_SitnDefNotifTextTP.
-- 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.
-- SQL view name: CSITNOTIFTEXTTP

CREATE VIEW C_SitnDefNotifTextTP AS
SELECT
  NotificationText.SitnDefinitionID AS SitnDefinitionID,
  NotificationText.SitnDefNotificationID AS SitnDefNotificationID,
  Language,
  LanguageForEdit,
  NotificationText.SitnNotifPublicText AS SitnNotifPublicText,
  NotificationText.SitnNotifSensitiveParsedText AS SitnNotifSensitiveParsedText,
  NotificationText.SitnNotifSensitiveText AS SitnNotifSensitiveText,
  NotificationText.SitnNotifSensitiveTextIsParsed AS SitnNotifSensitiveTextIsParsed
FROM I_SitnDefNotifTextTP AS NotificationText
LEFT OUTER JOIN C_SitnDefinitionTP AS _Definition ON SitnDefinitionID = _Definition.SitnDefinitionID  -- association [1..1]
LEFT OUTER JOIN C_SitnDefNotifTP AS _Notification ON SitnDefinitionID = _Notification.SitnDefinitionID AND SitnDefNotificationID = _Notification.SitnDefNotificationID  -- association [1..1]
LEFT OUTER JOIN C_SitnDefLanguage AS _Language ON LanguageForEdit = _Language.Language  -- association [1..1]
;