
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2018 05:28 AM
I know you can't use "current" in a client script, but is there any way to get that sys_id in the script?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2018 05:40 AM
Hi,
You can try using
var a = g_form.getUniquevalue();
alert('Sys id is '+a);
Thanks,
Jaspal Singh
Hit Helpful or Correct on the impact of response.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2018 05:59 AM
Just g_form.getUniqueValue() should do it. No need to pass arguments.
For example:
var sysid = g_form.getUniqueValue()
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2018 06:14 AM
Hi,
For sys_id.
try it.
var Sysid = g_form.getUniqueValue();
Regards,
Tushar

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2018 06:56 AM
Yep, g_form.getUniqueValue(); worked wonderfully. Changed code to reflect. Thanks!