/SSB/CORE_REPORT_FILTERS

DDL: /SSB/CORE_REPORT_FILTERS SQL: /SSB/CRPTFILTR Type: view

Filters for Report Configurations

/SSB/CORE_REPORT_FILTERS is a CDS View that provides data about "Filters for Report Configurations" in SAP S/4HANA. It reads from 2 data sources (/ssb/eval_filtrs, /ssb/rpt_filters) and exposes 14 fields with key fields id, is_active, type, is_active, type.

Data Sources (2)

SourceAliasJoin Type
/ssb/eval_filtrs /ssb/eval_filtrs union
/ssb/rpt_filters /ssb/rpt_filters from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName /SSB/CRPTFILTR view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
EndUserText.label Filters for Report Configurations view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY id id WorklistID
KEY is_active is_active Truth Value
KEY type type Worklist Type
name name Zone name
value_1 value_1 Value
operator operator Type of OPTION component in row type of a Ranges type
value_2 value_2 Value
KEY is_active is_active Truth Value
KEY type type Worklist Type
name name Zone name
value_1 value_1 Value
operator operator Type of OPTION component in row type of a Ranges type
value_2 value_2 Value
filtersource

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_REPORT_FILTERS.
-- 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/CRPTFILTR

CREATE VIEW /SSB/CORE_REPORT_FILTERS AS
SELECT
  id,
  is_active,
  type,
  name,
  value_1,
  operator,
  value_2,
  'KPI_FILTER' AS filtersource
FROM /ssb/rpt_filters
-- UNION with additional select branch(es): /ssb/eval_filtrs
;