TFDIR

Transparent Table System Table (transport)

Function Module

TFDIR is an SAP database table in S/4HANA. Function Module. It contains 11 fields. 9 CDS views read from this table.

CDS Views using this table (9)

ViewTypeJoinVDMDescription
cross_func view from Function Module <-> Function Module Include
P_SU2X_HEAD_RF view left_outer Kopfdaten zu Vorschlagswerten für RFC-Funktionsbausteine
P_SU2X_LIST_WITH_SUCO view union_all Liste von Anwendungen mit Vorschlagsvarianten
ris_adt_executable_objects view union View on executable objects
ris_adt_object_names view union Object Names for ABAP Source Search
sedt_func view from
sfunc_ddl_modules_view view from View on available function modules
SUIM_2X_HEAD_RF view left_outer Get header data SU2X (Function Module)
SUIM_2X_RF_SUSH_NAME view from SUIM | SUSH entry for function modules in USOBHASH format

Fields (11)

KeyField Data ElementDescription DomainTypeLength
KEY funcname RS38L_FNAM Function Module
pname PNAME Program Name
freedate FREEDATE Release date of function module
appl RS38L_APPL Application
mand MANDT Client
fmode FMODE Mode
host abap.char
utask UTASK Update
pname_main PNAME Program Name
rfcscope RFCSCOPE Scope
rfcvers RFCVERS Interface Contract

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.

-- Function Module
-- Category TRANSPARENT · Delivery class W
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE TFDIR (
    FUNCNAME,    -- Function Module [RS38L_FNAM]
    PNAME,       -- Program Name [PNAME]
    FREEDATE,    -- Release date of function module [FREEDATE]
    APPL,        -- Application [RS38L_APPL]
    MAND,        -- Client [MANDT]
    FMODE,       -- Mode [FMODE]
    HOST,        -- abap.char
    UTASK,       -- Update [UTASK]
    PNAME_MAIN,  -- Program Name [PNAME]
    RFCSCOPE,    -- Scope [RFCSCOPE]
    RFCVERS,     -- Interface Contract [RFCVERS]
    PRIMARY KEY (FUNCNAME)
);