Skip to content
Release: Australia · Updated: 2026-03-12 · Official documentation · View source

DSCScriptableAPI- Global

The DSCScriptableAPI provides methods for checking the health of your domain configuration for an instance.

This API is part of the Domain Separation Center dashboard and is available in the SNC global namespace.

The com.glide.domain.msp_extensions.installer plugin must be activated for Domain Separation Center dashboard availability.

Parent Topic:Server API reference

DSCScriptableAPI - DSCScriptableAPI()

Instantiates a new DSCScriptable object.

NameTypeDescription
None  

DSCScriptableAPI - chkDataInvalidDomainForTables(String tableNames)

Checks a list of comma-separated tables for invalid domains.

View records that reference invalid domains in the Domain Log [syslog_domain] table.

NameTypeDescription
tableNamesStringComma-separated list of table names.
TypeDescription
StringGUID of any invalid references; OK otherwise
var dsc = new SNC.DSCScriptableAPI();
dsc.chkDataInvalidDomainForTables('task, sys_user');

DSCScriptableAPI - chkDataInvalidPathForTables(String tableNames)

Checks a list of comma-separated tables for invalid domain paths.

Records that have an invalid domain path are logged in the syslog_domain table.

NameTypeDescription
tableNamesStringComma-separated list of table names.
TypeDescription
StringGUID if there are invalid paths; OK otherwise
var dsc = new SNC.DSCScriptableAPI();
dsc.chkDataInvalidPathForTables('task, sys_user');