Ui Action buttons

Theja Yamjala
Tera Expert

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.

 

ThejaYamjala_0-1671048702312.png

 

 

ThejaYamjala_1-1671048742413.png

 

 

1 ACCEPTED SOLUTION

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.

View solution in original post

4 REPLIES 4

reshmapatil
Tera Guru

Hi @Theja Yamjala ,

 

You can also see actions above Related Links. Right-click on the action and you can see Edit UI Action. 

reshmapatil_3-1671051685195.png

 

Or open the Additional Actions>Configure> UI Actions. Can open all actions for that table.

reshmapatil_2-1671051530644.png

 

Regards,

Reshma

**Please mark my answer correct or helpful based on the impact**

SanjivMeher
Kilo Patron
Kilo Patron

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.

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

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.