DHCDC_OBJPERFSTG

Transparent Table Application Table

Performance Settings for Object

DHCDC_OBJPERFSTG is an SAP database table in S/4HANA. Performance Settings for Object. It contains 11 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
DHADM_MON_ObjectPerformanceStg view_entity from Object Performance Settings for Queue

Fields (11)

KeyField Data ElementDescription DomainTypeLength
KEY client mandt Client
KEY subscriber_id dhcdc_subscriber_id Subscriber ID
KEY objname ddobjname Object Name
KEY objtype trobjtype Object Type
maxrecdportnrepl dhcdc_max_records_portion Max Record Portion
replparlznmode dhcdc_repl_parlzn_mode Ranges
max_acp_jobs dhcdc_max_acp_jobs Max. ACP Jobs
prio_code dhcdc_prio_code Priority Code
calculation_mode dhcdc_calculation_mode Calculation mode
cdc_hints_upsert abap.sstring
cdc_hints_delete abap.sstring

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.

-- Performance Settings for Object
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE DHCDC_OBJPERFSTG (
    CLIENT,            -- Client [mandt]
    SUBSCRIBER_ID,     -- Subscriber ID [dhcdc_subscriber_id]
    OBJNAME,           -- Object Name [ddobjname]
    OBJTYPE,           -- Object Type [trobjtype]
    MAXRECDPORTNREPL,  -- Max Record Portion [dhcdc_max_records_portion]
    REPLPARLZNMODE,    -- Ranges [dhcdc_repl_parlzn_mode]
    MAX_ACP_JOBS,      -- Max. ACP Jobs [dhcdc_max_acp_jobs]
    PRIO_CODE,         -- Priority Code [dhcdc_prio_code]
    CALCULATION_MODE,  -- Calculation mode [dhcdc_calculation_mode]
    CDC_HINTS_UPSERT,  -- abap.sstring
    CDC_HINTS_DELETE,  -- abap.sstring
    PRIMARY KEY (CLIENT, SUBSCRIBER_ID, OBJNAME, OBJTYPE)
);