You can enable the simple header facet if you want to display more content in your header facet in SAP Fiori elements for OData V2.
To do so, you must add the simpleHeaderFacets:true flag manually in the app's manifest.json file.
The simple header facet does not support the use of complex data points and
DataFieldForAnnotation, such as ratings, progress indicators, or charts.
The following figure shows a sample simple header facet:
Simple Header Facet
Enabling simple header facet
"sap.ui.generic.app": { "pages": [ { "entitySet": "STTA_C_MP_Product", "component": { "name": "sap.suite.ui.generic.template.ListReport", "list": true, "settings": { "gridTable": false, "multiSelect": true, "smartVariantManagement": true } }, "pages": [ { "entitySet": "STTA_C_MP_Product", "component": { "name": "sap.suite.ui.generic.template.ObjectPage", "settings": { "showRelatedApps": true, "gridTable": false, "editableHeaderContent": true, "simpleHeaderFacets": true // This Enables Simple Header Facet on the Object Page } }, "pages": [ { "navigationProperty": "to_ProductText", "entitySet": "STTA_C_MP_ProductText", "component": { "name": "sap.suite.ui.generic.template.ObjectPage" } } ] } ] } ] }
