ACMHEXDB_SCARR

Transparent Table Temporary Data

ACMHEX: Airlines (DBTable)

ACMHEXDB_SCARR is an SAP database table in S/4HANA. ACMHEX: Airlines (DBTable). It contains 6 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
ACMHEX_SCARR view from ACMHEX: Airlines (= Dimension-1: CARRID)

Fields (6)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY carrid acmhex_carr_id Carrier
carrname acmhex_carr_name Carrier
currcode acmhex_currency_code Currency
country land1 Country/Reg.
url acmhex_carr_url Carrier URL

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.

-- ACMHEX: Airlines (DBTable)
-- Category TRANSPARENT · Delivery class L
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE ACMHEXDB_SCARR (
    MANDT,     -- Client [mandt]
    CARRID,    -- Carrier [acmhex_carr_id]
    CARRNAME,  -- Carrier [acmhex_carr_name]
    CURRCODE,  -- Currency [acmhex_currency_code]
    COUNTRY,   -- Country/Reg. [land1]
    URL,       -- Carrier URL [acmhex_carr_url]
    PRIMARY KEY (MANDT, CARRID)
);