/SSB/RPT_CONF_S

Transparent Table System Table (SAP only)

Client Independent Config for Report

/SSB/RPT_CONF_S is an SAP database table in S/4HANA. Client Independent Config for Report. It contains 22 fields. 5 CDS views read from this table.

CDS Views using this table (5)

ViewTypeJoinVDMDescription
/SSB/COUNT_ALL_REPORTS view from All Generic reports
/SSB/COUNT_ALP_REPORT view from Count for ALP Reports
/SSB/REPORT view from All reports which are customer edited
/SSB/REPORT_EXTENSION view from All reports which are customer edited
/SSB/UNION_REPORT_CONFIGS view from Report Config after union of tables

Fields (22)

KeyField Data ElementDescription DomainTypeLength
KEY id /ssb/id Identifier
KEY is_active /ssb/is_active Is Active
type /ssb/report_type Report T.
evaluation_id /ssb/id Identifier
scaling /ssb/scaling Scaling
odata_url /ssb/odata_url ODATA URL
odata_entityset /ssb/odata_entityset Entityset
cds_view_name /ssb/cds_view_name CDS View
column_name /ssb/column_name Column
decimal_precision /ssb/decimal_precision Decimal Precision
owner_name /ssb/owner_name Name
owner_e_mail /ssb/owner_e_mail E-Mail Addr.
owner_id /ssb/owner_id User ID
created_by /ssb/created_by_id Created By
created_on /ssb/created_on Created On
changed_by /ssb/changed_by_id Changed By
changed_on /ssb/changed_on Changed On
application_component /ssb/applcomp Appl. Component
annotation_model /ssb/annotation_model Annotation Model
cds_annotation_name /ssb/annotation_model Annotation Model
cds_annotation_version /ssb/annotation_version Annotation Version
facet_threshold /ssb/facet_limit Facet threshold

Derived SQL schema, reconstructed from the indexed DDIC field metadata (field names, types, lengths and key flags) — a functional representation, not the verbatim SAP source.

-- Client Independent Config for Report
-- Category TRANSPARENT · Delivery class S
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE /SSB/RPT_CONF_S (
    ID,                      -- Identifier [/ssb/id]
    IS_ACTIVE,               -- Is Active [/ssb/is_active]
    TYPE,                    -- Report T. [/ssb/report_type]
    EVALUATION_ID,           -- Identifier [/ssb/id]
    SCALING,                 -- Scaling [/ssb/scaling]
    ODATA_URL,               -- ODATA URL [/ssb/odata_url]
    ODATA_ENTITYSET,         -- Entityset [/ssb/odata_entityset]
    CDS_VIEW_NAME,           -- CDS View [/ssb/cds_view_name]
    COLUMN_NAME,             -- Column [/ssb/column_name]
    DECIMAL_PRECISION,       -- Decimal Precision [/ssb/decimal_precision]
    OWNER_NAME,              -- Name [/ssb/owner_name]
    OWNER_E_MAIL,            -- E-Mail Addr. [/ssb/owner_e_mail]
    OWNER_ID,                -- User ID [/ssb/owner_id]
    CREATED_BY,              -- Created By [/ssb/created_by_id]
    CREATED_ON,              -- Created On [/ssb/created_on]
    CHANGED_BY,              -- Changed By [/ssb/changed_by_id]
    CHANGED_ON,              -- Changed On [/ssb/changed_on]
    APPLICATION_COMPONENT,   -- Appl. Component [/ssb/applcomp]
    ANNOTATION_MODEL,        -- Annotation Model [/ssb/annotation_model]
    CDS_ANNOTATION_NAME,     -- Annotation Model [/ssb/annotation_model]
    CDS_ANNOTATION_VERSION,  -- Annotation Version [/ssb/annotation_version]
    FACET_THRESHOLD,         -- Facet threshold [/ssb/facet_limit]
    PRIMARY KEY (ID, IS_ACTIVE)
);