/ssb/Core_Indicators

DDL: /SSB/CORE_INDICATORS SQL: /SSB/_CINS Type: view

SSB: Core Indicators

/ssb/Core_Indicators is a CDS View that provides data about "SSB: Core Indicators" in SAP S/4HANA. It reads from 2 data sources (/ssb/union_Indicators, /SSB/UNION_REPORT_CONFIGS) and exposes 18 fields with key fields id, is_active. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
/ssb/union_Indicators Union_Indicator from
/SSB/UNION_REPORT_CONFIGS UnionReportConfig left_outer

Associations (1)

CardinalityTargetAliasCondition
[*] /ssb/Core_Indicator_Texts _Text $projection.id = _Text.id and $projection.is_active = _Text.is_active

Annotations (9)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName /SSB/_CINS view
EndUserText.label SSB: Core Indicators view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (18)

KeyFieldSource TableSource FieldDescription
KEY id /ssb/union_Indicators id WorklistID
KEY is_active /ssb/union_Indicators is_active Truth Value
namespace /ssb/union_Indicators namespace Parameter Namespace
type /ssb/union_Indicators type Worklist Type
goal_type /ssb/union_Indicators goal_type Goal Type
odata_url /ssb/union_Indicators odata_url ODATA URL
view_name /ssb/union_Indicators view_name View Name
column_name /ssb/union_Indicators column_name Column Name
owner_name /ssb/union_Indicators owner_name Name
owner_e_mail /ssb/union_Indicators owner_e_mail E-Mail Addr.
owner_id /ssb/union_Indicators owner_id User ID
created_by /ssb/union_Indicators created_by Version Created By
created_on /ssb/union_Indicators created_on Variant created on
changed_by /ssb/union_Indicators changed_by User Name
changed_on /ssb/union_Indicators changed_on Variant Changed on
action /ssb/union_Indicators action User action
description /ssb/union_Indicators description Well Code Des.
_Text _Text

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_Indicators.
-- 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/_CINS

CREATE VIEW /ssb/Core_Indicators AS
SELECT
  Union_Indicator.id AS id,
  Union_Indicator.is_active AS is_active,
  Union_Indicator.namespace AS namespace,
  Union_Indicator.type AS type,
  Union_Indicator.goal_type AS goal_type,
  Union_Indicator.odata_url AS odata_url,
  Union_Indicator.view_name AS view_name,
  Union_Indicator.column_name AS column_name,
  Union_Indicator.owner_name AS owner_name,
  Union_Indicator.owner_e_mail AS owner_e_mail,
  Union_Indicator.owner_id AS owner_id,
  Union_Indicator.created_by AS created_by,
  Union_Indicator.created_on AS created_on,
  Union_Indicator.changed_by AS changed_by,
  Union_Indicator.changed_on AS changed_on,
  Union_Indicator.action AS action,
  Union_Indicator.description AS description
FROM /ssb/union_Indicators AS Union_Indicator
LEFT OUTER JOIN /SSB/UNION_REPORT_CONFIGS AS UnionReportConfig ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN /ssb/Core_Indicator_Texts AS _Text ON id = _Text.id AND is_active = _Text.is_active  -- association [*]
;