Show TOC

Local Configuration File for the Launchpad SandboxLocate this document in the navigation structure

The local configuration is stored in JSON format. You can configure a list of applications. The applications are launched with an intent that is composed of the syntax <SemanticObject>-<Action>. For each application, specify the following properties:

Table 1:

Property

Description

additionalInformation

The additionalInformation property in this object refers to the name of the root component of your SAPUI5 Fiori application (without ".Component").

applicationType

The application type for SAPUI5 applications is always URL.

url

The URL property is set to the root path of your application (the folder where you would have your Component.js files).

title

The title of your application.

description

A description for the application.

Example
{
    "applications" : { 
        "MyFioriObject-display" : {
            "additionalInformation" : "SAPUI5.Component=com.mycompany.MyFioriApplication",
            "applicationType" : "URL",
            "url" : "/MyFioriApplication",
            "title" : "My Fiori Application",
            "description" : "My first Fiori application"
        },
        "MySecondFioriObject-display" : {
            "additionalInformation" : "SAPUI5.Component=com.mycompany.MySecondFioriApplication",
            "applicationType" : "URL",
            "url" : "/MySecondFioriApplication",
            "title" : "My Second Fiori Application",
            "description" : "My second Fiori application"
        }
    }
}
Caution The intents “MyFioriObject-display” and “MySecondFioriObject-display” must be constructed from two identifiers with a dash, not “MyFioriObject display” or “MyFioriObjectdisplay”. For more information, see Configuring Navigation.