Update an existing item.



Code Sample


# Get the existing item.

$item = $xia.GET_Item(1234, 0);


# Check out the item.

$xia.DO_CheckOutItem($item.ItemID);


# Modify the item. 

$item.AssetTag.Overridden = $true;

$item.AssetTag.Value = "A12345";


# Update the item.

$item.VersionDescription = "Updated the asset tag";

$xia.SET_Item($item);


# Check in the item back in.

$xia.DO_CheckInItem($item.ItemID);