TF110

Transparent Table Customizing Table

Unterpositionstypen

TF110 is an SAP database table in S/4HANA. Unterpositionstypen. It contains 21 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
I_CnsldtnSubItemCategory view from BASIC Consolidation Subitem Category
I_CnsldtnSubItemCategoryEnhcd view from BASIC Consolidation Subitem Category

Fields (21)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY sityp fc_sityp Subitem Category
signind fc_signind Dr./Cr. sign
ttyind fc_ttyind CFwd to Subitem
fmlind fc_fmlind Formula
cfdind fc_cfdind Bal.Carried Fwd
cyaind fc_cyaind Cur.yr.acquis.
retind fc_retind SI Acq./Div.
fnumb fc_fnumb No. of fields used
flg1 fc_flg1 Length field 1
flg2 fc_flg2 Length field 2
flg3 fc_flg3 Length field 3
flg4 fc_flg4 Length field 4
flg5 fc_flg5 Length field 5
flg6 fc_flg6 Length field 6
flg7 fc_flg7 Length field 7
flg8 fc_flg8 Length field 8
flg9 fc_flg9 Length field 9
sidef fc_sidef Default Subitem
sitem_send fc_sitemsd Sender Field Subitem
dsiind fc_dsiind Carryfwd Dev SI

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.

-- Unterpositionstypen
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE TF110 (
    MANDT,       -- Client [mandt]
    SITYP,       -- Subitem Category [fc_sityp]
    SIGNIND,     -- Dr./Cr. sign [fc_signind]
    TTYIND,      -- CFwd to Subitem [fc_ttyind]
    FMLIND,      -- Formula [fc_fmlind]
    CFDIND,      -- Bal.Carried Fwd [fc_cfdind]
    CYAIND,      -- Cur.yr.acquis. [fc_cyaind]
    RETIND,      -- SI Acq./Div. [fc_retind]
    FNUMB,       -- No. of fields used [fc_fnumb]
    FLG1,        -- Length field 1 [fc_flg1]
    FLG2,        -- Length field 2 [fc_flg2]
    FLG3,        -- Length field 3 [fc_flg3]
    FLG4,        -- Length field 4 [fc_flg4]
    FLG5,        -- Length field 5 [fc_flg5]
    FLG6,        -- Length field 6 [fc_flg6]
    FLG7,        -- Length field 7 [fc_flg7]
    FLG8,        -- Length field 8 [fc_flg8]
    FLG9,        -- Length field 9 [fc_flg9]
    SIDEF,       -- Default Subitem [fc_sidef]
    SITEM_SEND,  -- Sender Field Subitem [fc_sitemsd]
    DSIIND,      -- Carryfwd Dev SI [fc_dsiind]
    PRIMARY KEY (MANDT, SITYP)
);