Automate the @mention functionality
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2024 10:12 PM
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2024 10:37 PM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2024 11:26 PM
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.