SYCM_API_CACHE

Transparent Table Application Table

Cache for APIs

SYCM_API_CACHE is an SAP database table in S/4HANA. Cache for APIs. It contains 9 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
sycm_apis_c_scsr view_entity from CDS view for classic api with successors
sycm_apis_r_scsr view_entity from CDS view for release api with successors

Fields (9)

KeyField Data ElementDescription DomainTypeLength
KEY api_id guid GUID
KEY file_id guid GUID
KEY tadir_object trobjtype Object Type
KEY tadir_obj_name sobj_name Object Name
object_type sych_object_type Type
object_key sych_object_sub_key Object Check: Subkey
software_component dlvunit Softw. Comp.
application_component ufps_posid Applic. Component
state sycm_api_state

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.

-- Cache for APIs
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE SYCM_API_CACHE (
    API_ID,                 -- GUID [guid]
    FILE_ID,                -- GUID [guid]
    TADIR_OBJECT,           -- Object Type [trobjtype]
    TADIR_OBJ_NAME,         -- Object Name [sobj_name]
    OBJECT_TYPE,            -- Type [sych_object_type]
    OBJECT_KEY,             -- Object Check: Subkey [sych_object_sub_key]
    SOFTWARE_COMPONENT,     -- Softw. Comp. [dlvunit]
    APPLICATION_COMPONENT,  -- Applic. Component [ufps_posid]
    STATE,                  -- sycm_api_state
    PRIMARY KEY (API_ID, FILE_ID, TADIR_OBJECT, TADIR_OBJ_NAME)
);