Autodesk Vault ProfessionalVault API

StartChangeOrderActivity Method

Autodesk.Connectivity.WebServicesChangeOrderService

Start a change order activity.

Required Permissions

ChangeOrderParticipate

Syntax

public override ChangeOrder StartChangeOrderActivity(
   System.long changeOrderId,
   System.long activityId,
   System.long stateId,
   System.DateTime stateEntered
)
Public Overrides NotOverridable Function StartChangeOrderActivity( _
   ByVal changeOrderId As System.Long, _
   ByVal activityId As System.Long, _
   ByVal stateId As System.Long, _
   ByVal stateEntered As System.Date _
) As ChangeOrder

Parameters

NameDescription
changeOrderIdThe ID of the targeted change order.
activityIdThe ID of the activity being started.
stateIdThe ID of the change order State upon beginning of the activity.
stateEnteredTime when the change order entered its state.

Return Value

Returns the targeted change order.

Remarks

A general method of registering with the server that an activity is in process. CommitChangeOrderActivity or CommitChangeOrderCloseActivity must be called for the activity to take place. Call CancelChangeOrderActivity to cancel the activity.

See Also