How To Fix RSRTS_CDS011 - THEN clause (of case statement) is not a measure


SAP Error Message - Details

  • 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

  • Show details Hide details


  • Self-Explanatory Message

    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.



    What else can you do?

    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.


Smart SAP Assistant

  • What is the cause and solution for SAP error message 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:

    1. 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.
    2. 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.
    3. 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:

    1. 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
    2. 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)
    3. 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.

    4. 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:

    • SAP HANA Documentation: Refer to the official SAP HANA documentation for more details on using CASE statements and measures in calculation views.
    • Data Modeling Best Practices: Familiarize yourself with best practices in data modeling within SAP HANA, especially regarding measures and dimensions.
    • Debugging Tools: Use debugging tools available in SAP HANA Studio or SAP Web IDE to trace the execution of your queries and identify where the error occurs.

    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.

    • Do you have any question about this error?


      Upgrade now to chat with this error.


Instant HelpGet instant SAP help. Start your 7-day free trial now.


Related SAP Error Messages

Click the links below to see the following related messages:

Click on this link to search all SAP messages.


Rating
ERPlingo's SAP support assistant is amazing. Saves me countless hours trying to solve complex SAP issues myself. It's a real game changer!
Rate 1
Thomas Michael
SAP Consultant, Author & Speaker