isRemoteSystemRedundant()
This function returns whether the project has been configured as redundant.
Synopsis
void isRemoteSystemRedundant (int &iAnswer, string System);
Parameters
| Parameter | Description | 
|---|---|
| iAnswer | 
                                 This parameter contains the return value of the check: 1: The specific system is configured redundant. 0: The specific system is not configured redundant. -1: The specific system cannot be reached.  | 
                        
| System | Specifies the system name | 
Return value
None
Error
Missing or invalid arguments.
Description
This function allows to check in a distributed system whether the given sub system is configured as redundant.
                
                Example
            
main()
{
  bool redu;
  redu=isRemoteSystemRedundant(redu, "System3");
  DebugN("System3 is redundant:"+redu);
}
        Assignment
Administration of managers...
Availability
CTRL
