2017-09-05 13 views
0

私は、概要ページのアプリケーションで分析カードヘッダーをクリックするが、その私が概要ページアプリケーションカードを使用して別のフィオリアプリケーションに移動するにはどうすればよいですか?

「NavigationHandler.isIntentSupported.Failedを」エラー与えることによって、別のFioriアプリに移動しようとしています。

誰でもナビゲーションの手順を教えていただけますか?

答えて

0

Here "インテントベースのナビゲーションを構成するには、" DataFieldForIntentBasedNavigation "を使用することをお勧めします。 しかし、ターゲットマッピングとして設定されていない特定のアプリケーションルートへのナビゲーションの場合は、 を使用して、特定のアプリケーションルートを構築するために "DataFieldWithUrl"を使用することもできます。 概要ページではこれがインテントベースのナビゲーションであることが識別され、同じタブの関連するコンテキストでアプリケーションを開きます。 "

linkも役立ちます。

+0

私は与えられたリンクからコードを使用するが、それは動作しませんでしたです。 まだ表示されているエラー "アプリケーションへのナビゲーションはサポートされていません"。 – nsingh

+0

概要ページは、他のアプリも実行しているLaunchpadで実行していますか? –

+0

はい、同じランチパッドにあります。 – nsingh

0

以下は私のmanifest.jsonを

{ 
     "_version": "1.5.0", 
     "start_url": "start.html", 
     "sap.app": { 
      "id": "Overview", 
      "type": "application", 
      "i18n": "i18n/i18n.properties", 
      "applicationVersion": { 
       "version": "1.2.2" 
      }, 
      "title": "{{app_title}}", 
      "description": "{{app_description}}", 
      "ach": "sap", 
      "resources": "resources.json", 
      "dataSources": { 
       "OVERVIEWPAGE_SRV": { 
        "uri": "/sap/opu/odata/ibscms/OVERVIEWPAGE_SRV/", 
        "type": "OData", 
        "settings": { 
         "localUri": "localService/OVERVIEWPAGE_SRV/metadata.xml", 
         "annotations": ["dmAnnot"] 
        } 
       }, 
       "dmAnnot": { 
        "type": "ODataAnnotation", 
        "uri": "localService/OVERVIEWPAGE_SRV/dmAnnot.xml", 
        "settings": { 
         "localUri": "localService/OVERVIEWPAGE_SRV/dmAnnot.xml" 
        } 
       } 
      }, 
      "sourceTemplate": { 
       "id": "OVP.cardtemplate", 
       "version": "0.0.0" 
      }, 
      "crossNavigation": { 
       "inbounds": {} 
      } 
     }, 
     "sap.ui": { 
      "technology": "UI5", 
      "icons": { 
       "icon": "" 
      }, 
      "deviceTypes": { 
       "desktop": true, 
       "tablet": true, 
       "phone": true 
      }, 
      "supportedThemes": ["sap_hcb", "sap_belize"] 
     }, 
     "sap.ui5": { 
      "dependencies": { 
       "minUI5Version": "1.32.0", 
       "libs": { 
        "sap.ui.core": {}, 
        "sap.m": {}, 
        "sap.ui.layout": {}, 
        "sap.f": {}, 
        "sap.ushell": {}, 
        "sap.collaboration": {}, 
        "sap.ui.comp": {}, 
        "sap.uxap": {}, 
        "sap.ovp": {} 
       } 
      }, 
      "models": { 
       "i18n": { 
        "type": "sap.ui.model.resource.ResourceModel", 
        "uri": "i18n/i18n.properties" 
       }, 
       "OVERVIEWPAGE_SRV": { 
        "dataSource": "OVERVIEWPAGE_SRV", 
        "settings": {} 
       }, 
       "@i18n": { 
        "type": "sap.ui.model.resource.ResourceModel", 
        "uri": "i18n/i18n.properties" 
       } 
      }, 
      "extends": { 
       "extensions": {} 
      }, 
      "contentDensities": { 
       "compact": true, 
       "cozy": true 
      } 
     }, 
     "sap.ovp": { 
      "globalFilterModel": "OVERVIEWPAGE_SRV", 
      "globalFilterEntityType": "DmHeader", 
      "cards": { 
       "Overview_card00": { 
        "model": "OVERVIEWPAGE_SRV", 
        "template": "sap.ovp.cards.table", 
        "settings": { 
         "title": "{{Overview_card00_title}}", 
         "entitySet": "DmCoSet", 
         "addODataSelect": "false", 
         "selectionAnnotationPath": "com.sap.vocabularies.UI.v1.SelectionVariant#artistS", 
         "annotationPath": "com.sap.vocabularies.UI.v1.LineItem#artistD", 
         "identificationAnnotationPath": "com.sap.vocabularies.UI.v1.Identification#bar" 
        } 
       }, 
       "Overview_card02": { 
        "model": "OVERVIEWPAGE_SRV", 
        "template": "sap.ovp.cards.charts.analytical", 
        "settings": { 
         "title": "{{Overview_card02_title}}", 
         "entitySet": "DmCostSet", 
         "selectionAnnotationPath": "com.sap.vocabularies.UI.v1.SelectionVariant#costFilter", 
         "dataPointAnnotationPath": "com.sap.vocabularies.UI.v1.DataPoint#chartD",     "chartAnnotationPath": "com.sap.vocabularies.UI.v1.Chart#chart1", 
         "identificationAnnotationPath": "com.sap.vocabularies.UI.v1.Identification#bar", 
         "navigation": "dataPointNav" 
        } 
       } 

      } 
     }, 
     "sap.platform.hcp": { 
      "uri": "webapp", 
      "_version": "1.1.0" 
     } 
    } 
関連する問題