This is a test message to test the length of the message box.
Login
|
ABAP RAP App Count
Created by Software-Heroes

RAP - Show app count (Tile)

2192

This example is about displaying a counter on the tile of a Fiori Elements application and how such a thing can be implemented.

Advertising


On an on-premise system there is the Fiori Launchpad Designer, but this is not available on the ABAP environment, so today we would like to introduce you to the possibility of still getting a number on your tile in order to provide the user with information before navigating to the application.

 

Introduction

Tiles in the Fiori Launchpad are used to navigate to the individual applications and usually differ from each other in terms of text and icons. They are intended to make it easier for the user to navigate between the many applications and offer a nice entry point into the Fiori world without being overloaded with transaction codes.

 

In some cases we have tiles where the user is supposed to process TODOs or is informed about a current status. Displaying the number directly on the tile has advantages because the user does not have to navigate into the application to see changes.

 

Implementation

So what does the implementation of the function look like? First of all, we should already have a Fiori application in the Business Application Studio and it should also have a Fiori Launchpad configuration, as this should also be integrated into the Launchpad later. For this we use our example application from this article:

 

Now we have to adapt the “crossNavigation” part in the manifest.json file, where we had already entered the icon so that not only text on the tile can be read. We now need to add the following information to this section:

"indicatorDataSource": {
  "dataSource": "mainService",
  "path": "/Partner/$count",
  "refresh": 5
}

 

In the end, the section should look something like this.

 

So what exactly have we added? We have added another source to display information on the tile:

  • dataSource - In the "dataSources" area you will find the various sources of our app that provide data. In most cases when we use a Fiori Elements app, the name "mainService" is used. We refer to this service in order to read further information.
  • path - Specifying the path to get the result, in the example the entity "Partner" is used and the number is determined for it.
  • refresh - Number of seconds until the count on the tile is refreshed again. If it is 0, the counter is only determined once when loading, otherwise it is read every x seconds, whereby the minimum should be 10.

 

Result

After deploying the customized configuration, we just need to update the launchpad and get the result on our tile.

 

If we open the network tab in the browser's developer tools, we can also see how the launchpad keeps getting the current number from the backend.

 

Conclusion

Implementing the number on a tile works a little differently than in the backend, but with the necessary knowledge it shouldn't be a problem for you. As a tip, we would also like to give you that you should always keep an eye on the performance when the CDS View determines the data for the count in the background; requests for an update should be made accordingly frequently.


Included topics:
RAPBTPApp TileCountREX1
Comments (0)



And further ...

Are you satisfied with the content of the article? We post new content in the ABAP area every Tuesday and Friday and irregularly in all other areas. Take a look at our tools and apps, we provide them free of charge.


RAP - Icons

Category - ABAP

How do you find the right icons in the UI5 environment, and how can you integrate them into your Fiori Elements application using ABAP? Let's answer this question in this article.

03/13/2026

RAP - Grouping of Actions

Category - ABAP

How can you group your various actions in RAP under a single button, especially if the actions are quite similar? This article will look at the details of implementing this with ABAP.

03/10/2026

ADT - RAP Extension Assistent [MIA]

Category - ABAP

You want to extend a RAP object and don't know exactly where to start? Perhaps the Extension Assistant can help you and guide you through the process step by step.

03/06/2026

ADT - RAP Analyzer [MIA]

Category - ABAP

Getting to grips with and understanding existing RAP objects can not always be easy, especially when dealing with complex objects. Questions such as which pattern is used and which objects are important usually need to be worked out.

02/24/2026

RAP - Position of Buttons

Category - ABAP

In this article, we'll look at the different button positions. Where can we place the various actions in RAP, and how do we use them?

02/17/2026