Fiori Launchpad Tile Configurator
FioriNewGenerate SAP Fiori Launchpad tile configuration JSON and ABAP transport objects. Configure static, dynamic, and custom tiles with intent navigation parameters.
Tile Preview
Tile Configuration JSON
{
"id": "ZMY_TILE_001",
"tileType": "sap.ushell.ui.tile.StaticTile",
"properties": {
"title": "My Application",
"subtitle": "Overview",
"icon": "sap-icon://home",
"targetURL": "#SalesOrder-display"
}
}ABAP Reference
* Fiori Tile Target Mapping β paste into /UI2/FLPD_CONF or use report /UI2/FLP_MASS_UPLOAD * Semantic Object : SalesOrder * Action : display * Title : My Application * Icon : sap-icon://home DATA: ls_mapping TYPE /ui2/cl_cgm_target_map_maint=>ty_s_target_mapping. ls_mapping-semantic_object = 'SalesOrder'. ls_mapping-semantic_action = 'display'. ls_mapping-tile_title = 'My Application'. ls_mapping-tile_subtitle = 'Overview'. ls_mapping-tile_icon = 'sap-icon://home'. ls_mapping-application_type = 'SAPUI5'. ls_mapping-url = '/sap/bc/ui5_ui5/sap/my_app'.
Advertisement
About Fiori Launchpad Tile Configurator
Fiori Launchpad tile configuration β semantic objects, intent navigation, dynamic tile data sources β involves JSON and transport objects that are fiddly to hand-write correctly, especially for dynamic tiles that pull a live count or KPI. This configurator generates valid tile configuration JSON and the matching ABAP transport objects from a guided form.
How to use this tool
- Choose a tile type: static, dynamic, or custom.
- Set the semantic object and action for intent-based navigation.
- For dynamic tiles, configure the data source (OData service and property) used for the counter/KPI.
- Copy the generated tile configuration JSON into your Launchpad catalog/group configuration.
All processing happens locally in your browser. No data is sent to any server. Your SAP code and business data remain private at all times.
Frequently Asked Questions
What is a Fiori Launchpad tile?
A Fiori Launchpad tile is a visual entry point on the SAP Fiori Home page that navigates to a specific application. Tiles can be static (fixed URL), dynamic (show live data from an OData service), or custom (HTML/UI5 content).
What is intent-based navigation in Fiori?
Intent-based navigation uses Semantic Object + Action pairs (e.g., SalesOrder-display) instead of hardcoded URLs. The Fiori Launchpad resolves the intent to the correct application, enabling cross-app navigation and target mapping flexibility.
Where do I apply the generated tile configuration?
Use transaction /UI2/FLPD_CONF (Fiori Launchpad Designer) or /UI2/FLC (Launchpad Content) to create target mappings and tile configurations. The generated JSON and ABAP assignments help you fill in the required fields.
Advertisement