TRACE

TRACE is an SAP database table in S/4HANA. It contains 19 fields.

Fields (19)

KeyField CDS FieldsUsed in Views
KEY ConversationId ConversationId 1
KEY MessageId MessageId 1
KEY TraceId TraceId 1
ih_witht ReferentialWhldgTaxType 1
nowhtreason NoWhldgTaxReasonCode 1
qproz WhldgTaxRelevantPercent 1
Source Source 1
SourceDescription SourceDescription 1
SourceType SourceType 1
stjah ReversalJournalEntryFiscalYear 1
validityenddate ValidityEndDate 1
wt_agtdf RequiredStartDate 1
wt_agtdt RequiredEndDate 1
wt_dopost WhgdTaxPostingIsRequired 1
wt_exdf ExemptionDateBegin 1
wt_exdt ExemptionDateEnd 1
wt_redbas WhgdTxBaseAmtIsReduced 1
wt_valid WithholdingTaxValidFromDate 1
xzahl IsUsedInPaymentTransaction 1

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.

-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE TRACE (
    CONVERSATIONID,
    MESSAGEID,
    TRACEID,
    IH_WITHT,
    NOWHTREASON,
    QPROZ,
    SOURCE,
    SOURCEDESCRIPTION,
    SOURCETYPE,
    STJAH,
    VALIDITYENDDATE,
    WT_AGTDF,
    WT_AGTDT,
    WT_DOPOST,
    WT_EXDF,
    WT_EXDT,
    WT_REDBAS,
    WT_VALID,
    XZAHL,
    PRIMARY KEY (CONVERSATIONID, MESSAGEID, TRACEID)
);