zoukankan      html  css  js  c++  java
  • SAP云平台上的Fiori Launchpad tile数据是如何从后台取出来的

    After I log on HCP via my own user, I could see many tiles:
    https://fiorilaunchpad-xe84733bd.dispatcher.neo.ondemand.com/sap/hana/uis/clients/ushell-app/shells/fiori/FioriLaunchpad.html

    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:

    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():

    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:

    要获取更多Jerry的原创文章,请关注公众号"汪子熙":

  • 相关阅读:
    delphi RTTI 反射技术
    delphi 自我删除和线程池(1000行代码,需要仔细研究)
    寻找两个已序数组中的第k大元素
    OpenCV中的神器Image Watch
    PYTHON 之 【RE模块的正则表达式学习】
    Call U
    微软IE11浏览器的7大变化
    集群应用及运维经验小结
    逆序对:从插入排序到归并排序
    Jquery 图片轮播实现原理总结
  • 原文地址:https://www.cnblogs.com/sap-jerry/p/12284884.html
Copyright © 2011-2022 走看看