How to add work notes detail under provider notification
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10 hours ago
I am working on a provider notification that is triggered when a user is mentioned in the work notes. The notification is sent to the mentioned user.
My goal is to include the content of the work notes in this notification. However, I've noticed that the notification record is created on the live_notification table, and there doesn't seem to be a direct variable to access the work notes content.
Is there a way to access the work notes from the live_notification table for my notification?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
8 hours ago
@AkashL722774083 The document ID can give you the record sys_id and record table.
You will probably need email script to glide the record table and get the latest journal entry using:
gr.comments.getJournalEntry(-1);
Please mark the answer correct/helpful accordingly.