Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-14-2018 01:49 AM
1 ACCEPTED SOLUTION
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-14-2018 01:55 AM
Hi Shweta,
You can achieve it using following code.
var gr = new GlideRecord('incident');
gr.query();
while(gr.next()){
gs.print("State = " +gr.state.getDisplayValue());
}
Thanks,
Nikhil Dixit
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-14-2018 01:55 AM