cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Have a PTC product question you need answered fast? Chances are someone has asked it before. Learn about the community search. X

File-Based Revision Series

TDT
12-Amethyst
12-Amethyst

File-Based Revision Series

Hi,

I have implemented Custom Revision Scheme following the article -->

https://www.ptc.com/en/support/article/CS148182?source=search

I have the following content in my Verison Loader file

<series name="CustomVersioning">
<value>A</value>
<value>B</value>
<value>C</value>
<value>D</value>
<value>E</value>
</series>

After revising the E.1, I am getting the following error

The series value has reached its maximum value: E, series=CustomVersioning

I wanted to know that how combinations like AA, AB, AC, AD are generated?

Do we need to set this combinations in load file or is there any other way to implement?

1 ACCEPTED SOLUTION

Accepted Solutions
HelesicPetr
22-Sapphire I
(To:TDT)

Hi @TDT 

You need to write all your seeds(values) in the file. 

So you need to add AA, AB ...EE atc...

PetrH

View solution in original post

4 REPLIES 4
HelesicPetr
22-Sapphire I
(To:TDT)

Hi @TDT 

You need to write all your seeds(values) in the file. 

So you need to add AA, AB ...EE atc...

PetrH

TDT
12-Amethyst
12-Amethyst
(To:HelesicPetr)

Hi @HelesicPetr,

Thank you for the solution.

So in OOTB the Multicharacter series would have been defined with all the combinations from A to ZZZ in the load file?

 

HelesicPetr
22-Sapphire I
(To:TDT)

Hi @TDT 

Yes,

I had a customer who wanted thousands revision characters.

You can generated them in excel, . 

here is how to generate alphabet >D How to click and drag to fill in the alphabet in excel

Here is how to generate the AAA to ZZZ

=CHAR(INT((ROW(1:1)-1)/26^2)+65)&CHAR(MOD(INT((ROW(1:1)-1)/26),26)+65)&CHAR(MOD((ROW(1:1)-1),26)+65)

How can I autofill alphabetical characters from AAA to ZZZ in excel?

HelesicPetr_0-1701851270545.png

=CONCATENATE(B17576;A17576;C17576)

HelesicPetr_2-1701851638120.png

Also you can write and use excel macro to generate the values from A to ZZZ

 

PetrH

Hari_Vara
13-Aquamarine
(To:TDT)

Hi TDT,

As PetrH said, you need to write down all the intended Revision Character Values in the load file.

As per best practices , as you might know, Revision letters I , O and L are avoided for ambiguity reasons. 

You need write down all the 100 or 200 Revision Character values as per your requirement.

Just curious, on why you have not used OOTB A,B,C Revision Scheme?

Best Regards

Hari

Top Tags