0

我们如何在 HANA XSA 的 fiori 启动板模块中创建动态磁贴。您能否分享一些链接或文档。

谢谢, 希瓦姆

4

1 回答 1

1

您需要在 crossNavigation 下更新应用程序的 manifest.json 文件。“indicatorDataSource”部分使磁贴动态,例如

…
“crossNavigation”: {
“inbounds”: {
“SalesPerformanceDisplay”: {
“semanticObject”: “SalesPerformance”,
“action”: “Display”,
“deviceTypes”: {
“desktop”: true,
“tablet”: true,
“phone”: true
},
“info”: “”,
“icon”: “sap-icon://Fiori2/F0365”,
“indicatorDataSource”: {
                          “path”: “/product_sales/resources/sap/demo/dynamictile/dynamic.json”,
                          “refresh”: “6000”,
                          “displayNumberUnit”: “%”
                  },
…

有关更多信息,请在此处查看以下文档: https://help.sap.com/saphelp_uiaddon10/helpdata/en/4d/2b9e3c92e54b2192f031a2941927d6/content.htm 和此处: https : //help.sap.com/saphelp_snc700_ehp04/helpdata/ de/be/0cf40f61184b358b5faedaec98b2da/frameset.htm

于 2018-10-22T13:12:51.937 回答