<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Numbering per folder in Vault Customization Forum</title>
    <link>https://forums.autodesk.com/t5/vault-customization-forum/numbering-per-folder/m-p/5979072#M8780</link>
    <description>&lt;P&gt;Hi Wangdu,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks for your reply.&lt;/P&gt;&lt;P&gt;With your snippet I can get the prefix from the folder but not the highest file number in this folder.&lt;/P&gt;&lt;P&gt;I solved the problem now with individual numbering schemes because there where too much existing files with individual numbers in different folders.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again for your note.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jens&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 08 Jan 2016 08:26:11 GMT</pubDate>
    <dc:creator>Jens.Bruhn</dc:creator>
    <dc:date>2016-01-08T08:26:11Z</dc:date>
    <item>
      <title>Numbering per folder</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/numbering-per-folder/m-p/5976566#M8778</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a special request for file numbering in vault...&lt;BR /&gt;We have vault folder names like '100 - Drehteile', '200 - Brennteile' and so on.&lt;BR /&gt;In each folder the filenames have the same prefix as the folder name, for example &amp;lt;100-10025.ipt&amp;gt; or &amp;lt;200-10650.ipt&amp;gt;.&lt;BR /&gt;I'd like to generate the highest number per folder when a new file is created in Inventor.&lt;BR /&gt;I could define an numbering scheme for each folder, but I think with more then 20 folders this is not very smart.&lt;BR /&gt;Maybe someone has a better idea with DataStandard?&lt;BR /&gt;Can I generate this special number, when the user choose the folder name in the Inventor DataStandard dialog?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jens&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jan 2016 21:36:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/numbering-per-folder/m-p/5976566#M8778</guid>
      <dc:creator>Jens.Bruhn</dc:creator>
      <dc:date>2016-01-06T21:36:12Z</dc:date>
    </item>
    <item>
      <title>Re: Numbering per folder</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/numbering-per-folder/m-p/5977150#M8779</link>
      <description>&lt;P&gt;Hi Jens,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I believe it is possible. In Default.ps1 there is function called OnPostCloseDialog. In this function, you have the chance to rename the file like this:&amp;nbsp;$Prop["_FileName"].Value = "New File name.ipt".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To collect the prefix from the folder, use the&amp;nbsp;$Prop["Folder"].Value.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Finally it could be something like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;$Prop["_FileName"].Value =&amp;nbsp;&lt;SPAN&gt;$Prop["Folder"].Value +&amp;nbsp;$Prop["_FileName"].Value&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note: I haven't tested it. But I hope it helps you get in the right direction!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Wangdu&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;coolOrange&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.coolOrange.com" target="_blank"&gt;www.coolOrange.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jan 2016 09:18:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/numbering-per-folder/m-p/5977150#M8779</guid>
      <dc:creator>COOLORANGE</dc:creator>
      <dc:date>2016-01-07T09:18:26Z</dc:date>
    </item>
    <item>
      <title>Re: Numbering per folder</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/numbering-per-folder/m-p/5979072#M8780</link>
      <description>&lt;P&gt;Hi Wangdu,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks for your reply.&lt;/P&gt;&lt;P&gt;With your snippet I can get the prefix from the folder but not the highest file number in this folder.&lt;/P&gt;&lt;P&gt;I solved the problem now with individual numbering schemes because there where too much existing files with individual numbers in different folders.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again for your note.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jens&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jan 2016 08:26:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/numbering-per-folder/m-p/5979072#M8780</guid>
      <dc:creator>Jens.Bruhn</dc:creator>
      <dc:date>2016-01-08T08:26:11Z</dc:date>
    </item>
    <item>
      <title>Re: Numbering per folder</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/numbering-per-folder/m-p/5985911#M8781</link>
      <description>&lt;P&gt;Hi Jens,&lt;/P&gt;
