SAP VSBTRM Transmission: Self-Billing Procedure w. Autom. Postings Table data and field list

VSBTRM is a standard SAP Table which is used to store Transmission: Self-Billing Procedure w. Autom. Postings data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The VSBTRM table consists of various fields, each holding specific information or linking keys about Transmission: Self-Billing Procedure w. Autom. Postings data available in SAP. These include TRMNO_INT (Transfer Number (Internal)), ERDAT_A (Creation Date), ERZET_A (Time of creation), ERDAT_B (Status B Date)... 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. .

VSBTRM table Technical Details:

Delivery Class: A - Application table (master and transaction data)
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)


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

Looking for S/4HANA specific information? Click here to explore the details, fields and extensibility available for this table in the SAP S/4HANA version of the VSBTRM table. Also check whether the table still exists or has been transformed into a CDS view as part of the HANA simplifications.
Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
MANDTClient MANDTCLNT3T000MANDT
TRMNO_INTTransfer Number (Internal) TRMNO_INTNUMC12TRNSMTRMNO_INT
ERDAT_ACreation Date ERDATTRM_ADATS8DATUM
ERZET_ATime of creation ERZETTRM_ATIMS6UZEIT
ERDAT_BStatus B Date ERDATTRM_BDATS8DATUM
ERZET_BStatus B Time ERZETTRM_BTIMS6UZEIT
ERDAT_CStatus C Date ERDATTRM_CDATS8DATUM
ERZET_CStatus C Time ERZETTRM_CTIMS6UZEIT
ERDAT_DStatus D Date ERDATTRM_DDATS8DATUM
ERZET_DStatus D Time ERZETTRM_DTIMS6UZEIT
ERNAMName of User Who Added the Transfer ERNAMTRM_ACHAR12USNAM
AEDATChanged On AEDATDATS8DATUM
AEZETTime last change was made AEZETTIMS6UZEIT
AENAMName of Person Who Changed Object AENAMCHAR12USNAM
TIDOCNOTarget Number of IDocs in Transfer TIDOCNODEC6IDOCNO
ACTIDOCNONumber of IDocs Currently in Transmission ACTIDOCNODEC6IDOCNO
LIDOC_TLast IDoc for Transfer LIDOC_TNUMC16EDI_DOCNUM
TRMNOSRCSource of Transfer Number TRMNOSRCCHAR1TRMNOSRC
TRMCHECKTransfer Number Check TRMCHECKCHAR1TRMCHECK
TRMSOMStart Processing TRMSOMCHAR1TRMSOM
TRMEOTClose Transfer TRMEOTCHAR1TRMEOT
TSOMDATDate to Start processing TSOMDATDATS8DATUM
TSOMZETTime to Start Processing TSOMZETTIMS6UZEIT
TRMSTATTransmission status TRM_STATCHAR1TRMSTAT
PRCINDIndicator: Transfer Processed/Checked PRCINDCHAR1XFELD
PRCMODEProcessing Mode PRC_MODECHAR1PRC_MODE
TRMLOCKTransfer is Locked for Processing Step TRMLOCKCHAR1TRMLOCK
TRMDEACTTransfer is Deactivated TRMDEACTCHAR1TRMDEACT

Key field Non-key field



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

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

SELECT SINGLE *
FROM VSBTRM
INTO CORRESPONDING FIELDS OF WA_VSBTRM
WHERE...

How to access SAP table VSBTRM

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

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