cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

HeaderInfo - Transalate or change Text 'Object Information'

0 Kudos
639

Hello

Would you please support to control HeaderInfo tab so I could change the text 'Object Information' in header tab

Thank you so much

Accepted Solutions (0)

Answers (2)

Answers (2)

BentziBinik
Explorer

 

💡 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! 🚀

Sample Code (Source)
 
"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,
                            ...
                        }
                    }
                }
            }
        }
    }
mdcastle
Active Participant
0 Kudos

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