/ssb/Core_Associations

DDL: /SSB/CORE_ASSOCIATIONS SQL: /ssb/_CAssocs Type: view

SSB: Core Associations of KPIs

/ssb/Core_Associations is a CDS View that provides data about "SSB: Core Associations of KPIs" in SAP S/4HANA. It reads from 1 data source (/ssb/union_Associations) and exposes 7 fields with key fields namespace, is_active.

Data Sources (1)

SourceAliasJoin Type
/ssb/union_Associations /ssb/union_Associations from

Annotations (9)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName /ssb/_CAssocs view
EndUserText.label SSB: Core Associations of KPIs 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 (7)

KeyFieldSource TableSource FieldDescription
KEY namespace namespace Parameter Namespace
KEY is_active Truth Value
type type Worklist Type
created_by created_by Version Created By
created_on created_on Variant created on
changed_by changed_by User Name
changed_on changed_on Variant Changed on

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_Associations.
-- 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/_CAssocs

CREATE VIEW /ssb/Core_Associations AS
SELECT
  namespace,
  cast(is_active as abap.numc( 1 )) AS is_active,
  type,
  created_by,
  created_on,
  changed_by,
  changed_on
FROM /ssb/union_Associations
;