BSEZ SAP (Line Item Additional Information (Online)) Structure details

Dictionary Type: Structure
Description: Line Item Additional Information (Online)




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




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

BSEZ is a standard SAP Structure so does not store data like a database table does. It can be used to define the fields of other actual tables or to process "Line Item Additional Information (Online)" Information within sap ABAP programs.

This is done by declaring abap internal tables, work areas or database tables based on this Structure. These can then be used to store and process the required data appropriately.

i.e. DATA: wa_BSEZ TYPE BSEZ.

The BSEZ table consists of various fields, each holding specific information or linking keys about Line Item Additional Information (Online) data available in SAP. These include ZUAWA (Key for sorting according to assignment numbers), HZUAW (Key for sorting according to assignment numbers), XGKON (Cash receipt account / cash disbursement account), XSKFB (Indicator: Calculate amounts qualifying for cash discount ?).. 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:
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)


SAP BSEZ structure 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
KOBEZAccount Description KOBEZCHAR30TEXT30
ZUAWAKey for sorting according to assignment numbers DZUAWACHAR3Assigned to domainZUAWA
HZUAWKey for sorting according to assignment numbers DZUAWACHAR3Assigned to domainZUAWA
XGKONCash receipt account / cash disbursement account XGKONCHAR1XFELD
XSKFBIndicator: Calculate amounts qualifying for cash discount ? XSKFBCHAR1XFELD
HWNAGNon-Deductible Tax in Loc.Curr. Already Posted (in CDC Item) HWNAG_BSEZCURR13(2) WERT7
FWNAGNon-Deductible Tax in For.Curr.Already Posted (in DiCl.Line) FWNAG_BSEZCURR13(2) WERT7
NAFVTIndicator: Distribute Non-Deductible Tax ? NAFVT_007CHAR1XFELD
HWZUZProvision Amount in Local Currency HWZUZCURR13(2) WERT7
FWZUZAdditional Tax in Document Currency FWZUZCURR13(2) WERT7
SHZUZDebit/Credit Addition for Cash Discount SHZUZCHAR1CHAR1
ZKOVTAdditional Tax Cost Distribution DZKOVT_007CHAR1ZKOVT
ZSABFIndicator: Postponed accounting system DZSABF_007CHAR1XFELD
XMWSTCalculate tax automatically XMWSTCHAR1XFELDXTX
WMWSTTax amount in document currency WMWSTCURR13(2) WERT7
MWSTSTax Amount in Local Currency MWSTSCURR13(2) WERT7
XSTVRIndicator: Taxes changed in payment terms screen XSTVR_BSEGCHAR1XFELD
XZUSZIndicator: Is line item an additional tax posting ? XZUSZ_BSEZCHAR1XFELD
ZTERMTerms of Payment Key DZTERMCHAR4ZTERM
XFDTAGEnter Cash Forecast Date Indicator of User XFDTAGCHAR1XFELD
XFDLEVEnter Cash Forecast Level Indicator of User XFDLEVCHAR1XFELD
EGMLDReporting Country for Delivery of Goods within the EU EGMLD_BSEZCHAR3T005LAND1
ABZFWDeductible Tax in Document Currency ABZFW_BSEZCURR13(2) WERT7
ABZHWDeductible Tax in Local Currency ABZHW_BSEZCURR13(2) WERT7
NABFWNon-Deductible Tax in Document Currency NABFW_BSEZCURR13(2) WERT7
NABHWDeductible Tax in Document Currency NABHW_BSEZCURR13(2) WERT7
XSTVTIndicator: Tax distribution takes place manually XSTVT_BSEZCHAR1XFELD
H2NAGNon-Deductible Tax in LC2 Already Posted (Disc.Clrng Item) H2NAG_BSEZCURR13(2) WERT7
H3NAGNon-Deductible Tax in LC3 Already Posted (Disc.Clrng Item) H3NAG_BSEZCURR13(2) WERT7
XSPLTIndicator: Term for installment payment XSPLTCHAR1XFELD
FWNAFNon-Deductible Input Tax in Document Currency FWNAFCURR13(2) WERT7
HWNAFNon-Deductible Input Tax in Local Currency HWNAFCURR13(2) WERT7
H2NAFNon-Deductible Tax in Local Currency 2 H2NAFCURR13(2) WERT7
H3NAFNon-Deductible Tax in Local Currency 3 H3NAFCURR13(2) WERT7
TXKEYInternal Key for Line Items - Long Text TXKEYNUMC5DOKU_SEQN5
XSTAREnjoy Transaction: * Entry XSTARCHAR1XFELD
ERLKZUsed earmarked funds set to 'Complete' REFSETERLKCHAR1CHAR1_X
LIKEYInternal: Unique Line Item Number in Enjoy Trans. at Runtime LIKEYNUMC5DOKU_SEQN5
XNOTEIndicator: Notes exist EENO_EXISTSCHAR1EENO_KZ_X
XAABGIndicator: Post retirement of assets directly ? XAABGCHAR1XFELD
XEGDR_HUEU Triangular Deal within EU for Hungary XEGDR_HUCHAR1XEGDR_HU
XSPLT_POSClearing Item for Document Splitting SPLT_POSCHAR1XFELD
.INCLU--AP 0
LOGVOLogical Transaction LOGVOCHAR6LOGVO
.INCLU--AP 0
TCOBJNRObject number J_OBJNRCHAR22Assigned to domainJ_OBJNRONR
DATEOFSERVICEDate of Service VVBEACTDATEDATS8DATUM
NOTAXCORRDo Not Consider Item in Input Tax Correction VVREITNOTAXCORRCHAR1BOOLE
DIFFOPTRATEReal estate option rate POPTSATZDEC9(6) POPTSATZ
HASDIFFOPTRATEUse Different Option Rate VVREITUSEDIFFOPTRATECHAR1BOOLE

Key field Non-key field



How do I retrieve data from SAP structure BSEZ using ABAP code?

As BSEZ is a database structure and not a table it does not store any data in the SAP data dictionary. The ABAP SELECT statement is therefore not appropriate and can not be performed on BSEZ as there is no data to select.

How to access SAP table BSEZ

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