THXT_HINST

Transparent Table Application Table

Hedge Instrument DB Table

THXT_HINST is an SAP database table in S/4HANA. Hedge Instrument DB Table. It contains 11 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
I_HedgingInstrument view_entity from BASIC Hedging Instrument
P_TrsyHedgeAcctgAttributes view_entity union_all BASIC Hedge Accounting Attributes

Fields (11)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY os_guid tpm_db_os_guid DB Object ID
tr_acc_code tpm_acc_code Accounting Code
valuation_area tpm_val_area Valuation Area
hinst_number tpm_hinst_number HInst.Number
fiscal_year gjahr Fiscal Year
description tpm_hinst_descr HInst.Desc.
hrel_oid tpm_db_os_guid DB Object ID
hrel_cls tpm_db_os_guid DB Object ID
user_data_oid tpm_db_os_guid DB Object ID
user_data_cls tpm_db_os_guid DB Object ID

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.

-- Hedge Instrument DB Table
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE THXT_HINST (
    MANDT,           -- Client [mandt]
    OS_GUID,         -- DB Object ID [tpm_db_os_guid]
    TR_ACC_CODE,     -- Accounting Code [tpm_acc_code]
    VALUATION_AREA,  -- Valuation Area [tpm_val_area]
    HINST_NUMBER,    -- HInst.Number [tpm_hinst_number]
    FISCAL_YEAR,     -- Fiscal Year [gjahr]
    DESCRIPTION,     -- HInst.Desc. [tpm_hinst_descr]
    HREL_OID,        -- DB Object ID [tpm_db_os_guid]
    HREL_CLS,        -- DB Object ID [tpm_db_os_guid]
    USER_DATA_OID,   -- DB Object ID [tpm_db_os_guid]
    USER_DATA_CLS,   -- DB Object ID [tpm_db_os_guid]
    PRIMARY KEY (MANDT, OS_GUID)
);