Do you have any question about this error?
Message type: E = Error
Message class: RSRTS_CDS - Messages Transient CDS Queries
Message number: 011
Message text: THEN clause (of case statement) is not a measure
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_CDS011
- THEN clause (of case statement) is not a measure ?The SAP error message RSRTS_CDS011 indicates that there is an issue with the use of a CASE statement in a calculation view or a query where the THEN clause is not defined as a measure. This typically occurs in SAP HANA when you are trying to create a calculated column or a measure using a CASE statement, but the result of the CASE statement does not conform to the expected data type or context.
Cause:
- Incorrect Data Type: The values returned in the THEN clause of the CASE statement are not of a measure type (e.g., numeric). For example, if you are trying to return a string or a non-aggregated value where a measure is expected, this error will occur.
- Context Misalignment: The context in which the CASE statement is used may not align with the expected measure context. For instance, if you are trying to use a CASE statement in a context that requires aggregation, but the result is not aggregated properly.
- Missing Aggregation: If the CASE statement is used in a context that requires aggregation (like in a measure), and the values returned are not aggregated, this can lead to the error.
Solution:
Check Data Types: Ensure that the values returned in the THEN clause of the CASE statement are of a measure type. If you are returning strings or other non-numeric types, consider converting them to a numeric type if applicable.
Example:
CASE WHEN condition THEN CAST(value AS DECIMAL(10,2)) ELSE 0 END
Use Aggregation: If the CASE statement is being used in a measure context, ensure that the results are aggregated properly. You can use functions like SUM, AVG, COUNT, etc., to aggregate the results.
Example:
SUM(CASE WHEN condition THEN value ELSE 0 END)
Review Context: Make sure that the CASE statement is being used in the correct context. If it is part of a calculated column, ensure that it is appropriate for that context. If it is part of a measure, ensure that it is defined correctly.
Testing: Test the CASE statement independently to ensure that it returns the expected results without errors. You can run the SQL in a SQL console to validate the logic.
Related Information:
By following these steps, you should be able to resolve the RSRTS_CDS011 error and ensure that your CASE statements are correctly defined as measures.
Get instant SAP help. Start your 7-day free trial now.
RSRTS_CDS010
Restricted key figure could not be derived
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
RSRTS_CDS009
Identifier &1 (on position &2) of select list cannot be resolved
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
RSRTS_CDS012
WHEN clause (of searched case statement) is not a select option table
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
RSRTS_CDS013
ELSE clause (of case statement) must contain NULL value
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.