Overview
Static tiles are a simple way to integrate S10 applications into the SAP Fiori Launchpad. They display fixed information such as title, subtitle, and icon without incorporating dynamic data sources. These tiles are ideal for applications that do not need to display constantly updated information.

By clicking on the tile, the linked S10 application is opened directly.


Steps to create static tiles:

Creating the tile in the Fiori Launchpad Designer:

  • Use the transaction /UI2/FLPD_CUST to start the designer in the browser.
  • Create a new tile in a catalog.
  • At least enter the title of the tile.

Defining the target URL:

  • Enter the target URL that will be started when clicking on the tile.
  • Example of a static target URL: /sap/bc/bsp/s10/myapp/default.htm

Note: The /default.htm ending is only required if the application is not configured as a BSP application. If it is only stored in the MIME Repository, this ending is not automatically added.

Automatic Login:

  • Add the parameter ssologon=yes to the URL to enable automatic login.
  • Example: /sap/bc/bsp/s10/myapp?ssologon=yes

By using this parameter, the S10 application’s login screen is skipped. The login credentials are automatically taken from the Fiori Launchpad, based on the SSO token (Single Sign-On), which enables authentication in the SAP system without the user having to re-enter their credentials.

Custom Parameters

You can pass custom parameters in the target URL to set, for example, a start screen. The following ABAP code shows how the start= parameter is evaluated:

  data: querystrings type table of string,
        querypart    type string,
        startscreen  type string.
split s10session->clientquerystring at '&' into table querystrings. loop at querystrings into querypart. if querypart cp 'start=*'. startscreen = querypart+6. endif. endloop.
Example: /sap/bc/bsp/s10/myapp?start=orderscreen

Component S10 Framework