Autodesk Vault ProfessionalVault API

UpdateNumberingScheme Method

Autodesk.Connectivity.WebServicesNumberingService

Updates an existing Numbering Scheme.

Required Permissions

ManageNumberingScheme

Syntax

public NumSchm UpdateNumberingScheme(
   System.long schemeId,
   System.string schemeName,
   System.string providerName,
   NumSchmField[] fields,
   System.bool toUpperCase,
   System.bool reuseNumbers
)
Public Function UpdateNumberingScheme( _
   ByVal schemeId As System.Long, _
   ByVal schemeName As System.String, _
   ByVal providerName As System.String, _
   ByVal fields() As NumSchmField, _
   ByVal toUpperCase As System.Boolean, _
   ByVal reuseNumbers As System.Boolean _
) As NumSchm

Parameters

NameDescription
schemeIdThe ID of the Numbering Scheme to be updated.
schemeNameThe name of the Numbering Scheme.
providerNameThe name of the Numbering Provider that provides numbers for the Numbering Scheme. Please note, this cannot be changed once the Numbering Scheme is in use.
fieldsAn array of fields that make up the scheme. Please note, do not pass in any NumSchmField objects. Instead, pass in objects derived from NumSchmField.
toUpperCaseIf true, the characters in the Numbering Scheme should be displayed as upper case.
reuseNumbersIf true, Item Numbering Schemes will recycle numbers that were generated, but not in use. If false, once a number is created it can no longer be re-used.

Return Value

The updated Numbering Scheme object.

See Also