Autodesk Vault ProfessionalVault API

CommitChangeOrderActivity Method

Autodesk.Connectivity.WebServicesChangeOrderService

Finish a change order activity.

Required Permissions

ChangeOrderParticipate

Syntax

public override ChangeOrder CommitChangeOrderActivity(
   System.long changeOrderId,
   System.long activityId,
   System.long stateId,
   System.DateTime stateEntered,
   MsgGroup[] addComments,
   Email[] notifyEmails
)
Public Overrides NotOverridable Function CommitChangeOrderActivity( _
   ByVal changeOrderId As System.Long, _
   ByVal activityId As System.Long, _
   ByVal stateId As System.Long, _
   ByVal stateEntered As System.Date, _
   ByVal addComments() As MsgGroup, _
   ByVal notifyEmails() As Email _
) As ChangeOrder

Parameters

NameDescription
changeOrderIdThe ID of the targeted change order.
activityIdThe ID of the activity being completed.
stateIdThe ID of the change order State upon starting the activity.
stateEnteredTime when the change order entered its state.
addCommentsArray of comments to be added to the change order.
notifyEmailsAn array of emails to send out upon completion.

Return Value

Returns the targeted change order.

Remarks

A general method of registering with the server that an activity is completed. Can only be called after StartChangeOrderActivity.

See Also