KSR_XM_COM_OUT

Transparent Table Temporary Data

KSR: Cross Tenant Outbound Communication

KSR_XM_COM_OUT is an SAP database table in S/4HANA. KSR: Cross Tenant Outbound Communication. It contains 13 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
KSR_I_XM_COM_OUT_R view from KSR: Cross Tenant Outbound Communication

Fields (13)

KeyField Data ElementDescription DomainTypeLength
KEY destination ksr_v_com_dest_name Destination
service_name ksr_v_service_name Service Name
service_type val_text Short Description
h2_name ksr_v_h2_name H2 Name
h2_description ksr_cr_v_description Description
created_at timestamp Time Stamp
created_by syst_uname User Name
changed_at timestamp Time Stamp
changed_by syst_uname User Name
h1_name ksr_v_h1_name H1
h1_description ksr_cr_v_description Description
h1_type val_text Short Description
h1_managed_by ksr_cr_v_id ID

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.

-- KSR: Cross Tenant Outbound Communication
-- Category TRANSPARENT · Delivery class L
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE KSR_XM_COM_OUT (
    DESTINATION,     -- Destination [ksr_v_com_dest_name]
    SERVICE_NAME,    -- Service Name [ksr_v_service_name]
    SERVICE_TYPE,    -- Short Description [val_text]
    H2_NAME,         -- H2 Name [ksr_v_h2_name]
    H2_DESCRIPTION,  -- Description [ksr_cr_v_description]
    CREATED_AT,      -- Time Stamp [timestamp]
    CREATED_BY,      -- User Name [syst_uname]
    CHANGED_AT,      -- Time Stamp [timestamp]
    CHANGED_BY,      -- User Name [syst_uname]
    H1_NAME,         -- H1 [ksr_v_h1_name]
    H1_DESCRIPTION,  -- Description [ksr_cr_v_description]
    H1_TYPE,         -- Short Description [val_text]
    H1_MANAGED_BY,   -- ID [ksr_cr_v_id]
    PRIMARY KEY (DESTINATION)
);