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. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_HedgingInstrument view from BASIC Hedging Instrument

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)
);