SAP VDARC_DOC_IND Index Table for the Loan Document Data Archiving Table data and field list

VDARC_DOC_IND is a standard SAP Table which is used to store Index Table for the Loan Document Data Archiving data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The VDARC_DOC_IND table consists of various fields, each holding specific information or linking keys about Index Table for the Loan Document Data Archiving data available in SAP. These include BUKRS (Company Code), RBELKPFD (Document Number of Document Header (Loan)), RPOSNR (Activity number), SREORGSTAT (Status of a Loan Reorganization Flow)... 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. .

VDARC_DOC_IND 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: Can be enhanced (character-type or numeric)


SAP VDARC_DOC_IND 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 VDARC_DOC_IND 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
RBELKPFDDocument Number of Document Header (Loan) RBELKPFDCHAR10ALPHARBELKPFD
RPOSNRActivity number NVORGANGCHAR3CHAR3
SREORGSTATStatus of a Loan Reorganization Flow TB_SREORGSTATCHAR1T_SREORGSTAT
SNORELOADIndicator for Non-Reloadable, Archived Line Items TB_SNORELOADCHAR1T_SNORELOAD
RPNSUP_KGeneral Daybook No. (Capital Transfer) TB_RPNSUPCHAR10VVRPNNR
OBJECTIDObject ID of loan unit LO_OBJIDCHAR35LO_OBJID
REFCONCEPT_AActivity Unit TB_REFCONCEPT_ACHAR35LO_REFCONC
REFCONCEPT_VPayment Reference Unit TB_REFCONCEPT_VCHAR35LO_REFCONC
RPNNRDaybook no. VVRPNNRCHAR10VVRPNNR
ARCHIVEKEYKey for Archive File ARKEYCHAR20ARKEY
OBJ_IDData object Identifier DATOBJ_IDCHAR50CHAR50
OBJ_OFFSETArchive file data object offset ADMI_OFFSTINT410
RANLContract Number RANLCHAR13ALPHARANLRAN
SBEWARTFlow Type SBEWARTCHAR4Assigned to domainSBEWART
SLFDNRSequence Number (Summarization of Loan Document Data) VVSLFDNRNUMC5VVSLFDNR
RVZBLGAccounting Document Number BELNR_DCHAR10ALPHABELNRBLN
DGJAHRFiscal Year GJAHRNUMC4GJAHRGJAHRGJR
ARCKEY_LOANREF_AKey for Archive File ARKEYCHAR20ARKEY
ARCKEY_LOANREF_VKey for Archive File ARKEYCHAR20ARKEY

Key field Non-key field



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

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

SELECT SINGLE *
FROM VDARC_DOC_IND
INTO CORRESPONDING FIELDS OF WA_VDARC_DOC_IND
WHERE...

How to access SAP table VDARC_DOC_IND

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

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