Automate the @mention functionality

Sagarika Sahoo
Tera Contributor

I want a UI action on the rm_story table. When I cilck on the button, it will tag the 'opened by' user and put some worknotes. How this functionality can be achieved and what will be the script for that?

 

TIA.

2 REPLIES 2

Anand Kumar P
Giga Patron
Giga Patron

Hi @Sagarika Sahoo ,

Create new UI action on rm_story table and check form button and add below script

var openedUser=current.opened_by;
current.work_notes=openedUser.getDisplayValue();
current.update();

 

Mark it as helpful and solution proposed if it serves your purpose.
Thanks,
Anand

Is there any way to automate this as in when that work notes is posted, the opened by user should be tagged and notified that someone has mentioned you in that story.