VBHDR SAP (Update header) Table details

Dictionary Type: Table
Description: Update header




ABAP Code to SELECT data from VBHDR
Related tables to VBHDR
Access table VBHDR




Table field list including key, data, relationships and ABAP select examples

VBHDR is a standard SAP Table which is used to store Update header data and is available within R/3 SAP systems depending on the version and release level.

The VBHDR table consists of various fields, each holding specific information or linking keys about Update header data available in SAP. These include VBMANDT (Client for update request), VBUSR (User name in update request), VBACCNT (Update accounting), VBREPORT (Program that generated the update request).. See below for full list along with technical details, documentation, text table, check tables, foreign key relationships, conversion routines, relevant tcodes and example ABAP select code etc. .

Delivery Class: L - Table for storing temporary data, is delivered empty
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Not classified


SAP VBHDR table fields - Full list of fields found in SAP data dictionary

Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
VBKEYKey for Update and Enqueue/Dequeue VBKEY_DCHAR32VBKEY
VBMANDTClient for update request VBMANDTCLNT3Assigned to domainMANDT
VBUSRUser name in update request VBBNAMECHAR12UBNAME
VBACCNTUpdate accounting VBACCNTCHAR12VBACCNT
VBREPORTProgram that generated the update request VBREPORTCHAR40WPREPORT
VBTCODETransaction which has created the update request VBTCODECHAR20VBTCODE
VBENQKEYEnqueue key ENQKEYCHAR58ENQKEY
VBRCUpdate return code VBRCINT410VBRC
VBNAMEName of the Executing Update Server VBNAMECHAR64VBNAME
VBCONTEXTUpdate context (Code-page, DB node, ..) VBCONTEXTCHAR20VBCONTEXT
VBSTATEGlobal status of an update request VBSTATEINT13INT1
VBCLIINFOByte Value THRAW1RAW1THRAW1
VBLANGLogon Language XULANGULANG1ISOLALANGSPR
VBDATFMSingle-Character Indicator CHAR1CHAR1CHAR1
VBDCPFMSingle-Character Indicator CHAR1CHAR1CHAR1
VBDATEDate and time of update record (sort) VBDATECHAR14CHAR14
VBTRANSIDSAP Statistics: Transaction ID PFTRANSIDCHAR32CHAR32
VBETRANSIDSAP Statistics: Transaction ID PFTRANSIDCHAR32CHAR32
VBETRANSLNLength of External Transaction ID TXETRANSLNINT410TXETRANSLN
VBCLINAMEName of the Executing Update Server VBNAMECHAR64VBNAME
VBZONLOName of Local Time Zone VBZONLOCHAR6VBZONLO
VBTIMOFFOffset Local to System Time VBTIMOFFINT410VBTIMOFF

Key field Non-key field



How do I retrieve data from SAP table VBHDR using ABAP code

The following ABAP code Example will allow you to do a basic selection on VBHDR to SELECT all data from the table
DATA: WA_VBHDR TYPE VBHDR.

SELECT SINGLE *
FROM VBHDR
INTO CORRESPONDING FIELDS OF WA_VBHDR
WHERE...

How to access SAP table VBHDR

Within an ECC or HANA version of SAP you can also view further information about VBHDR and the data within it using relevant transactions such as

SE11 (ABAP Dictionary Maintenance)
SM30 (Maintain Table Data)
SE80 (Object Navigator)
SE16 (Data Browser).


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!