
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:
|
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. |
{
"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"
}
}
}