Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! X
Per your question, it looks like you would like a number that reports as {XXXXXXX number}-{XX revision} "70000000001- 00". That only works if your company never actually revises but only saves a copy from an existing revisions. What is the actual business requirement for Number and Revision?
You will need to load a new revision table into Windchill to switch from Alphanumeric to Numeric versioning. Information on how is in the documentation or online help.
starting your autonumbering at 7xxxxxxxxxx can be done in 2 ways. The preferred method would be to increment the sequence seed in Oracle to 70000000000, so the next generated number will be 70000000001. This is documented in some Oracle help pages and a couple of threads here. The second method, and easier, would be to modify the number sequence in the OIR so it starts with a 7 and then use a 9-digit sequence number.
If the old 0xxxxxxxxxx numbers are on the same system, you will need to create a new sequence for your 7xxxxxxxxx number series.
Do not expect that all numbers will be issued sequentially. The sequence rules in Oracle jump to the next increment of 10 if a number is not grabbed in a certain time frame or the system is restarted. his can be controlled to avoid the skips in Oracle. Articles here have covered this. Also, if you do some save-as filing, an assembly will grab a new number for every component and if you don't actually use them, they get tossed aside.