In additional under user name I need contact info
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2025 11:47 PM
Hi team,
I have requirment. I need add update by contact information(ex : mail or ph no) long under the name in additional comment.
I have attached screenshot as for screenshot I need add contact information in additional comment
Thank you in advance
Sivananda Reddy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2025 11:53 PM
Hello @Siva82
You can create the After update BR and on change of comments you need to trigger and you need to get the current login users details by gliding on users table and format a string according you requirement like "Updated by"+username +"ph:"+phone+ etc.
and at last you need to update the comments by this string .
If you found this helpful, please give a thumbs up OR mark it as the solution. Thank you!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2025 01:34 AM
Hi @Siva82
Add below script in your business rule to add the email address.
current.comments="Email: "+ gs.getUser().getEmail();
Regards,
Sourabh