EHFNDD_NOTES

Transparent Table Application Table

Notes

EHFNDD_NOTES is an SAP database table in S/4HANA. Notes. It contains 7 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_CmplRqRsltHndlgStorageNote view_entity from BASIC Notes

Fields (7)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY uuid ehfnd_note_uuid UUID of Note
parent_type ehfnd_parent_type Parent object type
parent_uuid ehfnd_parent_uuid Parent Object
root_type ehfnd_root_type Root object type
root_uuid ehfnd_root_uuid Root object
note ehfnd_note Comments

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.

-- Notes
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE EHFNDD_NOTES (
    MANDT,        -- Client [mandt]
    UUID,         -- UUID of Note [ehfnd_note_uuid]
    PARENT_TYPE,  -- Parent object type [ehfnd_parent_type]
    PARENT_UUID,  -- Parent Object [ehfnd_parent_uuid]
    ROOT_TYPE,    -- Root object type [ehfnd_root_type]
    ROOT_UUID,    -- Root object [ehfnd_root_uuid]
    NOTE,         -- Comments [ehfnd_note]
    PRIMARY KEY (MANDT, UUID)
);