SAP T042 Parameters for payment transactions Table data and field list

T042 is a standard SAP Pooled Table which is used to store Parameters for payment transactions data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The T042 table consists of various fields, each holding specific information or linking keys about Parameters for payment transactions data available in SAP. These include BUKRS (Company Code), ZBUKR (Paying company code), ULSK1 (Special G/L Transactions to be Paid (Vendor)), ULSK2 (Special G/L Transactions for Exception List (Vendor))... 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. .

T042 pooled table Technical Details:

Delivery Class: C - Customising table, maintenance only by cust
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Not classified


SAP T042 pooled 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 T042 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
BUKRSCompany Code BUKRSCHAR4T001BUKRSBUKC_T001
ZBUKRPaying company code DZBUKRCHAR4T001BUKRS
ULSK1Special G/L Transactions to be Paid (Vendor) ULSK1CHAR10CHAR10
ULSK2Special G/L Transactions for Exception List (Vendor) ULSK2CHAR10CHAR10
ULSD1Special G/L Transactions to be Paid (customer) ULSD1CHAR10CHAR10
ULSD2Special G/L Transactions for Exception List (Customer) ULSD2CHAR10CHAR10
XKDFBIndicator: Are the Exchange Rate Differences to be Posted? XKDFBCHAR1XFELD
XGBTRSeparate Payments for each Business Area? XGBTRCHAR1XFELD
TOLTGTolerance Days for Payables TOLTG_042NUMC2NUM02
SKTUGMinimum Percentage Rate for Payments with Cash Discount SKTUG_042DEC3(1) PRZ21
XSKR1Vendor Payments Always with Maximum Cash Discount XSKR1CHAR1XFELD
ABSBUSending company code ABSBUCHAR4T001BUKRS
XUZAWUsage of Payment Method Supplements XUZAWCHAR1XFELD
XBPTRIndicator: Separate Payments per Business Place? XBPTRCHAR1XFELD
XRGUHIndicator: Transfer Bank Details to BSEC XBSEC_042ZCHAR1XFELD

Key field Non-key field



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

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

SELECT SINGLE *
FROM T042
INTO CORRESPONDING FIELDS OF WA_T042
WHERE...

How to access SAP table T042

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

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