Enterprise Resource Planning Blogs by SAP
Get insights and updates about cloud ERP and RISE with SAP, SAP S/4HANA and SAP S/4HANA Cloud, and more enterprise management capabilities with SAP blog posts.
cancel
Showing results for 
Search instead for 
Did you mean: 
former_member184455
Active Participant
In this series of blog posts, I want to discuss some performance aspects of ABAP CDS views. As a performance expert daily working on CDS view performance topics I hope to be able to give some insights from my experience.

I roughly plan to cover the following points, but you are invited to ask for more if it has something to do with CDS view performance. If necessary, I will then consult the true experts ...

As a service for the hasty reader, I put the recommendations of this blog post at the beginning, so that you do not have to scroll down over all the details to find them:





  • Keep an eye on CDS view complexity by using the Dependency Analyzer in ADT

  • Start small with creating simple CDS views, and cautiously go on with more complex ones

  • Expose only required fields to reduce the number of accessed tables, used joins and operations

  • Reduce complexity by using associations instead of LEFT OUTER JOIN

  • Allow for join pruning by using option LEFT OUTER JOIN MANY TO ONE, if possible

  • Maintain performance annotations for your CDS views

  • Do not create CDS views with more than 100 underlying tables. In particular, follow the stricter recommendations of CDS views with service quality A, B, or C

  • Quality of data model and amount of data in underlying data sources is more decisive for runtime than plain CDS view complexity






CDS View Complexity


One key principle of SAP’s Virtual Data Model (VDM) is ‘model once – use everywhere’. This means that the VDM can be used in transactional apps, analytical queries, APIs, extension views, and so on. It is also a prompt to reuse the building blocks of the VDM, the CDS entities, and with their help push-down complex application logic to the HANA database.

Since it is so easy to build and stack CDS views, there is some danger to ‘over-complicate’ single CDS views. During implementation, you should always try to keep as close to the targeted business purpose as possible, and to avoid extra-selects and operations, which are irrelevant for your application.

Read more about that in part 4 – Data Modelling.

Static Complexity


To track the complexity of a CDS view, display the complexity metrics in ABAP Development Tools (ADT) choosing right mouse menu ‘Open With’ --> ‘Dependency Analyzer’.

In the Dependency Analyzer, the view hierarchy and complexity are visualized with 3 tools:

  • SQL Dependency Tree

  • SQL Dependency Graph

  • Complexity Metrics




One simple KPI of the Complexity Metrics is the number of database tables that are used by the CDS view as data sources. The number presented includes all tables that are ‘used’ in the design time definition of the CDS view or its underlying view hierarchy. For tables that can be reached by associations, only those are included in the metric, where the associations are already followed at design time. Associations that could be followed at runtime by using explicit path notation in an SQL access are not counted.

There are of course many more factors that contribute to the complexity of a CDS view: join and union operations, CASE expressions, functions and calculations, aggregations, and others. In one of the following blog posts we will see that for example calculations can have a major impact on CDS view performance. But for now, let’s restrict to the simple ‘number of tables’ metric.

Performance Annotations and Complexity


For CDS view development, SAP has defined three performance annotations (see chapter 7 Performance Requirements in SAP S/4HANA Requirements for Partner Solutions - note: link only works for customer and partners with S-user). At SAP, these annotations must be maintained for every non-private CDS view – and we strongly recommend our customers and partners doing the same. With these annotations the author of a view denotes, which quality of service, size category, and data class the consumer of the CDS view can expect. With respect to the service quality, it is required that in frequently executed transactional processes, only CDS views with high service quality A or B are used. CDS views annotated with these service qualities on the other hand must fulfill several requirements, for example with respect to their response times in simple key accesses. Another direction is that views with service quality A should not have more than 3 underlying tables (for B its 5 tables), where the numbers refer to the Complexity Metrics in ADT. CDS views build to answer complex analytical queries will have service quality D and should not have more than 100 underlying tables.

When looking at SQL statements runtime statistics of many different CDS views, one finds that the observed runtimes are only moderately correlated with number of underlying tables. Of course, the risk of built-in modelling defects raises with the number of joins and other operations in a view. But good performance can be achieved with dozens of tables, while it is also possible to obtain poor response times for a view with only 3 underlying tables. More crucial than the plain number of data sources are the amount of data in these data sources and the quality of the data model.

Nonetheless, the described complexity KPIs where set up for service quality A and B, since for CDS views with a restricted number of data sources runtimes will be better predictable, time for plan creation will be faster, created plans will be more stable and simpler to analyze. As for these views mainly accesses using the CDS key are expected, automated runtime measurements can be set up and monitored easily.

Complexity at Execution Time


When a Fiori app is executed, user parameters will be passed down via OData query options to some handler logic in the ABAP backend. Either the SADL framework builds an SQL statement on a CDS view that is directly passed to the database, or some ABAP processing logic is called that executes SELECTs or JOINs on CDS views.



In both cases, the resulting SQL statement will incorporate the access to a CDS view, which is a SQL expression on its own, plus one or several of the following ingredients:

  • Filters (via WHERE-clause and / or view parameters), projections (field lists), and other SQL options (GROUP BY, ORDER BY, LIMIT, …)

  • Explicit joins of the CDS view with other tables and views in ABAP OpenSQL

  • Additional OUTER JOINs that are added if associations are followed explicitly by accessing fields via path notation

  • Additional fields in WHERE-clause or joins are added if authority checks (DCLs - Data Control Language objects) are assigned to the CDS view


Also, session variables will be passed down from the ABAP session context to HANA. Session variables can influence the processing of a CDS view, since it might be susceptible to the actual session user, date, client, or language.

