display user and email
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
â08-13-2023 09:05 AM
Get assigned to user and email from server data and display as info in client
4 REPLIES 4
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
â08-13-2023 09:23 AM
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
â08-13-2023 09:31 AM
ok . please share script
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
â08-13-2023 09:57 AM

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
â08-13-2023 09:57 AM
@keerthana Use an onLoad client script to access the value of email of the assigned_to user.
function onLoad() {
// Get the value of the "Email" field on the referenced "sys_user"
// record for the "Assigned To" field
var assignedToEmail = g_form.getReference('assigned_to).email;
g_form.addInfoMessage(assignedToEmail);
}