FTIND

Transparent Table Application Table

Missing parts index

FTIND is an SAP database table in S/4HANA. Missing parts index. It contains 8 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_OrderMissingPartBasic view_entity from BASIC Missing Parts of Orders

Fields (8)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY werks WERKS_D Plant
KEY matnr MATNR Material
KEY rsnum RSNUM Reservation
KEY rspos RSPOS Item no.
KEY rsart RSART Record type
bdter BDTER Reqmts date
aufnr AUFNR Order

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.

-- Missing parts index
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE FTIND (
    MANDT,  -- Client [MANDT]
    WERKS,  -- Plant [WERKS_D]
    MATNR,  -- Material [MATNR]
    RSNUM,  -- Reservation [RSNUM]
    RSPOS,  -- Item no. [RSPOS]
    RSART,  -- Record type [RSART]
    BDTER,  -- Reqmts date [BDTER]
    AUFNR,  -- Order [AUFNR]
    PRIMARY KEY (MANDT, WERKS, MATNR, RSNUM, RSPOS, RSART)
);