can't find property "glide.servlet.uri" under sys_properties.LIST any Ideas where it chould be.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2015 04:20 AM
can't find property "glide.servlet.uri" under sys_properties.LIST any Ideas where it chould be.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2015 04:28 AM
It is present on sys_properties table only. If its not already present you can just create a property with the exact name and use it.
That is how it works with properties, create it with the same name if not already present
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2015 04:29 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2016 04:42 PM
No need to create it.
Run this script in Background Scripts, you will notice the result.
var instance = gs.getProperty('glide.servlet.uri')+'';
gs.print(instance);
Mariano
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2017 01:13 AM
Yes, it is helpful