&lt;P&gt;you can achieve this easily by the use of a numbering scheme with prompted text, e.g. ?-#####.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With that you will get individual numbering sequences for each folder.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The prompted text (?) = folder number.&lt;/P&gt;
&lt;P&gt;There are two approaches to solve this:&lt;/P&gt;
&lt;P&gt;1) follow the Vault help example (end of article) and replace the argument "Title" by your number:&amp;nbsp;&lt;A href="http://help.autodesk.com/view/VAULT/2016/DEU/?guid=GUID-40E6D520-2E85-46F2-AFD1-89EEBBD06936" target="_blank"&gt;http://help.autodesk.com/view/VAULT/2016/DEU/?guid=GUID-40E6D520-2E85-46F2-AFD1-89EEBBD06936&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;regards,&lt;/P&gt;
&lt;P&gt;Markus&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jan 2016 07:09:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/numbering-per-folder/m-p/5985911#M8781</guid>
      <dc:creator>Markus.Koechl</dc:creator>
      <dc:date>2016-01-13T07:09:17Z</dc:date>
    </item>
    <item>
      <title>Re: Numbering per folder</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/numbering-per-folder/m-p/5991137#M8782</link>
      <description>&lt;P&gt;Hi Markus,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;good idea, thanks for this.&lt;BR /&gt;I wanted to get the highest number per folder and not over all. So I created an individual numbering scheme per folder.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again and best regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jens&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jan 2016 16:36:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/numbering-per-folder/m-p/5991137#M8782</guid>
      <dc:creator>Jens.Bruhn</dc:creator>
      <dc:date>2016-01-15T16:36:30Z</dc:date>
    </item>
    <item>
      <title>Re: Numbering per folder</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/numbering-per-folder/m-p/5991393#M8783</link>
      <description>Hi, I am wondering that why you need more than one scheme. The prompted input causes the sequence to restart automatically for each individual number.&lt;BR /&gt;?-##### should result in&lt;BR /&gt;1) 100-00000, 100-00001... &lt;BR /&gt;2) 200-00000, 200-00001...&lt;BR /&gt;Eventually still a hint to optimize.&lt;BR /&gt;Thanks,&lt;BR /&gt;Markus</description>
      <pubDate>Fri, 15 Jan 2016 18:39:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/numbering-per-folder/m-p/5991393#M8783</guid>
      <dc:creator>Markus.Koechl</dc:creator>
      <dc:date>2016-01-15T18:39:56Z</dc:date>
    </item>
    <item>
      <title>Re: Numbering per folder</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/numbering-per-folder/m-p/5998280#M8784</link>
      <description>&lt;P&gt;Hi Markus,&lt;/P&gt;&lt;P&gt;I tested it with a scheme like you suggested - you are right!&lt;BR /&gt;I wasn't aware that the prompted input causes a restart of the sequence.&lt;BR /&gt;Thanks a lot and best regards,&lt;/P&gt;&lt;P&gt;Jens&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jan 2016 21:30:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/numbering-per-folder/m-p/5998280#M8784</guid>
      <dc:creator>Jens.Bruhn</dc:creator>
      <dc:date>2016-01-20T21:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: Numbering per folder</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/numbering-per-folder/m-p/6742955#M8785</link>
      <description>&lt;P&gt;Hi Markus&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am sorry i know this has already been solved.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there away to do this through vault when creating a new file in a new folder, which will reset the numbering scheme using data standard to create the new file in vault.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Dec 2016 10:46:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/numbering-per-folder/m-p/6742955#M8785</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-12-12T10:46:07Z</dc:date>
    </item>
    <item>
      <title>Re: Numbering per folder</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/numbering-per-folder/m-p/6743779#M8786</link>
      <description>&lt;P&gt;I am sorry, but I don't see what you are looking for differently to the previous question and solution. Can you share a step by step workflow description?&lt;/P&gt;</description>
      <pubDate>Mon, 12 Dec 2016 16:31:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/numbering-per-folder/m-p/6743779#M8786</guid>
      <dc:creator>Markus.Koechl</dc:creator>
      <dc:date>2016-12-12T16:31:22Z</dc:date>
    </item>
    <item>
      <title>Re: Numbering per folder</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/numbering-per-folder/m-p/6743844#M8787</link>
      <description>&lt;P&gt;Hi Markus&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry i manage to sort it out late this afternoon.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I thought the option only worked in the data standard inventor add in, but i see it also works the the vault data standard add in.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;sorry for wasting your time.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Dec 2016 16:54:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/numbering-per-folder/m-p/6743844#M8787</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-12-12T16:54:23Z</dc:date>
    </item>
  </channel>
</rss>

