SAP RIOA_COT Conditions from Condition Table Table data and field list

RIOA_COT 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 "Conditions from Condition Table" 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_RIOA_COT TYPE RIOA_COT.

The RIOA_COT table consists of various fields, each holding specific information or linking keys about Conditions from Condition Table data available in SAP. These include D_VALIDFROM (Valid From), F_VALIDFROMINC (Inclusive Indicator for Valid-from Date), F_VALIDFROMULT (Month-End Indicator for Valid-from Date), D_VALIDTO (Valid To)... 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. .

RIOA_COT 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 RIOA_COT 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 RIOA_COT 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
SBEWARTFlow Type SBEWARTCHAR4Assigned to domainSBEWART
D_VALIDFROMValid From TB_FICO_DVALIDFROMDATS8DATUM
F_VALIDFROMINCInclusive Indicator for Valid-from Date TB_FICO_FVALIDFROMINCCHAR1T_FICO_FFLAG
F_VALIDFROMULTMonth-End Indicator for Valid-from Date TB_FICO_FVALIDFROMULTCHAR1T_FICO_FFLAG
D_VALIDTOValid To TB_FICO_DVALIDTODATS8DATUM
F_VALIDTOINCInclusive Indicator for Valid-to Date TB_FICO_FVALIDTOINCCHAR1T_FICO_FFLAG
F_VALIDTOULTMonth-End Indicator for Valid-to Date TB_FICO_FVALIDTOULTCHAR1T_FICO_FFLAG
O_TIMELIMReason for Time Limit TB_FICO_OTIMELIMNUMC2T_FICO_OTIMELIM
R_PERCENTAGEPercentage rate for condition items PKONDDEC10(7) DECV3_7
SZSREFVZ+/- sign / reference interest rate operator SZSREFVZCHAR1SZSREFVZ
O_INTREFReference Interest Rate SZSREFCHAR10Assigned to domainZIREFKU
R_INCREMENTReference Interest Rate Markup / Markdown TB_FICO_RINTREFINCREMDEC10(7) T_CML_PERCENTAGE

Key field Non-key field



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

As RIOA_COT 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 RIOA_COT as there is no data to select.

How to access SAP table RIOA_COT

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

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