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

How to add custom menu button in the object page header of sap Fiori elements

Seetharam1
Associate
Associate
0 Kudos
547

Is it possible to add a custom menu button (similar to a share button) to the header of an object page, as illustrated in the image below? Whenever I attempt to add a custom action in the manifest file, it only results in a standard button. Could you please provide links or resources if this is feasible?

View Entire Topic
junwu
SAP Champion
SAP Champion
0 Kudos

example for v4 FE.

junwu_0-1732195922015.png

 

Seetharam1
Associate
Associate
0 Kudos

Hi Junwu, Thanks for your answer.

However, I prefer to use a custom template for buttons instead of annotation actions because we have customized features.

Ex:  Like adding custom sections in FE V4.

Thanks
Ram

junwu
SAP Champion
SAP Champion
0 Kudos
don't know what you are talking...
babichaudzmitry
Advisor
Advisor
0 Kudos
Example should looks like that
babichaudzmitry
Advisor
Advisor
0 Kudos
Example should looks like that "actions": { "showJobManagerAction": { "text": "Rework Required", "press": "com.sap.apm.rcmds.reusable.ext.CustomActions.onReworkRequired" }, "changeToInProcessAction": { "press": "com.sap.apm.rcmds.reusable.ext.CustomActions.onChangeToInProcess", "text": "{status_code}", "enabled": "{status_code ===}" }, "changeToObsoleteAction": { "press": "com.sap.apm.rcmds.reusable.ext.CustomActions.changeStatus", "text": "Status 2", "enabled": "{= ${ui>/isEditable}}" }, "changeToReopenedAction": { "press": "com.sap.apm.rcmds.reusable.ext.CustomActions.changeStatus", "text": "Status 3", "enabled": "{= !${ui>/isEditable}}" }, "MenuActions": { "text": "Change Status", "visible": "true", "menu": [ "changeToInProcessAction", "changeToObsoleteAction", "changeToReopenedAction" ] } },