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

I_SitnDefNotifTextTP

DDL: I_SITNDEFNOTIFTEXTTP SQL: ISITNNOTIFTEXTTP Type: view TRANSACTIONAL

Notification Text

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

Data Sources (1)

SourceAliasJoin Type
I_SitnDefNotifText NotifText from

Associations (3)

CardinalityTargetAliasCondition
[1..1] I_SitnDefinitionTP _Definition $projection.SitnDefinitionID = _Definition.SitnDefinitionID
[1..1] I_SitnDefNotifTP _Notification $projection.SitnDefinitionID = _Notification.SitnDefinitionID and $projection.SitnDefNotificationID = _Notification.SitnDefNotificationID
[1..*] I_LanguageText _Language $projection.LanguageForEdit = _Language.LanguageName

Annotations (19)

NameValueLevelField
AbapCatalog.sqlViewName ISITNNOTIFTEXTTP view
AccessControl.authorizationCheck #CHECK view
AbapCatalog.preserveKey true view
EndUserText.label Notification Text view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.lifecycle.status #DEPRECATED view
ObjectModel.dataCategory #TEXT view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.representativeKey SitnDefinitionID view
ObjectModel.writeDraftPersistence SIT_D_NOTIF_T view
ObjectModel.modelCategory #BUSINESS_OBJECT view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY SitnDefinitionID I_SitnDefNotifText SitnDefinitionID Situation Type ID
KEY SitnDefNotificationID I_SitnDefNotifText SitnDefNotificationID Situation Notif ID
KEY Language I_SitnDefNotifText Language Report Text Language
LanguageForEdit I_SitnDefNotifText Language Report Text Language
SitnNotifSensitiveText Secure Text
SitnNotifSensitiveParsedText
SitnNotifPublicText I_SitnDefNotifText SitnNotifPublicText Public Text
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 I_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: ISITNNOTIFTEXTTP

CREATE VIEW I_SitnDefNotifTextTP AS
SELECT
  NotifText.SitnDefinitionID AS SitnDefinitionID,
  NotifText.SitnDefNotificationID AS SitnDefNotificationID,
  NotifText.Language AS Language,
  NotifText.Language AS LanguageForEdit,
  cast(NotifText.SitnNotifSensitiveText as char1024 ) AS SitnNotifSensitiveText,
  cast(NotifText.SitnNotifSensitiveText as char1024 ) AS SitnNotifSensitiveParsedText,
  NotifText.SitnNotifPublicText AS SitnNotifPublicText,
  cast( ' ' as boole_d) AS SitnNotifSensitiveTextIsParsed
FROM I_SitnDefNotifText AS NotifText
LEFT OUTER JOIN I_SitnDefinitionTP AS _Definition ON SitnDefinitionID = _Definition.SitnDefinitionID  -- association [1..1]
LEFT OUTER JOIN I_SitnDefNotifTP AS _Notification ON SitnDefinitionID = _Notification.SitnDefinitionID AND SitnDefNotificationID = _Notification.SitnDefNotificationID  -- association [1..1]
LEFT OUTER JOIN I_LanguageText AS _Language ON LanguageForEdit = _Language.LanguageName  -- association [1..*]
;