The Home Page tiles JSON descriptor, for example, tiles.json
, contains the definition of the Home Page tiles for the extension application.
SAP Business Technology Platform, Neo environment will sunset on December 31, 2028, subject to terms of customer or partner contracts.
For more information, see SAP Note 3351844.
This documentation refers to SAP Business Technology Platform, Neo environment. If you are looking for documentation about other environments, see SAP Business Technology Platform
↗️ .
The support of the Home Page tiles in SAP SuccessFactors has been discontinued. See Home Page Tiles.
We recommend that you use the latest home page. See Migrating to the Latest Home Page.
Home Page Tile Properties |
|
---|---|
|
The name of the tile used to identify it. This name is used in the Home Page administration tools and it is not visible to end-users, but only to HR administrators. |
|
Defines the localized tile title and description. |
|
A metadata property. This is the title of the custom tile as it appears to end-users on the Home Page. The value en_US is mandatory. Otherwise, the value for other locales is not provided, and end-users will see a blank tile. |
|
A metadata property. This is a subtitle that appears on custom tiles under the tile title. Subtitles are optional. If you do not want to use a subtitle, you can leave the field blank. |
|
A metadata property. Using this propety, you can localize the title, and the subtitle. |
|
Determines how the tile appears to end-users. Currently, only static type is supported. The value static is mandatory. |
|
Contains the icon property. |
|
A configuration property. Contains the ID of the icon that you want to use for the custom tile. You can take its ID from SAP SuccessFactors system. Go to Admin Center > Manage Home Page > Add Custom Tile and then follow the wizard until you choose the icon in the Tile tab. Then, take its ID and place it in the |
|
The tile navigation determines how the tile responds when a user clicks or selects it. You can choose from the following options:
|
For more details about the Home Page tiles properties, see Custom Tile Configuration Settings.
The
tiles.json
descriptor file must use UTF-8 encoding and its size must not exceed 100 KB.
Example of a Home Page tile JSON descriptor.
[{
"tileVersion": "NEW_HOME_PAGE",
"tiles": [{
"name": "New Test Application",
"section": "news",
"metadata": [{
"title": "My new home page tile",
"subTitle": "This is new home page tile",
"locale": "en_US"
}],
"type": "static",
"configuration": {
"icon": "sap-icon://add-product"
},
"navigation": {
"type": "url",
"configuration": {
"openInNewWindow": false,
"url": "index.html"
}
}
}]
}]