SAP VDCHK_IOA Results of Interest on Arrears Check Table data and field list

VDCHK_IOA is a standard SAP Table which is used to store Results of Interest on Arrears Check data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The VDCHK_IOA table consists of various fields, each holding specific information or linking keys about Results of Interest on Arrears Check data available in SAP. These include MANDT (Client), BUKRS (Company Code), RANL (Contract Number), KUNNR (Customer Numbers)... 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. .

VDCHK_IOA table Technical Details:

Delivery Class: A - Application table (master and transaction data)
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced


SAP VDCHK_IOA 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 VDCHK_IOA 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 MANDTCLNT3Assigned to domainMANDT
BUKRSCompany Code BUKRSCHAR4Assigned to domainBUKRSBUKC_T001
RANLContract Number RANLCHAR13ALPHARANLRAN
KUNNRCustomer Numbers KUNNRCHAR10Assigned to domainALPHAKUNNRKUNC_KUNNR
REBZGAccounting Document Number BELNR_DCHAR10ALPHABELNRBLN
REBZZNumber of Line Item Within Accounting Document BUZEINUMC3BUZEIBUZ
REBZJFiscal Year GJAHRNUMC4GJAHRGJAHRGJR
DANFIBUDate DATUMDATS8DATUM
UANFIBUTime UZEITTIMS6UZEIT
FLG_OKCheckbox XFELDCHAR1XFELD
FLG_DEBTTRCheckbox XFELDCHAR1XFELD
FLG_PP_REVCheckbox XFELDCHAR1XFELD
FLG_PP_VALUTCheckbox XFELDCHAR1XFELD
FLG_ZE_REV_VALUTCheckbox XFELDCHAR1XFELD
FLG_DEBIT_REVCheckbox XFELDCHAR1XFELD

Key field Non-key field



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

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

SELECT SINGLE *
FROM VDCHK_IOA
INTO CORRESPONDING FIELDS OF WA_VDCHK_IOA
WHERE...

How to access SAP table VDCHK_IOA

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

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