Do you have any question about this error?
Message type: E = Error
Message class: RSRTS_CDS - Messages Transient CDS Queries
Message number: 003
Message text: Lower and upper value of between expression must be literal values
Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of messages in the SAP system have a message text, however this is frequently insufficient to comprehend or resolve the problem.
To make things easier, more detailed information is frequently added to describe the issue, how to fix it, and the necessary steps or configuration modifications.
Unfortunately, there isn't any extra information in this error notice.
First, use our AnswerBot below to get a possible cause and solution (requires a premium subscription).
Also, review the in-depth Common Questions & Answers listed below; you could discover a solution there or be able to connect with others who have faced similar challenges.
You can also try searching the SAP support portal (support.sap.com) but you need a special user ID to access it. It is possible that an SAP support note exists that provides additional details about the mistake or even steps for fixing it.
RSRTS_CDS003
- Lower and upper value of between expression must be literal values ?The SAP error message RSRTS_CDS003 indicates that there is an issue with a "between" expression in a query, specifically that the lower and upper values must be literal values. This error typically occurs in the context of using Core Data Services (CDS) views or when working with queries in SAP BW (Business Warehouse) or SAP HANA.
Cause:
The error arises when you are trying to use variables, parameters, or non-literal values in a "between" condition in your query. In SQL and CDS, a "between" expression requires fixed values (literals) for both the lower and upper bounds. For example, using a variable or a field reference instead of a hard-coded value will trigger this error.
Solution:
To resolve this error, you need to ensure that the values used in the "between" expression are literal values. Here are some steps you can take:
Check the Query Definition: Review the query or CDS view definition where the error occurs. Look for any "between" expressions and ensure that both the lower and upper values are hard-coded literals.
Modify the Query: If you are using variables or parameters, consider changing the logic to use fixed values. For example:
- Instead of using
WHERE column_name BETWEEN variable1 AND variable2
, useWHERE column_name BETWEEN '2023-01-01' AND '2023-12-31'
(as an example of literal values).Use Filters: If you need to use dynamic values, consider using filters or other query constructs that allow for variable input without violating the "between" condition.
Test the Query: After making changes, test the query to ensure that it runs without errors and returns the expected results.
Related Information:
By ensuring that your "between" expressions use literal values, you should be able to resolve the RSRTS_CDS003 error and successfully execute your query.
Get instant SAP help. Start your 7-day free trial now.
RSRTS_CDS002
Error reading InfoProvider for CDS view &1
What causes this issue? CDS view &V1& cannot be interpreted as an InfoProvider.System Response The system issues an error message and will n...
RSRTS_CDS001
Right side of comparison expression must be literal value
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
RSRTS_CDS004
Left side of comparison expresiion must refer to an element
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
RSRTS_CDS005
Condition expression did not lead to any select option entries
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
Click on this link to search all SAP messages.