From the list above it becomes clear, that the SQL access to a CDS view can lead to a SQL statement that is more complex (that is, contains additional joins and accesses more tables) than the static CDS view.

In HANA PlanViz tool ‘Tables Used’ you will find the list of distinct tables that have been accessed in the execution of the SQL statement. Note that this is an aggregated list: tables that are accessed several times in the execution plan will be listed only once. Opposed to that, the Dependency Analyzer in ADT double-counts tables that occur in several positions of the view hierarchy.



There is another reason why the number of accessed tables can be lower in the ‘Tables Used’ list than the one displayed in the Dependency Tree of the CDS view: HANA is able to skip OUTER JOINs at runtime. This happens when the following conditions are fulfilled:

  • The join has been defined as LEFT OUTER JOIN MANY TO ONE

  • Fields coming from the right side of the join are not requested in the field list

  • No filter, ORDER BY or GROUP BY is applied to the right side


Given the condition LEFT OUTER JOIN MANY TO ONE, HANA assumes that there is a 1:1 cardinality between the left and the right side of the join. Therefore, as the join does not change the cardinality of the result set, there is no need to execute it if no field is required from the right side.
With the normal OUTER JOIN, on the other hand, the view from the right-hand side can influence the result size and must not be omitted – otherwise, functional incorrect results could occur.

 

For the recommendations, wind up this blog post.
8 Comments
Jelena
Active Contributor
Thanks for sharing!

Before embarking on the next stage of this journey I'd urge you to consider improving the quality of these blogs. Here are some suggestions.

  1. It's not clear who is the intended audience. If this is for beginners then there needs to be better explanation of the terms used (e.g. SADL framework comes out of nowhere, would readers know what it is?) and simpler language. If this was meant for more experienced developers then probably some obvious points don't really need to be explained while others could use a deeper dive.

  2. This could be due to "lost in translation" or my general stupidity but overall the blog just does not read as a cohesive text with a clear message. In some cases, it's not clear what is even the connection between the recommendations and the blog text itself. There are bits and pieces of knowledge but they seem to be scattered all over the place like the sea shells which the readers have to hunt for while the ocean wave of the blog text flows all over the beach. It might be a good idea to show the text to a colleague to see if they can easily understand the points the author is trying to make. (See also this post.)

  3. In general, programmers are rather inquisitive (well, the good ones anyway 🙂 ), so when offering recommendations it'd make sense to add some factual evidence and other technical details. For example, "do not create... with more than 100 tables". Why? Why 100? What will happen if I do 101?
    Offering more specific examples, with some kind of runtime numbers, performance trace and such (I'm not sure what else is available in HANA world) is much more helpful than plainly stating "don't do X".


There are plenty of old performance related ABAP blogs, might want to search and see which ones are better received and what follow-up questions are usually asked. This one is just from the top of the Google search and not the best blog out there but note how the author there offers SQL trace result screenshots. Just like Alice in Wonderland, ABAPers prefer books (or blogs) with pictures. 🙂

Thanks!

P.S. The link to S4 PDF document does not work for me, says "not accessible".
former_member184455
Active Participant

Thank you, Jelena, for the time and effort you invested (and pardon the pain you had) to give this qualified feedback. And yes, you are right, there are better blog posts on performance out there. I really will try to improve the quality of the next blogs of this series.
One remark on your third point: as stated in the blog, the number of underlying tables is not the most decisive factor for the runtime of a SQL statement. But as from standpoint of security there is not much difference between driving a car with 99 km/h or 103 km/h, in the end you have to set some limit or guiding value.

I expected the document on performance annotations to be accessible since it is in the SAP help portal. Could you try whether this link works for you? <correction: link in blog should work for S-users>

Thank you again, Randolf

Jelena
Active Contributor
0 Kudos
No luck with that link either, sorry. I even tried in another browser with my SID (normally Help articles don't prompt for it but this one wanted me to login) but still got "You have no authorization". If this document is meant to be accessible for all the customers that you might want to contact the owner and ask them to adjust the permissions.

Thanks!
former_member184455
Active Participant
0 Kudos
 

Hi Jelena,

I investigated, the original link in the blog should work for SAP customers and partners with S-user.

Best Regards, Randolf
Jelena
Active Contributor
0 Kudos
I can open it now with SID. Previously it didn't work with SID either. Thanks for the follow-up!

 
maheshpalavalli
Active Contributor
0 Kudos

Hi randolf.eilenberger ,

Super blog..

recently I was checking how the standard BP and service entry sheet CDS views were working and I come across one annotation(infact many new annotations 😄 ) which is “usagetype.servicequality” I tried SAP help and many other sources but I couldn’t find a good source for some proper explanation.. but not anymore now ?

nice explanation on the performance aspects of CDS, I for sure have to revisit this blog multiple times again for reference in future..

I still wonder why I coudlnt find any proper explanation in SAP help about this topic except for the attachment that you have provided..

 

Thanks & Best Regards,

Mahesh

0 Kudos

Hi Randolf,

 

I’m working on an open source project ABAP Best Practice. I would like to ask you to let me include some of you CDS View complexity and performance rules into the list of ABAP best practices. There is a lack of modern Fiori-oriented information for a moment, so I want to enrich it.

Best Regards,

Ilya

 

P.S.: the articles are amazing! Thank you!

former_member184455
Active Participant
0 Kudos
 

Hi Ilya,

Thank you for your feedback. Since the content of these blog posts is no secret science, feel free to reuse what seems reasonable to you - referencing this blog would fine.

Best Regards, Randolf