VTBSI SAP (Hedges) Table details

Dictionary Type: Table
Description: Hedges




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




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

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

The VTBSI table consists of various fields, each holding specific information or linking keys about Hedges data available in SAP. These include BUKRS (Company Code), RSICH (Hedge number), KLTYP (Unit Category), KLART (Unit type).. 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: 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 VTBSI 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
MANDTClient MANDTCLNT3T000MANDT
BUKRSCompany Code BUKRSCHAR4T001BUKRSBUKC_T001
RSICHHedge number TB_RSICHCHAR13ALPHAT_RSICHT20VTBS
KLTYPUnit Category TB_KLTYPNUMC2T_KLTYP
KLARTUnit type TB_KLARTCHAR4AT72T_KLARTT21
RMAINZUOConsecutive allocation no. TB_RZUONUMC10T_RZUO
DBLFZDate of hedge, start TH_DBLFZDATS8DATUM
DSICHDate of hedge TB_DSICHDATS8DATUM
WTRANSTransaction currency (currency subject to risk) TB_WTRANSCUKY5TCURCWAERST22
WBASISBase currency (usually local currency) TH_WBASISCUKY5TCURCWAERST23
KSICHHedge rate (=Budget rate) TB_KSICHDEC13(9) TB_KSICH
WLWAERSLeading currency TH_WLWAERSCUKY5TCURCWAERS
WFWAERSFollowing Currency TH_WFWAERSCUKY5TCURCWAERS
BZTRANSAmount in transaction currency TH_BZTRANSCURR13(2) WERTV7
SSIGNTDirection of flow TH_SSIGNCHAR1TH_SSIGN
BZBASISAmount in base currency TH_BZBASISCURR13(2) WERTV7
SSIGNBDirection of flow TH_SSIGNCHAR1TH_SSIGN
KSCHNITTEffective rate TB_SCHNITTDEC9(5) EXCRTUKURS
KHISTHistoric forward rate TB_KHISTDEC9(5) EXCRTUKURS
SKALIDBFactory calendar TH_KALIDCHAR2TFACDWFCID
SKALIDTFactory calendar TH_KALIDCHAR2TFACDWFCID
OBJNRObject number J_OBJNRCHAR22ONR00J_OBJNRONR
CRUSEREntered by TH_CRUSERCHAR12SYCHAR12
DCRDATEntry date TH_DCRDATDATS8DATUM
TCRTIMEntry time TH_TCRTIMTIMS6UZEIT
UPUSERLast changed by TH_UPUSERCHAR12SYCHAR12
DUPDATChanged on TH_DUPDATDATS8DATUM
TUPTIMTime changed TH_TUPTIMTIMS6UZEIT
SSTATUSStatus TB_SSTATUSNUMC1T_SSTATUS

Key field Non-key field



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

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

SELECT SINGLE *
FROM VTBSI
INTO CORRESPONDING FIELDS OF WA_VTBSI
WHERE...

How to access SAP table VTBSI

Within an ECC or HANA version of SAP you can also view further information about VTBSI 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!