Skip to content
NextLytics
Megamenü_2023_Über-uns

Shaping Business Intelligence

Whether clever add-on products for SAP BI, development of meaningful dashboards or implementation of AI-based applications - we shape the future of Business Intelligence together with you. 

Megamenü_2023_Über-uns_1

About us

As a partner with deep process know-how, knowledge of the latest SAP technologies as well as high social competence and many years of project experience, we shape the future of Business Intelligence in your company too.

Megamenü_2023_Methodik

Our Methodology

The mixture of classic waterfall model and agile methodology guarantees our projects a high level of efficiency and satisfaction on both sides. Learn more about our project approach.

Products
Megamenü_2023_NextTables

NextTables

Edit data in SAP BW out of the box: NextTables makes editing tables easier, faster and more intuitive, whether you use SAP BW on HANA, SAP S/4HANA or SAP BW 4/HANA.

Megamenü_2023_Connector

NextLytics Connectors

The increasing automation of processes requires the connectivity of IT systems. NextLytics Connectors allow you to connect your SAP ecosystem with various open-source technologies.

IT-Services
Megamenü_2023_Data-Science

Data Science & Engineering

Ready for the future? As a strong partner, we will support you in the design, implementation and optimization of your AI application.

Megamenü_2023_Planning

SAP Planning

We design new planning applications using SAP BPC Embedded, IP or SAC Planning which create added value for your company.

Megamenü_2023_Dashboarding

Dashboarding

We help you with our expertise to create meaningful dashboards based on Tableau, Power BI, SAP Analytics Cloud or SAP Lumira. 

Megamenü_2023_Data-Warehouse-1

SAP Data Warehouse

Are you planning a migration to SAP HANA? We show you the challenges and which advantages a migration provides.

Business Analytics
Megamenü_2023_Procurement

Procurement Analytics

Transparent and valid figures are important, especially in companies with a decentralized structure. SAP Procurement Analytics allows you to evaluate SAP ERP data in SAP BI.

Megamenü_2023_Reporting

SAP HR Reporting & Analytics

With our standard model for reporting from SAP HCM with SAP BW, you accelerate business activities and make data from various systems available centrally and validly.

Megamenü_2023_Dataquality

Data Quality Management

In times of Big Data and IoT, maintaining high data quality is of the utmost importance. With our Data Quality Management (DQM) solution, you always keep the overview.

Career
Megamenü_2023_Karriere-2b

Working at NextLytics

If you would like to work with pleasure and don't want to miss out on your professional and personal development, we are the right choice for you!

Megamenü_2023_Karriere-1

Senior

Time for a change? Take your next professional step and work with us to shape innovation and growth in an exciting business environment!

Megamenü_2023_Karriere-5

Junior

Enough of grey theory - time to get to know the colourful reality! Start your working life with us and enjoy your work with interesting projects.

Megamenü_2023_Karriere-4-1

Students

You don't just want to study theory, but also want to experience it in practice? Check out theory and practice with us and experience where the differences are made.

Megamenü_2023_Karriere-3

Jobs

You can find all open vacancies here. Look around and submit your application - we look forward to it! If there is no matching position, please send us your unsolicited application.

Blog
NextLytics Newsletter Teaser
Sign up now for our monthly newsletter!
Sign up for newsletter
 

KPI Tile Dashboard for all end devices with SAP Analytics Cloud

Some time ago, we implemented an SAC KPI Tile Dashboard within the Analytic Applications. By now, applications in the SAP Analytics Cloud are no longer relevant and have been completely replaced by Stories. Despite slightly changed menus and functions, the KPI Tile Dashboard presented back then can easily be implemented in a Story.

Although the original solution was highly adaptable, there was one limitation: KPIs for the tiles could only come from a single data source.

In this blog post, we will explain how to implement a large KPI board with over 50 KPI tiles, some sourced from different data sources, and discuss the limitations involved.

Blog_SAC_KPI Tile_01_GIF
SAC Tile Story

Even though we usually advocate a best-practice approach that includes a maximum of five to eight different KPIs per dashboard, there are scenarios where a large KPI board makes sense. For example, as a central landing page that allows navigation to various detailed Stories - similar to the Overview Pages in the S/4HANA Fiori Launchpad, which provide a quick overview of relevant key figures and serve as an entry point for further analysis.

By implementing many small tiles, the Story can also be consumed on devices with smaller screens, such as tablets or smartphones. This was, of course, taken into account during development, ensuring that the number of tiles displayed side by side automatically adjusts to the screen size.

Blog_SAC_KPI Tile_00
KPI-Tile Story on smartphone and tablet

The Core Components of the KPI Tile Story

For our Story, we use pre-built tiles that can be shown or hidden as needed. But what exactly are KPI tiles? In general, these are widgets that display key figures, possibly with dimensions, deviations, or thresholds. Essentially, it’s the standard chart widget of the SAC, compressed to highlight only the most important information at a glance.

While this description applies in our case, the technical implementation of our Story relies on the panel widget. This means it doesn’t matter what is inside the panel - besides the chart widget, it can also contain custom widgets, embedded web elements via iFrames, images, or links to other Stories. Various elements can be combined, but given the number and size of the tiles, the rule often applies: less is more.

Blog_SAC_KPI Tile_01
Structure of a KPI Tile

To create an appealing tile design, we use a few tricks. Each tile consists of:

  • Main Panel (PA_001) – This is the primary element that is shown/hidden in the Story, and all scripts refer to it.
  • Inner Panel (PA_BODY_001) – Creates the tile’s visual structure, since spacing between objects cannot be generated within a flow-layout panel.
  • Actual Content (CH_01) – The content defined by the creator, such as a bar chart.

