- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2018 04:04 AM
how to fetch sysid of current record?
Solved! Go to Solution.
- Labels:
-
Field Service Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2018 01:23 PM
Hi ,
You can open any record , and get the sys_id from header menu options ( as below )
If you are trying from some script using GlideRecord , you can get the sys_id of each record from object of GlideRecord ( see the sample code below )
gr.query();
gs.print(gr.sys_id);
Please mark this response as correct and helpful if it helps you can mark more that one reply as accepted solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2022 07:39 AM
To fetch sys_id of the newly created interaction ticket in business rule
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2022 04:14 AM
Hey,
as below
1. Client: g_form.getUniqueValue();
2. Server: current.sys_id;
current.getUniqueValue();
BR, SoHit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2024 10:57 PM
Right-click on the header menu to find an option called 'Copy Sys Id'. Click on it.