/SSB/CORE_SAC_STORY_TILES_TEXT

DDL: /SSB/CORE_SAC_STORY_TILES_TEXT SQL: /SSB/_CSACTILTX Type: view

Core SAC Story tiles text with lang code

/SSB/CORE_SAC_STORY_TILES_TEXT is a CDS View that provides data about "Core SAC Story tiles text with lang code" in SAP S/4HANA. It reads from 2 data sources (/ssb/Languages, /ssb/sactilet_s) and exposes 6 fields with key fields id, chip_id, language.

Data Sources (2)

SourceAliasJoin Type
/ssb/Languages /ssb/Languages inner
/ssb/sactilet_s SACTileTexts from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName /SSB/_CSACTILTX view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Core SAC Story tiles text with lang code view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY id id WorklistID
KEY chip_id chip_id Identifier
KEY language /ssb/sactilet_s language Report Text Language
title title View Title
subtitle subtitle Subtitle
LanguageISOCode LanguageISOCode Language ISO Code

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 /SSB/CORE_SAC_STORY_TILES_TEXT.
-- 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: /SSB/_CSACTILTX

CREATE VIEW /SSB/CORE_SAC_STORY_TILES_TEXT AS
SELECT
  id,
  chip_id,
  SACTileTexts.language AS language,
  title,
  subtitle,
  LanguageISOCode
FROM /ssb/sactilet_s AS SACTileTexts
INNER JOIN /ssb/Languages ON /* join condition not captured in parsed metadata */
;