βš™οΈSAPTools
🎯

Fiori Launchpad Tile Configurator

FioriNew

Generate SAP Fiori Launchpad tile configuration JSON and ABAP transport objects. Configure static, dynamic, and custom tiles with intent navigation parameters.

Tile Preview

🏠
My Application
Overview

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

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.