- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2017 11:56 PM
Hi All,
I am just trying to check if the particular instance is domain separated or not? via coding
Is it possible to develop application based on below algorithm,
If (Instance == Domain_Seperated) then
Perform Statement1;
else
Perform Statement2;
If possible provide some example to achieve above requirement.
Thanks,
Kaka Nayeem
Solved! Go to Solution.
- Labels:
-
Scripting and Coding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2017 12:57 AM
Hi,
Please below server side script to verify
if(gs.getProperty("glide.sys.domain.partitioning") == true) {
//Domain seperation is enabled
}
else {
//No
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2017 12:01 AM
I am not aware of any OOTB method but you could glideRecord dictionary and check if there collection present with name sys_domain.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2017 12:05 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2017 12:57 AM
Hi,
Please below server side script to verify
if(gs.getProperty("glide.sys.domain.partitioning") == true) {
//Domain seperation is enabled
}
else {
//No
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2017 02:18 AM
Thanks for Response