- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-10-2018 02:56 PM
i have Group field(reference) in KB record so when i select the group name in KB record then that group name should be upadte in KB Group field(string type) of Approval table.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-11-2018 02:12 AM
Hi Karthik,
Replace,
var one = current.u_group;
with
var one = current.u_group.getDisplayValue();
Thanks,
Maddy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-11-2018 02:12 AM
Hi Karthik,
Replace,
var one = current.u_group;
with
var one = current.u_group.getDisplayValue();
Thanks,
Maddy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-11-2018 02:30 AM
Hi Madanm,
Thanks for your help...!
it is working now!!