I am very curious how and where this tile information is retrieved from HANA cloud.
Here below is my research result.
The tile information is fetched via restful service observed in network tab:

The tile information is fetched via restful service observed in network tab:
1
It is a json stream, use list a small part of it here:
{
"ID": "70c4b7f1-5579-4517-bc09-e7231f5add96-1426085327112",
"packageID": "",
"objectName": "",
"type": "chips.tiles.applauncherdynamic.DynamicTile",
"templateProperties": [
{
"key": "navigation_target_url",
"value": "#flp-runApp?html5App=cuscrmopportunity&SAPUI5.Component=cus.crm.opportunity&url=/"
},
{
"key": "formFactor",
"value": "{\"desktop\":true,\"tablet\":true,\"phone\":true}"
},
{
"key": "service_url",
"value": "/sap/opu/odata/sap/CRM_OPPORTUNITY/Opportunities/$count"
},
{
"key": "sap.hana.uis.flp.app.intentSemanticObject",
"value": ""
},
{
"key": "sap.hana.uis.flp.app.intentAction",
"value": ""
},
{
"key": "navigation_component_url",
"value": "/"
},
{
"key": "service_refresh_interval",
"value": "300"
},
{
"key": "navigation_component_name",
"value": "cus.crm.opportunity"
},
{
"key": "allow_unknown_parameters",
"value": "true"
},
{
"key": "tile_size",
"value": "1x1"
},
{
"key": "html5_application_name",
"value": "cuscrmopportunity"
},
{
"key": "sap.hana.uis.flp.app.type",
"value": "SAP_UI5_Component"
},
{
"key": "display_icon_url",
"value": "sap-icon://Fiori2/F0012"
},
{
"key": "display_title_text",
"value": "My Opportunities"
}
]
},
The restful service is implemented via consumption_service, whose source code could be found in HANA studio.
The call will delegate to FIORI_DAO:
FIORI_DAO is a subclass of WORKSPACE_DAO:
And workspace DAO just issue the query to HANA database via call getResultSet():
5. Finally the HANA procedure GET_APPSITE will be called:
Inside the procedure we can know the tile information in HANA HCP is retrieved based on the union of the two HANA tables below:
我們的Fiori UI不再是存在netweaver的BSP application裡,而是存在HCP的cloud repository裡了。
2. Fiori Launchpad及相關配置,按照wiki的介紹,現在tile configuration的内容最終是存放在HANA native的table裡,通過XSE暴露的service給client端調用。
XSE的service是通過server side javascript實作的,這些javascript就是前一封郵件裡在HANA studio裡能找到的那些source code。和我們已經很熟悉的client side javascript相比,這些server side javascript在Chrome的F12裡無法看到,也無法在client端debug,因為其是執行在server端的。
如果想要debug,需要用HCP 專門的workbench打開server端的實作,把debugger attach到client端的session上,然後trigger斷點。這個debugger功能很弱,比如看不到callstack。一般情況下如果遇到HCP相關的incident,一旦能排除不是我們application的問題,我一般都直接FW到HCP的component讓他們去看。