DDDSFI_SQL

Transparent Table System Table (transport)

DD: Scalar Function Implementation References for SQL

DDDSFI_SQL is an SAP database table in S/4HANA. DD: Scalar Function Implementation References for SQL. It contains 8 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
DDCDS_AMDP_DEPENDENCIES view_entity union_all Dependencies between CDS and AMDPs
DDCDS_SCALAR_FUNCTIONS_IMPLSQL view_entity from ABAP Dictionary: Scalar Func. SQL Impl.

Fields (8)

KeyField Data ElementDescription DomainTypeLength
KEY implementation_reference_name dddsfi_name Implementation Ref.
KEY as4local as4local Activation State
as4user as4user Last Changed By
as4date as4date Date
as4time as4time Time
scalar_function_name dddsfd_name Scalar Function Name
amdp_name ddamdpname DD: Name of ABAP-Managed DB Procedure
is_exposed_automatically dd_auto_exposure_flag

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.

-- DD: Scalar Function Implementation References for SQL
-- Category TRANSPARENT · Delivery class W
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE DDDSFI_SQL (
    IMPLEMENTATION_REFERENCE_NAME,  -- Implementation Ref. [dddsfi_name]
    AS4LOCAL,                       -- Activation State [as4local]
    AS4USER,                        -- Last Changed By [as4user]
    AS4DATE,                        -- Date [as4date]
    AS4TIME,                        -- Time [as4time]
    SCALAR_FUNCTION_NAME,           -- Scalar Function Name [dddsfd_name]
    AMDP_NAME,                      -- DD: Name of ABAP-Managed DB Procedure [ddamdpname]
    IS_EXPOSED_AUTOMATICALLY,       -- dd_auto_exposure_flag
    PRIMARY KEY (IMPLEMENTATION_REFERENCE_NAME, AS4LOCAL)
);