My question is about changing our already implemented revision scheme to a slightly different one.
We already have the following revision scheme = .001-.999
We want to change it to the revision scheme = .01-.99
Is there a way to have a a revision go from part.004 to part.05 for example?
Or will it always go from part.004 to part.00 when I check in a revised part?
Anyone have experience with a change like above?
You could use the Workgroup PDM API to do this. Loop through all the documents in the vault. Get the current revision and strip off it's leading zero and then bump it's revision to this value.
pVal = PDMWDocument.Revision (VB Get property)
pSuccess = PDMWDocument.BumpRevision ( i_cstrNewRev, i_cstrNote)