Get Manual Relationships
The method gets the manual relationships between an item and other items within the system.
- Connect to the configuration web service.
- Specify the identifier of the item.
Code Sample
# Get the manual relationships.
$manualRelationships = $xia.GET_ManualRelationships(1234);
# Display manual relationship information.
foreach ($manualRelationship in $manualRelationships.ManualRelationship)
{
Write-Host $manualRelationship.TargetItemID;
Write-Host $manualRelationship.RelationshipType;
}