Valid System Relationship Types
The following code displays how to determine the valid system managed relationship types supported by the system.
- Connect to the configuration web service.
Code Sample
# Get the valid system managed relationship types.
$relationshipTypes = $xia.GET_ValidSystemRelationshipTypes();
foreach ($relationshipType in $relationshipTypes)
{
Write-Host $relationshipType;
}