/APE/APIID

Transparent Table Control Table (SAP+Cust)

API ID

/APE/APIID is an SAP database table in S/4HANA. API ID. It contains 10 fields. 3 CDS views read from this table.

CDS Views using this table (3)

ViewTypeJoinVDMDescription
/APE/C_APIIDBuffered view from BASIC Application Program Interface ID
/APE/I_APIID view from BASIC Application Program Interface ID
/APE/I_APIID_C view_entity from BASIC Application Program Interface ID

Fields (10)

KeyField Data ElementDescription DomainTypeLength
KEY client MANDT Client
KEY config_key /APE/DE_CONFIG_DB_KEY
api_id /APE/DE_API_ID
market_role /APE/DE_MARKET_ROLE
config_layer /APE/DE_CONFIG_LAYER
deploy_target /APE/DE_DEPLOYMENT_TARGET
created_at /APE/DE_ADM_CREATED_AT
created_by /APE/DE_ADM_CREATED_BY
changed_at /APE/DE_ADM_CHANGED_AT
changed_by /APE/DE_ADM_CHANGED_BY

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.

-- API ID
-- Category TRANSPARENT · Delivery class E
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE /APE/APIID (
    CLIENT,         -- Client [MANDT]
    CONFIG_KEY,     -- /APE/DE_CONFIG_DB_KEY
    API_ID,         -- /APE/DE_API_ID
    MARKET_ROLE,    -- /APE/DE_MARKET_ROLE
    CONFIG_LAYER,   -- /APE/DE_CONFIG_LAYER
    DEPLOY_TARGET,  -- /APE/DE_DEPLOYMENT_TARGET
    CREATED_AT,     -- /APE/DE_ADM_CREATED_AT
    CREATED_BY,     -- /APE/DE_ADM_CREATED_BY
    CHANGED_AT,     -- /APE/DE_ADM_CHANGED_AT
    CHANGED_BY,     -- /APE/DE_ADM_CHANGED_BY
    PRIMARY KEY (CLIENT, CONFIG_KEY)
);