- 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
01-26-2022 09:35 AM
The DevTools scoped app contains useful tools and code for developers.
The IsTableDomainSeparated() function checks if domain separation is active AND supported for the given table.
Check it out here: