what is GlideURL and how to use it?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-30-2016 06:29 AM
what is GlideURL and how to use it for uploading file ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-30-2016 07:20 AM
i dont think there is a direct way to do it.
But what you need is create a processor on SN, and there you can scrip to receive file and then do whatever with it. What exactly are you trying to achieve?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-30-2016 07:56 AM
Implementation is very similar to import set.means importing data in ServiceNow .but in my case end user Dont have access to import set application.
Implementation:
want to import data in some table ???
I have tried by making UI page and putting standard code of HTML for importing file but unable to sent this data in table.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-30-2016 07:57 AM
Let me also suggest some other way of doing this if you have.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-09-2016 03:32 PM
GlideURL is a client side class that can help you parse parameters from the URL quickly and safely. Working to get it better documented on developer.service-now.com.
Example
- var gUrl = new GlideURL();
- gUrl.setFromCurrent();
- var view = gUrl.getParam("sysparm_view");