2016-11-07 22 views
1

我試圖將我的應用程序鏈接到另一個應用程序。 我能夠鏈接它使用下面的代碼示例應用程序:如何使用註釋鏈接到另一個FIORI應用程序?

<Record Type="com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation"> 
     <PropertyValue Property="SemanticObject" String="Action"/> 
     <PropertyValue Property="Action" String="toappnavsample2"/> 
     <PropertyValue Property="Label" String="SO Navigation (M)"/> 
     <Annotation Term="com.sap.vocabularies.UI.v1.Importance" EnumMember="com.sap.vocabularies.UI.v1.ImportanceType/Medium"/> 
    </Record> 

我不知道該怎麼聯繫起來自己的應用程序「SelfDemo」寫。 我想我無法找到我的應用程序「SelfDemo」的語義對象。 請讓我知道,如果我在正確的軌道上。

回答

0

交叉應用導航功能由Fiori啓動板服務提供。因此,應用程序映射到某個意圖的信息(= SemanticObject和Action的組合)必須在Launchpad配置中給出。換句話說,您需要使用在Launchpad配置中爲您的應用程序定義的SemanticObject和Action的組合。

如果您正在使用ABAP啓動板,信息可以在這裏找到: Configuring Navigation

如果你使用雲啓動板,信息可以在這裏找到: About the SAP Fiori Launchpad Configuration Cockpit

相關問題