SAP TRDC_ADM Loan Document Data Summarization: Administration Table Table data and field list

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

The TRDC_ADM table consists of various fields, each holding specific information or linking keys about Loan Document Data Summarization: Administration Table data available in SAP. These include BUKRS (Company Code), RANL (Contract Number), SANLF (Product Category), GSART (Product Type)... 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. .

TRDC_ADM 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: Not classified


SAP TRDC_ADM 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 TRDC_ADM 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
SANLFProduct Category SANLFNUMC3Assigned to domainVVSANLF
GSARTProduct Type VVSARTCHAR3Assigned to domainVVSARTSANVVSART_APPL_BAS
SANTWHRContract Currency SANTWHRCUKY5Assigned to domainWAERS
S_COMPRSTATSummarization status for summarization of loan document data S_COMPRSTATNUMC1S_COMPRSTAT
D_COMPRKey date for summarization of loan document data D_COMPRDATS8DATUM
DVCOMPRCalculation key date for summarization of loan document data DVCOMPRDATS8DATUM
DPCOMPRPosting key date for summarization of loan document data DPCOMPRDATS8DATUM
DFCOMPRDue Date for Summarization of Loan Document Data DFCOMPRDATS8DATUM
DDCOMPRPayment key date for summarization of loan document data DDCOMPRDATS8DATUM
RERFEntered by RERFCHAR12SYCHAR12
DERFFirst Entered on DERFDATS8DATUM
TERFTime of Initial Entry TERFTIMS6TIMES
TCODETransaction Code TCODECHAR20Assigned to domainTCODETCD
S_PROC_STATProcess Status for Summarized Record S_PROC_STATNUMC2S_PROC_STAT

Key field Non-key field



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

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

SELECT SINGLE *
FROM TRDC_ADM
INTO CORRESPONDING FIELDS OF WA_TRDC_ADM
WHERE...

How to access SAP table TRDC_ADM

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

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