DEMO_ROOT_EXT

Transparent Table Application Table

Database Table for Root Entity of RAP BO

DEMO_ROOT_EXT is an SAP database table in S/4HANA. Database Table for Root Entity of RAP BO. It contains 13 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
DEMO_RAP_FIELD_EXT view_entity from CDS view entity, RAP BO ext

Fields (13)

KeyField Data ElementDescription DomainTypeLength
KEY client MANDT Client
KEY key_field abap.int4
data_field abap.strg
char_field abap.char
char_field_2 abap.char
dec_field abap.dec
crea_date_time TIMESTAMPL Time Stamp
lchg_date_time TIMESTAMPL Time Stamp
data_field_ext abap.strg
char_field_ext abap.char
int_field_ext abap.int4
num_field_ext abap.int2
int1_field_ext abap.int1

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.

-- Database Table for Root Entity of RAP BO
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE DEMO_ROOT_EXT (
    CLIENT,          -- Client [MANDT]
    KEY_FIELD,       -- abap.int4
    DATA_FIELD,      -- abap.strg
    CHAR_FIELD,      -- abap.char
    CHAR_FIELD_2,    -- abap.char
    DEC_FIELD,       -- abap.dec
    CREA_DATE_TIME,  -- Time Stamp [TIMESTAMPL]
    LCHG_DATE_TIME,  -- Time Stamp [TIMESTAMPL]
    DATA_FIELD_EXT,  -- abap.strg
    CHAR_FIELD_EXT,  -- abap.char
    INT_FIELD_EXT,   -- abap.int4
    NUM_FIELD_EXT,   -- abap.int2
    INT1_FIELD_EXT,  -- abap.int1
    PRIMARY KEY (CLIENT, KEY_FIELD)
);