DEFTAX_ITEM SAP (Data for Deferred Taxes) Table details

Dictionary Type: Table
Description: Data for Deferred Taxes




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




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

DEFTAX_ITEM is a standard SAP Table which is used to store Data for Deferred Taxes data and is available within R/3 SAP systems depending on the version and release level.

The DEFTAX_ITEM table consists of various fields, each holding specific information or linking keys about Data for Deferred Taxes data available in SAP. These include BUKRS (Company Code), BELNR (Accounting Document Number), GJAHR (Fiscal Year), BUZEI (Number of Line Item Within Accounting Document).. 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: Not classified


SAP DEFTAX_ITEM 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
BELNRAccounting Document Number BELNR_DCHAR10ALPHABELNRBLN
GJAHRFiscal Year GJAHRNUMC4GJAHRGJAHRGJR
BUZEINumber of Line Item Within Accounting Document BUZEINUMC3BUZEIBUZ
KTOSLTransaction Key KTOSLCHAR3CHAR3
ZBUKRCompany Code BUKRSCHAR4T001BUKRSBUKC_T001
ZBELNAccounting Document Number BELNR_DCHAR10ALPHABELNRBLN
ZGJAHFiscal Year GJAHRNUMC4GJAHRGJAHRGJR
ZBUZENumber of Line Item Within Accounting Document BUZEINUMC3BUZEIBUZ
MWSKZTax on sales/purchases code MWSKZCHAR2T007AMWSKZ
SHKZGDebit/Credit Indicator SHKZGCHAR1SHKZG
HKONTGeneral Ledger Account HKONTCHAR10SKB1ALPHASAKNR
LIFNRAccount Number of Vendor or Creditor LIFNRCHAR10Assigned to domainALPHALIFNRLIFKRED_C
KUNNRCustomer Numbers KUNNRCHAR10Assigned to domainALPHAKUNNRKUNC_KUNNR
KBETRTax Rate KBETR_TAXCURR11(2) WERTV6
HWBTRGross Amount in Local Currency HWBTR_DEFTAX_ITEMCURR15(2) WERTV8
FWBTRGross Amount in Document Currency FWBTR_DEFTAX_ITEMCURR15(2) WERTV8
HWSTETax Amount in Local Currency HWSTECURR13(2) WERT7
FWSTETax Amount in Document Currency FWSTECURR13(2) WERT7
LWBTRGross Amount in National Currency LWBTR_DEFTAX_ITEMCURR15(2) WERTV8
LWSTETax Amount in Country Currency LWSTE_BSETCURR13(2) WERT7
HZBETTax Base Amount in Local Currency HWBAS_BSESCURR15(2) WERTV8
FZBETTax base amount in document currency FWBAS_BSESCURR15(2) WERTV8
LZBETTax Base in Country Currency LWBAS_BSETCURR15(2) WERTV8
HTEILPart. Amt of Gross Amount in Local Currency to be Reported HTEIL_DEFTAX_ITEMCURR15(2) WERTV8
FTEILPart.Amt of Gross Amount in Document Currency to be Reported FTEIL_DEFTAX_ITEMCURR15(2) WERTV8
LTEILPart. Amt of Gross Amt in National Currency to be Reported LTEIL_DEFTAX_ITEMCURR15(2) WERTV8
HTEISPartial Amt of Tax Amount in Local Currency to be Reported HTEIS_DEFTAX_ITEMCURR15(2) WERTV8
FTEISPartial Amount of Tax Amount in Document Currency to be Rep. FTEIS_DEFTAX_ITEMCURR15(2) WERTV8
LTEISPart. Amt of Tax Amount in National Currency to be Reported LTEIS_DEFTAX_ITEMCURR15(2) WERTV8
HSKONCash Discount Amount of Payment in Local Currency HSKON_DEFTAX_ITEMCURR15(2) WERTV8
FSKONCash Discount Amount of Payment in Document Currency FSKON_DEFTAX_ITEMCURR15(2) WERTV8
LSKONCash Discount Amount of Payment in National Currency LSKON_DEFTAX_ITEMCURR15(2) WERTV8
HSTRUBackdated Tax Calculation Amount in Local Currency HSTRU_DEFTAX_ITEMCURR15(2) WERTV8
FSTRUBackdated Tax Calculation Amount in Document Currency FSTRU_DEFTAX_ITEMCURR15(2) WERTV8
LSTRUBackdated Tax Calculation Amount in National Currency LSTRU_DEFTAX_ITEMCURR15(2) WERTV8
LWAERCountry currency WAERS_005CUKY5Assigned to domainWAERS
XAUSGRelevant Document Has Been Cleared XAUSECHAR1XFELD
STMD1Date from which Advance Tax Reporting Must Be Executed STMD1DATS8DATUM
STMD2Date on Which the Tax Return Was Made STMDT_BSETDATS8DATUM
STMT2Time of Program Run for the Tax Return STMTI_BSETCHAR6TIME6
REFERENCEReference Field REF_DEFTAX_ITEMCHAR20CHAR20
LINE_TYPELine category REF_LINE_TYPECHAR2CHAR2
UMSKZSpecial G/L Indicator UMSKZCHAR1Assigned to domainUMSKZ
CBELNClearing document number BELNR_CCHAR10ALPHABELNRBLN
CGJAHClearing document fiscal year GJAHR_CNUMC4GJAHRGJAHRGJR
TBELNTax transfer document BELNR_TCHAR10ALPHABELNRBLN
TGJAHTransfer document fiscal year GJAHR_TNUMC4GJAHRGJAHRGJR
RBELNTax transfer reversal document BELNR_RCHAR10ALPHABELNRBLN
RGJAHReversal document year GJAHR_RNUMC4GJAHRGJAHRGJR

Key field Non-key field



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

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

SELECT SINGLE *
FROM DEFTAX_ITEM
INTO CORRESPONDING FIELDS OF WA_DEFTAX_ITEM
WHERE...

How to access SAP table DEFTAX_ITEM

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