나는 개요 페이지 응용 프로그램에서 분석 카드 머리글을 클릭하지만이 날개요 페이지 응용 프로그램 카드를 사용하여 다른 피오리 응용 프로그램을 탐색하는 방법은 무엇입니까?
"NavigationHandler.isIntentSupported.Failed을"오류 제공하여 다른
Fiori
응용 프로그램으로 이동하려합니다.
내비게이션 단계는 누구에게 말해 줄 수 있습니까?
나는 개요 페이지 응용 프로그램에서 분석 카드 머리글을 클릭하지만이 날개요 페이지 응용 프로그램 카드를 사용하여 다른 피오리 응용 프로그램을 탐색하는 방법은 무엇입니까?
"NavigationHandler.isIntentSupported.Failed을"오류 제공하여 다른
Fiori
응용 프로그램으로 이동하려합니다.
내비게이션 단계는 누구에게 말해 줄 수 있습니까?
Here 그것은 : "의도 기반 탐색을 구성하는 기본 방법은"DataFieldForIntentBasedNavigation "을 사용하는 것입니다. 그러나 대상 매핑으로 구성되지 않은 특정 응용 프로그램 경로를 탐색하는 경우 을 사용하여 "DataFieldWithUrl"을 사용하여 특정 응용 프로그램 경로를 구성 할 수도 있습니다. 개요 페이지는 의도 기반 탐색이라는 것을 식별하고 해당 탭의 관련 컨텍스트에서 응용 프로그램을 엽니 다. "
이 또한이 정보가 도움이 될 수 있습니다.
다음은 내 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"
}
}
나는 주어진 링크에서 코드를 사용하지만이 작동하지 않았다이다. 계속 오류가 표시됩니다. "응용 프로그램에 대한 탐색이 지원되지 않습니다." – nsingh
다른 앱도 실행중인 런치 패드에서 개요 페이지가 실행 중입니까? –
예, 동일한 런치 패드에 있습니다. – nsingh