SAP RITEMS_DISPLAY Output Structure for Loan Items Table data and field list

RITEMS_DISPLAY is a standard SAP Structure so does not store data like a database table does. It can be used to define the fields of other actual tables or to process "Output Structure for Loan Items" Information within sap ABAP programs.

This is done by declaring abap internal tables, work areas or database tables based on this Structure. These can then be used to store and process the required data appropriately.

i.e. DATA: wa_RITEMS_DISPLAY TYPE RITEMS_DISPLAY.

The RITEMS_DISPLAY table consists of various fields, each holding specific information or linking keys about Output Structure for Loan Items data available in SAP. These include GSART (Business type (interest reference)), GSART_DESC (Text (30 Characters)), RANL (Contract Number), SOURCE (Entry Category)... 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. .

RITEMS_DISPLAY structure Technical Details:

Delivery Class:
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)


SAP RITEMS_DISPLAY structure 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 RITEMS_DISPLAY 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
BUKRSCompany Code BUKRSCHAR4Assigned to domainBUKRSBUKC_T001
GSARTBusiness type (interest reference) GSARTCHAR3CHAR3
GSART_DESCText (30 Characters) TEXT30CHAR30TEXT30
RANLContract Number RANLCHAR13ALPHARANLRAN
SOURCEEntry Category TB_ITEM_CATCHAR1T_ITEM_CAT
SOURCE_DESCText (30 Characters) TEXT30CHAR30TEXT30
STATUSStatus of Loan Entry TB_ITEM_STATUS_IDCHAR2
STATUS_TEXTStatus Name for Loan Entry TB_ITEM_STATUSCHAR20
IDENTIFICATIONIdentification for a Loan Item TB_ITEM_IDENTIFICATIONCHAR50
TEXTDescription of a Loan Item TB_ITEM_DESCRIPTIONCHAR50TEXT50
ZLSCHPayment Method DZLSCHCHAR1Assigned to domainZLSCH
ZLSCH_TEXTComment CHAR50CHAR50TEXT50
BVTYPPartner Bank Type BVTYPCHAR4BVTYP
BVTYP_TEXTChar 80 CHAR80CHAR80CHAR80
ZLSPRPayment Block Key DZLSPRCHAR1T008ZAHLSSPE
ZLSPR_TEXTComment CHAR50CHAR50TEXT50
MNDIDUnique Referene to Mandate per Payment Recipient SEPA_MNDIDCHAR35ID035
AMOUNTCondition item currency amount BKONDCURR13(2) WERTV7
SWHRKONDCurrency of Condition Item SWHRKONDCUKY5Assigned to domainWAERS
ZLSCH_ORIGPayment Method DZLSCHCHAR1Assigned to domainZLSCH
ZLSCH_ORIG_TEXTComment CHAR50CHAR50TEXT50
BVTYP_ORIGPartner Bank Type BVTYPCHAR4BVTYP
BVTYP_ORIG_TEXTChar 80 CHAR80CHAR80CHAR80
ZLSPR_ORIGPayment Block Key DZLSPRCHAR1Assigned to domainZAHLSSPE
ZLSPR_ORIG_TEXTComment CHAR50CHAR50TEXT50
MNDID_ORIGUnique Referene to Mandate per Payment Recipient SEPA_MNDIDCHAR35ID035
DFAELLDue date DFAELLDATS8DATUM
RINDXRow Index for ALV Data in Bank Details RINDXNUMC20NUMC20

Key field Non-key field



How do I retrieve data from SAP structure RITEMS_DISPLAY using ABAP code?

As RITEMS_DISPLAY is a database structure and not a table it does not store any data in the SAP data dictionary. The ABAP SELECT statement is therefore not appropriate and can not be performed on RITEMS_DISPLAY as there is no data to select.

How to access SAP table RITEMS_DISPLAY

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

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