cancel
Showing results for 
Search instead for 
Did you mean: 

Hide Breadcrumb from Dynamic Page Header

10-26-2021 12:42 PM
gregorw SAP Mentor
1881 views 7 comments Go to solution
SAP Managed Tags
Subscribe

Hello SAP Fiori Elements Experts,

the SAP Fiori Design Guidelines define the Breadcrumb section in the Dynamic Page Header as optional. So my question is how can I hide the Breadcrumb?

Best Regards
Gregor

Accepted Solutions (1)

Accepted Solutions (1)

stefaniehager
Product and Topic Expert
Product and Topic Expert

In an OData V4 based app, you can use a manifest setting

				"SalesOrderItemObjectPage": {
					"type": "Component",
					"id": "SalesOrderItemObjectPage",
					"name": "sap.fe.templates.ObjectPage",
					"controlAggregation": "midColumnPages",
					"contextPattern": "/SalesOrderManage({key})/_Item({key2})",
					"options": {
						"settings": {
							"entitySet": "SalesOrderItem",
                            "showBreadCrumbs": false, 

Unfortunately not yet documented, we have addressed this.

regards,

Stefanie

gregorw
SAP Mentor
SAP Mentor
0 Likes

Hi Stefanie,

thank you for this quick soltuion. Is or will be this configuration option also available for V2?

Best Regards
Gregor

Answers (1)

Answers (1)

stefaniehager
Product and Topic Expert
Product and Topic Expert

Hi Gregor,

SAP Fiori elements implements the most common features of a general SAP Fiori floorplan. This scope has been largely defined by what we needed to build SAP S/4HANA Fiori apps. So there can be differences between the general SAP Fiori design guideline and the SAP Fiori elements framework scope of this guideline - like in this case where we don't want our SAP internal developers to have the option to disable breadcrumbs for sake of UX consistency.

I don't know if there is a workaround / trick to disable the breadcrumbs, but I will check our architects tomorrow. Is this an OData V2 or V4 based app? Can you tell me a bit about why you want to disable it?

regards,

Stefanie

gregorw
SAP Mentor
SAP Mentor
0 Likes

We're using CAP Node.JS and already have the V2 proxy in place. So V2 and V4 is possible.