GMBDGTHEADER

Transparent Table Application Table

Budget Document Header

GMBDGTHEADER is an SAP database table in S/4HANA. Budget Document Header. It contains 32 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_GteeMBudgetEntryDocument view from BASIC Budget Entry Doc in Grantee Management

Fields (32)

KeyField Data ElementDescription DomainTypeLength
KEY client MANDT Client
KEY bdgt_doc_nbr GM_BDGT_DOC_NBR Document Number
doc_type GM_BDGT_DOC_TYPE GM Doc Type
process GM_BDGT_PROCESS Process
waers WAERS Currency
bdgt_version GM_BDGT_VERSION Budget Version
bdgt_reason_code GM_BDGT_REASON_CODE Reason Code
entry_date GM_CREATED_ON Created on
entry_time UZEIT Time
entry_user GM_CREATED_BY Created by
approval_date GM_APPROV_DATE Approval Date
approval_time GM_APPROV_TIME Approval Time
bdgt_origin GM_BDGT_ORIGIN Document Origin
bdgt_ver_origin GM_BDGT_VERSION_ORIGIN Origin Version
posting_date BUDAT Posting Date
status GM_WORKFLOW_STATUS Workflow Status
text GM_HDR_TEXT Header Description
grant_nbr GM_GRANT_NBR Grant
bdgt_status GM_BDGT_STATUS Budget Status
doc_date BLDAT Document Date
docstate GM_BDGT_DOCSTATE Document Status
rev_status GM_BDGT_RSTAT Reversal Status
rev_refnr GM_BGDT_REV_REFNR Reversal Number
dim_order GM_BDGT_LAYOUT Layout
logsys LOGSYS Logical system
aworg AWORG Refer. Org.Unit
awref AWREF Reference Doc.
awsys AWSYS Logical System
awtyp AWTYP Ref. procedure
fm_transfer_stat GM_FM_TRANSFER_STATUS FM Transfer Status
objectid BAPIGUID GUID
document_class BAPIDCLASS Document Class

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.

-- Budget Document Header
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE GMBDGTHEADER (
    CLIENT,            -- Client [MANDT]
    BDGT_DOC_NBR,      -- Document Number [GM_BDGT_DOC_NBR]
    DOC_TYPE,          -- GM Doc Type [GM_BDGT_DOC_TYPE]
    PROCESS,           -- Process [GM_BDGT_PROCESS]
    WAERS,             -- Currency [WAERS]
    BDGT_VERSION,      -- Budget Version [GM_BDGT_VERSION]
    BDGT_REASON_CODE,  -- Reason Code [GM_BDGT_REASON_CODE]
    ENTRY_DATE,        -- Created on [GM_CREATED_ON]
    ENTRY_TIME,        -- Time [UZEIT]
    ENTRY_USER,        -- Created by [GM_CREATED_BY]
    APPROVAL_DATE,     -- Approval Date [GM_APPROV_DATE]
    APPROVAL_TIME,     -- Approval Time [GM_APPROV_TIME]
    BDGT_ORIGIN,       -- Document Origin [GM_BDGT_ORIGIN]
    BDGT_VER_ORIGIN,   -- Origin Version [GM_BDGT_VERSION_ORIGIN]
    POSTING_DATE,      -- Posting Date [BUDAT]
    STATUS,            -- Workflow Status [GM_WORKFLOW_STATUS]
    TEXT,              -- Header Description [GM_HDR_TEXT]
    GRANT_NBR,         -- Grant [GM_GRANT_NBR]
    BDGT_STATUS,       -- Budget Status [GM_BDGT_STATUS]
    DOC_DATE,          -- Document Date [BLDAT]
    DOCSTATE,          -- Document Status [GM_BDGT_DOCSTATE]
    REV_STATUS,        -- Reversal Status [GM_BDGT_RSTAT]
    REV_REFNR,         -- Reversal Number [GM_BGDT_REV_REFNR]
    DIM_ORDER,         -- Layout [GM_BDGT_LAYOUT]
    LOGSYS,            -- Logical system [LOGSYS]
    AWORG,             -- Refer. Org.Unit [AWORG]
    AWREF,             -- Reference Doc. [AWREF]
    AWSYS,             -- Logical System [AWSYS]
    AWTYP,             -- Ref. procedure [AWTYP]
    FM_TRANSFER_STAT,  -- FM Transfer Status [GM_FM_TRANSFER_STATUS]
    OBJECTID,          -- GUID [BAPIGUID]
    DOCUMENT_CLASS,    -- Document Class [BAPIDCLASS]
    PRIMARY KEY (CLIENT, BDGT_DOC_NBR)
);