The method gets the manual relationships between an item and other items within the system.



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;

}