/SSB/INDICATOR_S

Transparent Table System Table (SAP only)

Client Independent table for KPIs

/SSB/INDICATOR_S is an SAP database table in S/4HANA. Client Independent table for KPIs. It contains 21 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
/SSB/COUNT_UNION_EVALUATIONS view inner Union of KPIs for count
/ssb/union_Indicators view from Union of CI and CD tables for KPIs

Fields (21)

KeyField Data ElementDescription DomainTypeLength
KEY id /SSB/ID Identifier
KEY is_active /SSB/IS_ACTIVE Is Active
type /SSB/INDICATOR_TYPE Indicator T.
goal_type /SSB/GOAL_TYPE Goal Type
odata_url /SSB/ODATA_URL ODATA URL
odata_entityset /SSB/ODATA_ENTITYSET Entityset
view_name /SSB/VIEW_NAME View
cds_view_name /SSB/CDS_VIEW_NAME CDS View
column_name /SSB/COLUMN_NAME Column
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
odata_property /SSB/ODATA_PROPERTY Property
semantic_object /SSB/SEMANTIC_OBJECT Semantic Obj.
action /SSB/ACTION Action
additional_info /SSB/ADDITIONAL_INFO Additional Info
application_component /SSB/APPLCOMP Appl. Component

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 table for KPIs
-- Category TRANSPARENT · Delivery class S
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE /SSB/INDICATOR_S (
    ID,                     -- Identifier [/SSB/ID]
    IS_ACTIVE,              -- Is Active [/SSB/IS_ACTIVE]
    TYPE,                   -- Indicator T. [/SSB/INDICATOR_TYPE]
    GOAL_TYPE,              -- Goal Type [/SSB/GOAL_TYPE]
    ODATA_URL,              -- ODATA URL [/SSB/ODATA_URL]
    ODATA_ENTITYSET,        -- Entityset [/SSB/ODATA_ENTITYSET]
    VIEW_NAME,              -- View [/SSB/VIEW_NAME]
    CDS_VIEW_NAME,          -- CDS View [/SSB/CDS_VIEW_NAME]
    COLUMN_NAME,            -- Column [/SSB/COLUMN_NAME]
    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]
    ODATA_PROPERTY,         -- Property [/SSB/ODATA_PROPERTY]
    SEMANTIC_OBJECT,        -- Semantic Obj. [/SSB/SEMANTIC_OBJECT]
    ACTION,                 -- Action [/SSB/ACTION]
    ADDITIONAL_INFO,        -- Additional Info [/SSB/ADDITIONAL_INFO]
    APPLICATION_COMPONENT,  -- Appl. Component [/SSB/APPLCOMP]
    PRIMARY KEY (ID, IS_ACTIVE)
);