- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-06-2020 05:10 AM
I've seen this referenced in export (to Excel) functions but I cannot get a definition of it.
Is it part of some plugin maybe?
How can I get access to it?
Solved! Go to Solution.
- Labels:
-
Scripting and Coding

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-06-2020 05:30 AM
These are internal java package files which are used for export functionality in the instance.
You cannot get access to the code, but you can use similar syntax below in contextual menu:
var dialog = new GwtPollDialog(g_list.tableName, sysparm_query, sysparm_rows, sysparm_view, 'unload_xml');
dialog.execute();
return;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-06-2020 05:16 AM
those classes are internal to ServiceNow similar to GlideDialogWindow or GlideRecord and you may not have access to that
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-06-2020 05:30 AM
These are internal java package files which are used for export functionality in the instance.
You cannot get access to the code, but you can use similar syntax below in contextual menu:
var dialog = new GwtPollDialog(g_list.tableName, sysparm_query, sysparm_rows, sysparm_view, 'unload_xml');
dialog.execute();
return;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-06-2020 07:17 AM
Hi Sativada, thank you for the response.
Would it be possible to use this syntax for a list banner UI action, to export certain records to excel?
And is there any more documentation on how its used/how I can use it?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-01-2021 03:21 AM
Hi,
I have got a requirement to prefix Ritm to the file instead of table name(which is happening by default) which user will be downloading using the above option.
Can you please help me is there is any way to achieve this?