Technology Blog Posts by Members
cancel
Showing results for 
Search instead for 
Did you mean: 
rohitchouhan
Participant
3,814
In SAP Analytical Application, we sometimes need to display a loading screen to prevent the user from performing any specific actions on the screen, so here we display a loading screen to let the user know that the data is being processed.

We have predefine function Application.showBusyIndicator() in SAP Analytical Application to show loading screen, and Application.hideBusyIndicator() to hide loading, follow mention syntax.

Show Loading


Application.showBusyIndicator();

Hide Loading


Application.hideBusyIndicator();

Simple Example


Application.showBusyIndicator();

// your performance code here

Application.hideBusyIndicator();

Using those method to user can perform loading functionally.

Conclusion


SAP Analytical Application have many features in it, and loading screen is most common use in every application, so in this article we have provided user to make your application better performer.

 
1 Comment