/SSB/UNION_REP_CHIPS

DDL: /SSB/UNION_REP_CHIPS SQL: /SSB/_UREPCHIPS Type: view

Union of SAP and Customer Report Chips

/SSB/UNION_REP_CHIPS is a CDS View that provides data about "Union of SAP and Customer Report Chips" in SAP S/4HANA. It reads from 3 data sources (/ssb/rep_chips, /ssb/rep_chips_s, /SSB/SAPCLIENT) and exposes 27 fields with key fields id, report_id, is_active, report_id, is_active.

Data Sources (3)

SourceAliasJoin Type
/ssb/rep_chips /ssb/rep_chips union_all
/ssb/rep_chips_s /ssb/rep_chips_s from
/SSB/SAPCLIENT SC inner

Annotations (7)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName /SSB/_UREPCHIPS view
EndUserText.label Union of SAP and Customer Report Chips view
ObjectModel.usageType.serviceQuality #P view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (27)

KeyFieldSource TableSource FieldDescription
KEY id id WorklistID
KEY report_id report_id Report ID
KEY is_active Truth Value
namespace
catalog_id catalog_id UUID
variant_id Variant Id
changed_by changed_by User Name
changed_on changed_on Variant Changed on
created_by created_by Version Created By
created_on created_on Variant created on
AppDescriptorID App ID
fiori_id
chip_config chip_config Chip Config
type
KEY report_id report_id Report ID
KEY is_active Truth Value
namespace
catalog_id catalog_id UUID
variant_id variant_id Variant Id
changed_by changed_by User Name
changed_on changed_on Variant Changed on
created_by created_by Version Created By
created_on created_on Variant created on
AppDescriptorID app_descriptor_item_id App ID
fiori_id
chip_config chip_config Chip Config
type

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/UNION_REP_CHIPS.
-- 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/_UREPCHIPS

CREATE VIEW /SSB/UNION_REP_CHIPS AS
SELECT
  id,
  report_id,
  cast(is_active as abap.numc( 1 )) AS is_active,
  'S' AS namespace,
  catalog_id,
  coalesce( variant_id, '' ) AS variant_id,
  changed_by,
  changed_on,
  created_by,
  created_on,
  cast('' as /ssb/app_descrp_id) AS AppDescriptorID,
  coalesce( fiori_id, '' ) AS fiori_id,
  chip_config,
  coalesce( type, 'ST' ) AS type
FROM /ssb/rep_chips_s
INNER JOIN /SSB/SAPCLIENT AS SC ON /* join condition not captured in parsed metadata */
-- UNION ALL with additional select branch(es): /ssb/rep_chips
;