DRAT

Transparent Table Application Table

Texts for Document Info Records

DRAT is an SAP database table in S/4HANA. Texts for Document Info Records. It contains 9 fields. 7 CDS views read from this table.

CDS Views using this table (7)

ViewTypeJoinVDMDescription
FCLM_BAM_DM_ATTR view left_outer Active Company Code List of FI
I_CstrtSwMatlAllVers view left_outer BASIC All Version Data of Software Materials
I_DocInfoRecdDescription view from BASIC Document Info Record Description
I_DocumentInfoRecordDesc view from BASIC Document Info Record Description
P_Swdocver view left_outer BASIC
SHSM_DRAT view from
SHSM_DRAT_DOST view from

Fields (9)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY dokar DOKAR Document Type
KEY doknr DOKNR Document
KEY dokvr DOKVR Doc. Version
KEY doktl DOKTL_D Document Part
KEY langu CVLANG Language
dktxt DKTXT Description
ltxin LTXIN LgText ID
dktxt_uc DKTXT_UC Description

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.

-- Texts for Document Info Records
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE DRAT (
    MANDT,     -- Client [MANDT]
    DOKAR,     -- Document Type [DOKAR]
    DOKNR,     -- Document [DOKNR]
    DOKVR,     -- Doc. Version [DOKVR]
    DOKTL,     -- Document Part [DOKTL_D]
    LANGU,     -- Language [CVLANG]
    DKTXT,     -- Description [DKTXT]
    LTXIN,     -- LgText ID [LTXIN]
    DKTXT_UC,  -- Description [DKTXT_UC]
    PRIMARY KEY (MANDT, DOKAR, DOKNR, DOKVR, DOKTL, LANGU)
);