The implementation is quite simple, but it has the restriction that the order of tiles cannot be freely determined; instead, they always follow a predefined structure.

Key Elements of the KPI Board:

  • Flow-layout panel with pre-built tiles
  • SAC data model with a public dimension
  • Input control to manage the tiles
  • Script objects for tile management
  • Bookmark function

Implementation in an SAC Story

The chosen Story layout (Canvas or Flexible) doesn’t really matter since we use a flow-layout panel as the main container. Only the header and side filter menu are outside of this panel. The flow-layout panel has the following advantages and disadvantages:


Advantages

Disadvantages

  • Optimal display at different resolutions
  • Spacing between tiles can only be adjusted indirectly
  • Tiles and sections positions automatically adjust 
  • Object order in the outline during development is not intuitive
  • Flow rules apply only to the panel, not the entire page
 

 

Blog_SAC_KPI Tile_02
Outline of the KPI Tile Story

Dividing the dashboard into sections improves clarity for users. Using the input-control widget for KPI configuration provides a built-in KPI search, significantly enhancing usability - especially when many KPI tiles are included in the Story. Additionally, leveraging hidden bookmarks allows for Story personalization. Whenever a user changes the KPI configuration, a default bookmark is created. This ensures that the next time the Story loads, it starts with the user’s preferred configuration instead of displaying all KPIs.


Dashboarding with SAP Analytics Cloud -
Download the Whitepaper here! 
SAP Analytics Cloud Whitepaper


Backend Implementation of KPI Control

To toggle KPI tiles on and off via input control, we need a central control data source. It must be structured so that data can be easily modified, added, or removed to manage KPIs dynamically. This can be achieved using a Business Warehouse query based on an aDSO, which is maintained via NextTables. A different approach ist the usage of a SAC data model with a Public Dimension.

Blog_SAC_KPI Tile_03

Public Dimension for Tile Configuration

In our case, the SAC data model was deliberately designed with some flexibility. Firstly, we wanted to provide additional information for each KPI tile, such as the source system, query or data model, and a description of the key figure used. Secondly, the data model is not tied to a single Story but serves as a central maintenance point for all KPI Tile Stories.

Unfortunately, Public Dimensions cannot be directly used as a data source in a Story. To bypass this SAC limitation, we create a “dummy” data model containing only the Public Dimension and a single key figure, which is then used as the input control source.

Scripting the KPI Control

Once KPI tiles are created in the Story and the Public Dimension is populated, we move on to the final technical step. Input controls typically filter only data within other widgets. In our case, we need to use scripting to establish a connection between our tiles and the filter values of the input control.

There are different ways to execute the script, depending on how you want to handle configuration and bookmarks. However, the following process always applies:

Blog_SAC_KPI Tile_04

We have a table in the background controlled by the input control. The script runs only when the “onResultChanged” trigger of the table is activated.

In our case, multiple scripts are executed:

Blog_SAC_KPI Tile_05

Temporarily hiding the flow-panel layout (FLP_BODY) during execution makes the process look smoother. If all tiles in a section are hidden, the section header is also hidden. Additionally, the default bookmark is created and set. However, the core components are the two scripts hideTiles() and showTiles().

With hideTiles(), all relevant tiles are hidden, even if tiles were added to the Story after the initial GoLive.

Blog_SAC_KPI Tile_06

After all tiles have been hidden, we display the new selection using showTiles().

Blog_SAC_KPI Tile_07

To handle the type mismatch between the input control entry and the actual panel, we use Applications.getWidgets. This script is sufficient for implementing KPI control. Additionally, we have included some extra features, such as an info box for all KPIs and links to respective detail Stories, but these go beyond the scope of this blog post.

Future Outlook and the setModel Command

When comparing the original KPI Tile Application with the new KPI Story, both approaches achieve similar results but with different limitations.

The ideal solution would be a Story where each tile can be individually configured—allowing users to select the model, key figures, dimensions, and chart type themselves.

With the Q4.2024 update, we are one step closer to this goal, as the .setModel command for charts has been introduced. This allows the model to be swapped via scripting. Key figures and dimensions have been scriptable for a long time, but chart type changes are still missing from the API commands.

Although some developers desire the ability to change chart types dynamically, this is often impractical. Adjusting the chart type typically requires modifying other chart and layout settings to ensure a meaningful display. These additional configurations could overwhelm users and blur the line between a customizable Story and self-service analytics.

For this reason, users generally prefer KPI boards with well-designed, predefined KPI tiles. A good alternative would be to offer selected KPIs with multiple, carefully chosen chart types to provide different perspectives.

We are eager to see whether SAP will implement this API adjustment…

Do you have questions about SAP Analytics Cloud or other topics? Simply get in touch with us - we look forward to exchanging ideas with you!  

Learn more about  our Dashboard Projects

 

,

avatar

Rafael

Rafael Sachs has been working as an SAP BW and BO consultant in various industries in Germany and abroad since 2013. He covers the range from requirements management to implementation. His core competencies are tailor-made solutions in the front-end area and the professional design of the company's own software NextTables. In his spare time he is a restless hiker, dog tamer and hobby cook.

Got a question about this blog?
Ask Rafael

KPI Tile Dashboard for all end devices with SAP Analytics Cloud
8:37

Blog - NextLytics AG 

Welcome to our blog. In this section we regularly report on news and background information on topics such as SAP Business Intelligence (BI), SAP Dashboarding with Lumira Designer or SAP Analytics Cloud, Machine Learning with SAP BW, Data Science and Planning with SAP Business Planning and Consolidation (BPC), SAP Integrated Planning (IP) and SAC Planning and much more.

Subscribe to our newsletter

Related Posts

Recent Posts