I_NotificationCatalogText

DDL: I_NOTIFICATIONCATALOGTEXT SQL: INOTIFCATTXT Type: view BASIC

Notification Catalog - Text

I_NotificationCatalogText is a Basic CDS View that provides data about "Notification Catalog - Text" in SAP S/4HANA. It reads from 1 data source (tq15t) and exposes 4 fields with key fields Language, NotificationCatalog. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
tq15t tq15t from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_NotificationCatalog _NotificationCatalog $projection.NotificationCatalog = _NotificationCatalog.NotificationCatalog

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName INOTIFCATTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey NotificationCatalog view
ObjectModel.dataCategory #TEXT view
EndUserText.label Notification Catalog - Text view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language tq15t sprache Language
KEY NotificationCatalog tq15t katalogart Catalog
InspSpecAdditionalCatalogText tq15t katalogtxt Short text
_NotificationCatalog _NotificationCatalog

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_NotificationCatalogText.
-- 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: INOTIFCATTXT

CREATE VIEW I_NotificationCatalogText AS
SELECT
  tq15t.sprache AS Language,
  tq15t.katalogart AS NotificationCatalog,
  tq15t.katalogtxt AS InspSpecAdditionalCatalogText
FROM tq15t
LEFT OUTER JOIN I_NotificationCatalog AS _NotificationCatalog ON NotificationCatalog = _NotificationCatalog.NotificationCatalog  -- association [1..1]
;