IBIB

Transparent Table Application Table

IB: Installed Base/IBase

IBIB is an SAP database table in S/4HANA. IB: Installed Base/IBase. It contains 3 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
I_DigitalVehicleBaseHeader view_entity from BASIC Installed Base Header
P_IBaseHeader view from BASIC Installed Base Header

Fields (3)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY ibase ib_ibase Installed Base
_dataaging data_temperature Data Aging

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.

-- IB: Installed Base/IBase
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE IBIB (
    MANDT,       -- Client [mandt]
    IBASE,       -- Installed Base [ib_ibase]
    _DATAAGING,  -- Data Aging [data_temperature]
    PRIMARY KEY (MANDT, IBASE)
);