/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. 7 CDS views read from this table.

CDS Views using this table (7)

ViewTypeJoinVDMDescription
/SSB/ALL_VIEWS_USED_IN_SSB view union_all Views used already in SSB
/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/RUNTIME_REPORT_CONFIGS view from Reports data for App descriptor
/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)
);