SAP LOANREF_A Reference Records of Loan Reference Unit for Disbursement Table data and field list

LOANREF_A is a standard SAP Table which is used to store Reference Records of Loan Reference Unit for Disbursement data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The LOANREF_A table consists of various fields, each holding specific information or linking keys about Reference Records of Loan Reference Unit for Disbursement data available in SAP. These include REFCONCEPT (Unit definition for loan unit), OBJECTTYPE (Object type of loan unit), OBJECTID (Object ID of loan unit), STATUS (Status of loan unit)... 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. .

LOANREF_A 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 LOANREF_A 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 LOANREF_A 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
REFCONCEPTUnit definition for loan unit LO_REFCONCCHAR35LO_REFCONC
OBJECTTYPEObject type of loan unit LO_OBJTYPECHAR1LO_OBJTYPE
OBJECTIDObject ID of loan unit LO_OBJIDCHAR35LO_OBJID
STATUSStatus of loan unit LO_REFSTATCHAR1LO_REFSTAT

Key field Non-key field



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

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

SELECT SINGLE *
FROM LOANREF_A
INTO CORRESPONDING FIELDS OF WA_LOANREF_A
WHERE...

How to access SAP table LOANREF_A

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

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