/SSB/RUNTIME_REPORT_CONFIGS

DDL: /SSB/RUNTIME_REPORT_CONFIGS SQL: /SSB/RRPTCONF Type: view

Reports data for App descriptor

/SSB/RUNTIME_REPORT_CONFIGS is a CDS View that provides data about "Reports data for App descriptor" in SAP S/4HANA. It reads from 3 data sources (/ssb/rpt_conf, /ssb/rpt_conf, /ssb/rpt_conf_s) and exposes 13 fields with key fields id, is_active, is_active.

Data Sources (3)

SourceAliasJoin Type
/ssb/rpt_conf _CustomerEditrep left_outer
/ssb/rpt_conf CustomerReports union_all
/ssb/rpt_conf_s Reports from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName /SSB/RRPTCONF view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.usageType.serviceQuality #D view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Reports data for App descriptor view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY id /ssb/rpt_conf_s id WorklistID
KEY is_active /ssb/rpt_conf_s is_active Truth Value
namespace Parameter Namespace
type /ssb/rpt_conf_s type Worklist Type
odata_url /ssb/rpt_conf_s odata_url ODATA URL
ref_rep_id /ssb/rpt_conf ref_id Technical Object
id WorklistID
KEY is_active /ssb/rpt_conf is_active Truth Value
namespace namespace Parameter Namespace
type /ssb/rpt_conf type Worklist Type
odata_url /ssb/rpt_conf odata_url ODATA URL
ref_rep_id /ssb/rpt_conf ref_id Technical Object
isCustomerEdited 0

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/RUNTIME_REPORT_CONFIGS.
-- 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/RRPTCONF

CREATE VIEW /SSB/RUNTIME_REPORT_CONFIGS AS
SELECT
  Reports.id AS id,
  Reports.is_active AS is_active,
  'S' AS namespace,
  Reports.type AS type,
  Reports.odata_url AS odata_url,
  _CustomerEditrep.ref_id AS ref_rep_id,
  0 AS isCustomerEdited
FROM /ssb/rpt_conf_s AS Reports
LEFT OUTER JOIN /ssb/rpt_conf AS _CustomerEditrep ON /* join condition not captured in parsed metadata */
-- UNION ALL with additional select branch(es): /ssb/rpt_conf
;