TXW_S_VBRP SAP (Retrieve VBRP from archive) Table details

Dictionary Type: Table
Description: Retrieve VBRP from archive




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




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

TXW_S_VBRP is a standard SAP Table which is used to store Retrieve VBRP from archive data and is available within R/3 SAP systems depending on the version and release level.

The TXW_S_VBRP table consists of various fields, each holding specific information or linking keys about Retrieve VBRP from archive data available in SAP. These include TXW_VBELN (Billing Document), TXW_POSNR (Billing item), MANDT (Client), BUKRS (Company Code).. 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: Can be enhanced (character-type)


SAP TXW_S_VBRP 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
TXW_MANDTClient MANDTCLNT3Assigned to domainMANDT
TXW_VBELNBilling Document VBELN_VFCHAR10Assigned to domainALPHAVBELNVF
TXW_POSNRBilling item POSNR_VFNUMC6Assigned to domainPOSNR
MANDTClient MANDTCLNT3Assigned to domainMANDT
BUKRSCompany Code BUKRSCHAR4Assigned to domainBUKRSBUKC_T001
BELNRAccounting Document Number BELNR_DCHAR10ALPHABELNRBLN
GJAHRFiscal Year GJAHRNUMC4GJAHRGJAHRGJR
MONATFiscal Period MONATNUMC2MONAT
VBELNBilling Document VBELN_VFCHAR10Assigned to domainALPHAVBELNVF
POSNRBilling item POSNR_VFNUMC6Assigned to domainPOSNR
PSTYVSales document item category PSTYVCHAR4Assigned to domainPSTYV
VGBELDocument number of the reference document VGBELCHAR10Assigned to domainALPHAVBELN
VGPOSItem number of the reference item VGPOSNUMC6Assigned to domainPOSNR
VGTYPDocument category of preceding SD document VBTYP_VCHAR1VBTYP
AUBELSales Document VBELN_VACHAR10Assigned to domainALPHAVBELNAUN
AUPOSSales Document Item POSNR_VANUMC6Assigned to domainPOSNRAPO
AUTYPSD document category VBTYPCHAR1VBTYP
GSBERBusiness Area GSBERCHAR4Assigned to domainGSBERGSB
KOKRSControlling Area KOKRSCHAR4Assigned to domainCACCDCAC
ARKTXShort text for sales order item ARKTXCHAR40TEXT40
FBUDADate on which services rendered FBUDADATS8DATUM
FKIMGActual invoiced quantity TXW_FKIMGCHAR16CHAR16
KOWRRStatistical values KOWRRCHAR1KOWRR
LMENGRequired quantity for mat.management in stockkeeping units TXW_LMENGCHAR16CHAR16
MATKLMaterial Group MATKLCHAR9Assigned to domainMATKLMKLS_WBWG
MATNRMaterial Number MATNRCHAR18Assigned to domainMATN1MATNRMATS_MAT1
MEINSBase Unit of Measure MEINSUNIT3Assigned to domainCUNITMEINS
MWSBPTax amount in document currency TXW_MWSBPCHAR16CHAR16
NETWRNet value of the billing item in document currency TXW_NETWRFCHAR17CHAR17
PRCTRProfit Center PRCTRCHAR10Assigned to domainALPHAPRCTRPRCPRCTR_EMPTY
PRSDTDate for pricing and exchange rate PRSDTDATS8DATUM
SHKZGDebit/Credit Indicator SHKZGCHAR1SHKZG
TXJCDTax Jurisdiction TXJCDCHAR15Assigned to domainTXJCDTXJ
VRKMESales Unit of Measure TXW_VRKMEUNIT3Assigned to domainCUNITMEINS
WERKSPlant WERKS_DCHAR4Assigned to domainWERKSWRKH_T001W_C
CHARGBatch Number CHARG_DCHAR10Assigned to domainCHARGCHA
KZWI1Subtotal 1 from pricing procedure for condition TXW_KZWI1CHAR20CHAR20
KZWI2Subtotal 2 from pricing procedure for condition TXW_KZWI2CHAR20CHAR20
KZWI3Subtotal 3 from pricing procedure for condition TXW_KZWI3CHAR20CHAR20
KZWI4Subtotal 4 from pricing procedure for condition TXW_KZWI4CHAR20CHAR20
KZWI5Subtotal 5 from pricing procedure for condition TXW_KZWI5CHAR20CHAR20
KZWI6Subtotal 6 from pricing procedure for condition TXW_KZWI6CHAR20CHAR20
PRODHProduct hierarchy PRODH_DCHAR18Assigned to domainPRODHVPR
TAXM1Tax classification material TAXM1CHAR1Assigned to domainTAXKM
TAXM2Tax classification 2 for material TAXM2CHAR1Assigned to domainTAXKM
TAXM3Tax classification 3 for material TAXM3CHAR1Assigned to domainTAXKM
TAXM4Tax Classification 4 Material TAXM4CHAR1Assigned to domainTAXKM
TAXM5Tax classification 5 for material TAXM5CHAR1Assigned to domainTAXKM
TAXM6Tax classification 6 for material TAXM6CHAR1Assigned to domainTAXKM
TAXM7Tax classification 7 for material TAXM7CHAR1Assigned to domainTAXKM
TAXM8Tax Classification 8 Material TAXM8CHAR1Assigned to domainTAXKM
TAXM9Tax Classification 9 Material TAXM9CHAR1Assigned to domainTAXKM
LGORTStorage Location LGORT_DCHAR4Assigned to domainLGORTLAG
MWSKZTax on sales/purchases code MWSKZCHAR2Assigned to domainMWSKZ

Key field Non-key field



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

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

SELECT SINGLE *
FROM TXW_S_VBRP
INTO CORRESPONDING FIELDS OF WA_TXW_S_VBRP
WHERE...

How to access SAP table TXW_S_VBRP

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