- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2022 12:12 PM
I don't see save, update, delete buttons in UI action of my form. I don't know whether that are out of the box or not.
I have to change order of those as it currently as Update,save,delete (save,update and delete).
can please let me know someone how can I see and figured it out.
below is the screenshot for reference.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2022 02:30 PM
You can navigate to System Definition->UI action and search for Save, Update and Delete with Table as Global. For save the action name is sysverb_update_and_stay. For update it is sysverb_update and for delete it is sysverb_delete.
You can also create you own Email UI action, because you can't move it from the OOB position.
It should be a client UI action with script
function openEmailClient(){
emailClientOpenPop('<your_table_name>');
}
And onClick field as openEmailClient()
Please mark this response as correct or helpful if it assisted you with your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2022 01:02 PM
Hi @Theja Yamjala ,
You can also see actions above Related Links. Right-click on the action and you can see Edit UI Action.
Or open the Additional Actions>Configure> UI Actions. Can open all actions for that table.
Regards,
Reshma
**Please mark my answer correct or helpful based on the impact**

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2022 01:26 PM
Delete could be a Global UI action applied to all tables.
You may need to create a custom delete UI action for your table by copying the OOB UI action and then change the order.
Please mark this response as correct or helpful if it assisted you with your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2022 02:14 PM
Hi Sajiv
if the save and update also OOB options. can we change the order like save update instead of update save.
and one more thing where can we these buttons that we used for our form. I tried in configure-->ui actions, there is no button details of update and save.
2. can we bring email icon from ellipse to before paper clip option. will it possible to visible to all with less clicks

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2022 02:30 PM
You can navigate to System Definition->UI action and search for Save, Update and Delete with Table as Global. For save the action name is sysverb_update_and_stay. For update it is sysverb_update and for delete it is sysverb_delete.
You can also create you own Email UI action, because you can't move it from the OOB position.
It should be a client UI action with script
function openEmailClient(){
emailClientOpenPop('<your_table_name>');
}
And onClick field as openEmailClient()
Please mark this response as correct or helpful if it assisted you with your question.