PYT_D_ACTRESS

Transparent Table Application Table

PCC Activity List: ACTivity REcurrence SelectionS

PYT_D_ACTRESS is an SAP database table in S/4HANA. PCC Activity List: ACTivity REcurrence SelectionS. It contains 14 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
hrpy_pcc_activity_ee view from Activity Recurrence Employees

Fields (14)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY ref_id pyc_uuid PCC UUID
KEY package_id pyc_rpt_chain_id Report Chain ID
KEY obj_type pyd_par_type Parameter Type
KEY obj_id pyd_roid Result ID
tag pyt_act_tag Actress Tag
invalid pyd_indicator Indicator
excluded pyd_indicator Indicator
event_handler_reg pyd_indicator Indicator
to_be_repeated pyd_indicator Indicator
cr_user syuname User Name
cr_dt timestamp Time Stamp
lc_user syuname User Name
lc_dt timestamp Time Stamp

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.

-- PCC Activity List: ACTivity REcurrence SelectionS
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE PYT_D_ACTRESS (
    MANDT,              -- Client [mandt]
    REF_ID,             -- PCC UUID [pyc_uuid]
    PACKAGE_ID,         -- Report Chain ID [pyc_rpt_chain_id]
    OBJ_TYPE,           -- Parameter Type [pyd_par_type]
    OBJ_ID,             -- Result ID [pyd_roid]
    TAG,                -- Actress Tag [pyt_act_tag]
    INVALID,            -- Indicator [pyd_indicator]
    EXCLUDED,           -- Indicator [pyd_indicator]
    EVENT_HANDLER_REG,  -- Indicator [pyd_indicator]
    TO_BE_REPEATED,     -- Indicator [pyd_indicator]
    CR_USER,            -- User Name [syuname]
    CR_DT,              -- Time Stamp [timestamp]
    LC_USER,            -- User Name [syuname]
    LC_DT,              -- Time Stamp [timestamp]
    PRIMARY KEY (MANDT, REF_ID, PACKAGE_ID, OBJ_TYPE, OBJ_ID)
);