SYCM_CUST_REFS

Transparent Table Temporary Data

Object References

SYCM_CUST_REFS is an SAP database table in S/4HANA. Object References. It contains 9 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
sycm_aps_c_cust_refs_vh view from Value Help for custrefs
Sycm_Simplification_View view inner Join Simplification DB with SYCM_CUST_REFS, -ENHS and -MODS

Fields (9)

KeyField Data ElementDescription DomainTypeLength
KEY extraction_sysid syst_sysid SAP System ID
KEY extraction_name sycm_extraction_name Result Name
KEY reference_kind sycm_reference_kind Category
KEY hash hash160 Hash Value
include_name progname Program Name
devclass devclass Package
genflag genflag Generation Flag
dlvunit dlvunit Softw. Comp.
ref_appl_component ufps_posid Applic. 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.

-- Object References
-- Category TRANSPARENT · Delivery class L
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE SYCM_CUST_REFS (
    EXTRACTION_SYSID,    -- SAP System ID [syst_sysid]
    EXTRACTION_NAME,     -- Result Name [sycm_extraction_name]
    REFERENCE_KIND,      -- Category [sycm_reference_kind]
    HASH,                -- Hash Value [hash160]
    INCLUDE_NAME,        -- Program Name [progname]
    DEVCLASS,            -- Package [devclass]
    GENFLAG,             -- Generation Flag [genflag]
    DLVUNIT,             -- Softw. Comp. [dlvunit]
    REF_APPL_COMPONENT,  -- Applic. Component [ufps_posid]
    PRIMARY KEY (EXTRACTION_SYSID, EXTRACTION_NAME, REFERENCE_KIND, HASH)
);