on 2021 Apr 22 4:49 PM
Request clarification before answering.
💡 Fiori Elements V4 :
If you want to hide the Header Content section in an Object Page, just add the following setting to your manifest.json:
"editableHeaderContent": false
This disables editing for the header area and effectively hides it from the UI.
Simple, clean, and effective! 🚀
"sap.ui5": {
...
"routing": {
...
{
"pattern": "SalesOrderManage({key})/_Item({key2}):?query:",
"name": "SalesOrderItemObjectPage",
"target": "SalesOrderItemObjectPage"
}
],
"targets": {
"SalesOrderItemObjectPage": {
"type": "Component",
"id": "SalesOrderItemObjectPage",
"name": "sap.fe.templates.ObjectPage",
"options": {
"settings": {
"contextPath": "/SalesOrderItem",
"editableHeaderContent": false,
...
}
}
}
}
}
}You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You need to change the label field in UI.Facet to change the 'Header' text (where the type is #COLLECTION). To change the 'Object Information' you need to change the label where the type is #FIELDGROUP_REFERENCE)
Take a look at the 'Arrangement of Fields in the App' section of this blog
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 18 | |
| 7 | |
| 6 | |
| 6 | |
| 4 | |
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.