CREP_CMIS_CLI

Transparent Table Temporary Data

CMIS Repositories (Client)

CREP_CMIS_CLI is an SAP database table in S/4HANA. CMIS Repositories (Client). It contains 12 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
V_SCMS_CMIS_REPOS view_entity union List of CMIS repositories

Fields (12)

KeyField Data ElementDescription DomainTypeLength
KEY client MANDT Client
KEY crep_id SCMS_CREP Content Rep.
version SCMS_CMISVRF CMIS Version no
fe_prot SAEPROTOKO Protocol
archivpath SAEARCPATH Archive Path
basicpath SAEBASPATH Basic Path
spool_dev RSPOPNAME Output Device
rfc_dest SCMS_RFCDE RFC destination
cmis_oauth SCMS_IFOAUTH OAuth Authentication
oa2c_profile OA2C_PROFILE OAuth 2.0 Profile
root_folder SCMS_CMIS_ROOT Root Folder Path
collab SCMS_COLLAB CollaborationEnabled

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.

-- CMIS Repositories (Client)
-- Category TRANSPARENT · Delivery class L
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE CREP_CMIS_CLI (
    CLIENT,        -- Client [MANDT]
    CREP_ID,       -- Content Rep. [SCMS_CREP]
    VERSION,       -- CMIS Version no [SCMS_CMISVRF]
    FE_PROT,       -- Protocol [SAEPROTOKO]
    ARCHIVPATH,    -- Archive Path [SAEARCPATH]
    BASICPATH,     -- Basic Path [SAEBASPATH]
    SPOOL_DEV,     -- Output Device [RSPOPNAME]
    RFC_DEST,      -- RFC destination [SCMS_RFCDE]
    CMIS_OAUTH,    -- OAuth Authentication [SCMS_IFOAUTH]
    OA2C_PROFILE,  -- OAuth 2.0 Profile [OA2C_PROFILE]
    ROOT_FOLDER,   -- Root Folder Path [SCMS_CMIS_ROOT]
    COLLAB,        -- CollaborationEnabled [SCMS_COLLAB]
    PRIMARY KEY (CLIENT, CREP_ID)
);