SIT2_RT_FLDINFO

Transparent Table Temporary Data

Cache DDIC Information of Structures

SIT2_RT_FLDINFO is an SAP database table in S/4HANA. Cache DDIC Information of Structures. It contains 15 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
R_Sitn2RtmeFldInfo view_entity from BASIC Cache DDIC Information of Structures

Fields (15)

KeyField Data ElementDescription DomainTypeLength
KEY tabname tabname Table Name
KEY fieldname fieldname Field Name
KEY langu ddlanguage Lang.
domname domname Domain
leng ddleng No. of Characters
intlen intlen Internal Length
outputlen outputlen Output Length
decimals decimals Decimal Places
datatype dynptype Data Type
inttype inttype ABAP type
fieldtext as4text Short Description
scrtext_s scrtext_s ShortFieldLabel
scrtext_m scrtext_m Medium Label
scrtext_l scrtext_l Long Fld Label
edmtype sit2_de_inst_attr_edm_type Attribute EDM Type

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.

-- Cache DDIC Information of Structures
-- Category TRANSPARENT · Delivery class L
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE SIT2_RT_FLDINFO (
    TABNAME,    -- Table Name [tabname]
    FIELDNAME,  -- Field Name [fieldname]
    LANGU,      -- Lang. [ddlanguage]
    DOMNAME,    -- Domain [domname]
    LENG,       -- No. of Characters [ddleng]
    INTLEN,     -- Internal Length [intlen]
    OUTPUTLEN,  -- Output Length [outputlen]
    DECIMALS,   -- Decimal Places [decimals]
    DATATYPE,   -- Data Type [dynptype]
    INTTYPE,    -- ABAP type [inttype]
    FIELDTEXT,  -- Short Description [as4text]
    SCRTEXT_S,  -- ShortFieldLabel [scrtext_s]
    SCRTEXT_M,  -- Medium Label [scrtext_m]
    SCRTEXT_L,  -- Long Fld Label [scrtext_l]
    EDMTYPE,    -- Attribute EDM Type [sit2_de_inst_attr_edm_type]
    PRIMARY KEY (TABNAME, FIELDNAME, LANGU)
);