cancel
Showing results for 
Search instead for 
Did you mean: 

Custom chart is not displaying data in SAP UI Integration chart

vadicherla
Explorer
0 Kudos

Hello Experts,

I am new to SAP build work zone advanced edition and UI integration card. I created UI integration card to displays data from the SAP gateway system, so I created destination and consumed that destination in manifest.json and define content as well. But when I preview UI integration card in BAS, it is not showing any data and I don't see any errors in the network tab. Below is the manifest.json code. Kindly help me if I missing anything.

{
    "_version": "1.14.0",
    "sap.app": {
        "id": "ns.uicard",
        "type": "card",
        "title": "Workflow History UI card",
        "subTitle": "",
        "applicationVersion": {
            "version": "1.0.0"
        }
    },
    "sap.ui": {
        "technology": "UI5",
        "deviceTypes": {"desktop": true, "phone": true, "tablet": true},
        "icons": {
            "icon": "sap-icon://list"
        }
    },
    "sap.card": {
        "type": "List",
         "configuration":{
                   "destinations":{
                      "FD1":{
                         "name": "Workflow_Dest",
                         "defaultUrl":"/sap/opu/odata/sap/Z04_SRV/"
                      }
                   }
         },
         "data":{
              "request":{
                "url":"{{destinations.FD1}}/sap/opu/odata/sap/Z04_SRV/ZUI5_COMMONSet",
                "withCredentials": "true"
              },
              "path":"/d/results"
         },
        "designtime":"dt/configuration",
        "header": {
            "title": "Workflow History",
            "subTitle": "All type of Workflow history",
            "icon": {
                "src": "sap-icon://desktop-mobile"
            }
        },
        "content": {
            "item":{
                "title": "{EmpName}",
                "description": "{WiText}"
            },
            "maxItems" : 5
    }
},
    "sap.platform.mobilecards": {
        "compatible": true
    }
}

Accepted Solutions (0)

Answers (0)