Show TOC

Related AppsLocate this document in the navigation structure

By default, the Related Apps button is disabled on object pages created with the object page template. If desired, you can enable this button, which allows you to provide a link to any of the navigation targets of the semantic object.

The Related Apps button is displayed on the object page if you set the showRelatedApps parameter to true in the manifest.json as shown below:

"sap.ui.generic.app": {
		"pages": [
			{
				"entitySet": "SEPMRA_C_PD_Product",
				"component": {
					"name": "sap.suite.ui.generic.template.ListReport",
					"list": true
				},
				"pages": [
					{
						"entitySet": "SEPMRA_C_PD_Product",
						"component": {
							"name": "sap.suite.ui.generic.template.ObjectPage",
							"settings": {
								"showRelatedApps": true
							}
						},
						"pages": [
							{
								"navigationProperty": "to_ProductText",
								"entitySet": "SEPMRA_C_PD_ProductText",
								"component": {
									"name": "sap.suite.ui.generic.template.ObjectPage"
								}
							}
						]
					}
				]
			}
		]
	},