<?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: Best practice different numbering schemes for categories  - Vault Data Stand in Vault Customization Forum</title>
    <link>https://forums.autodesk.com/t5/vault-customization-forum/best-practice-different-numbering-schemes-for-categories-vault/m-p/9636483#M4064</link>
    <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/8049350"&gt;@-Roland-&lt;/a&gt;: As part of the new VDS Tutorial, Chapter 11 is dedicated to your question. It uses a different approach compared to Quickstart and should offer the flexibility that you are asking for. Check out here:&amp;nbsp;&lt;A href="https://knowledge.autodesk.com/community/article/312276" target="_blank"&gt;https://knowledge.autodesk.com/community/article/312276&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 15 Jul 2020 10:23:12 GMT</pubDate>
    <dc:creator>Markus.Koechl</dc:creator>
    <dc:date>2020-07-15T10:23:12Z</dc:date>
    <item>
      <title>Best practice different numbering schemes for categories  - Vault Data Standard</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/best-practice-different-numbering-schemes-for-categories-vault/m-p/9473384#M4058</link>
      <description>&lt;P&gt;Hello experts,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;what is the best practice different numbering schemes for categories.&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;category "Engineering" - number schemes "E1" + "E2" + "E3"&lt;/P&gt;&lt;P&gt;category "Engineering2" - number schemes "E3"+"E4"&lt;/P&gt;&lt;P&gt;category "Office" - number schemes "O1" + "O2"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We uses Vault pro 2020 with Datastandard "VDS-Quickstart-2021"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I testet it with the "function GetNumSchms" in ADSK.QS.Default.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Filter the NumSchems with &lt;FONT&gt;$allowedNumSchemes&lt;/FONT&gt; works. &lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #666666; cursor: text; font-family: inherit; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.7142; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;But what is the &lt;/SPAN&gt;&lt;SPAN style="background-color: #ffffff; box-sizing: border-box; color: #666666; cursor: text; display: inline; float: none; font-family: inherit; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.7142; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;best practice&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #666666; cursor: text; font-family: inherit; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.7142; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt; to filter it for &lt;/SPAN&gt;&lt;SPAN style="background-color: #ffffff; box-sizing: border-box; color: #666666; cursor: text; display: inline; float: none; font-family: inherit; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.7142; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;categories. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;$allowedNumSchemes = @('Konstruktion_Auftragsbezogen','Konstruktion','Bestandskonstruktion','Freigabezeichnungen')
$_FilteredNumSchems = @()
Foreach ($numScheme in $numSchems){
if($allowedNumSchemes -contains $numScheme.Name){
$_FilteredNumSchems += $numScheme
$_FilteredNumSchems = $_FilteredNumSchems | Sort-Object -Property IsDflt -Descending
return $_FilteredNumSchems&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #666666; cursor: text; font-family: inherit; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.7142; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;Works at start but when not when i change the &lt;/SPAN&gt;&lt;SPAN style="background-color: #ffffff; box-sizing: border-box; color: #666666; cursor: text; display: inline; float: none; font-family: inherit; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.7142; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;category.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;if ($Prop["_Category"].Value -eq "Konstruktion"){
$allowedNumSchemes = @('Freigabezeichnungen')}
else
{$allowedNumSchemes = @('Bestandskonstruktion')}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #666666; cursor: text; font-family: inherit; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.7142; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;The Prob"Beschreibung" works when i change the&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="background-color: #ffffff; box-sizing: border-box; color: #666666; cursor: text; display: inline; float: none; font-family: inherit; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.7142; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;category, but&amp;nbsp;&lt;FONT&gt;$allowedNumSchemes&lt;/FONT&gt; dosen´t work.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;$Prop["_Category"].add_PropertyChanged({
If($Prop["_Category"].Value -eq "Konstruktion") 
	{
$Prop["Beschreibung"].Value = "Engineering Document"
$allowedNumSchemes = @('Freigabezeichnungen')
}
Else
{
$Prop["Beschreibung"].Value = "Non-Engineering Document"
$allowedNumSchemes = @('Bestandskonstruktion')
}
})&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone have any idea how to solve the problem easiest?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Roland&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Apr 2020 13:39:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/best-practice-different-numbering-schemes-for-categories-vault/m-p/9473384#M4058</guid>
      <dc:creator>-Roland-</dc:creator>
      <dc:date>2020-04-27T13:39:02Z</dc:date>
    </item>
    <item>
      <title>Re: Best practice different numbering schemes for categories  - Vault Data Stand</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/best-practice-different-numbering-schemes-for-categories-vault/m-p/9473565#M4059</link>
      <description>&lt;P&gt;I did not test in detail, but the first thing you need to check is that the pull-down list of numbering schemes refreshes its content. As a default, the Quickstart sample explicitly loads the schemes only one time:&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;ItemsSource="{Binding PsList[GetNumSchms], Mode=OneTime}"&lt;/LI-CODE&gt;
&lt;P&gt;If you refresh a filtered list of numbering schemes, I suggest loading all themes one time to a $global:_MyNumSchms variable. Create another function to filter the global list to the list required in the current context. This avoids additional server calls during the run time of your dialog.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Apr 2020 14:30:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/best-practice-different-numbering-schemes-for-categories-vault/m-p/9473565#M4059</guid>
      <dc:creator>Markus.Koechl</dc:creator>
      <dc:date>2020-04-27T14:30:03Z</dc:date>
    </item>
    <item>
      <title>Re: Best practice different numbering schemes for categories  - Vault Data Stand</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/best-practice-different-numbering-schemes-for-categories-vault/m-p/9473818#M4060</link>
      <description>&lt;P&gt;Hello Markus,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you for your answer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;ComboBox x:Name="NumSchms" Grid.Column="1" Grid.Row="3"
                      SelectedIndex="0"
                      DisplayMemberPath="Name"
                      SelectedValuePath="Name"
                      SelectedValue="{Binding Prop[_NumSchm].Value}"
                      ItemsSource="{Binding PsList[GetNumSchms], Mode=OneTime}"
                      IsEnabled="{Binding HasItems, RelativeSource={RelativeSource Self}}"
                      Visibility="{Binding NotEditMode, Converter={StaticResource BooleanToVisibilityConverter}}"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The binding mode is "OneTime".&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I've already tested with other modes, but this causes Vault to crash.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We have 8 different categories and 6 different numbering schemes and depending on the category 1-4 of these should be available.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I am now quite sure what you mean. Should I create a $ global: _MyNumSchms with all number schemas, and then filter it in a function depending on the category?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Apr 2020 15:34:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/best-practice-different-numbering-schemes-for-categories-vault/m-p/9473818#M4060</guid>
      <dc:creator>-Roland-</dc:creator>
      <dc:date>2020-04-27T15:34:41Z</dc:date>
    </item>
    <item>
      <title>Re: Best practice different numbering schemes for categories  - Vault Data Stand</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/best-practice-different-numbering-schemes-for-categories-vault/m-p/9513589#M4061</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I have a problem that the NumShems list is not updated, when I change the category in the standard dialog box.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;function InitializeWindow&lt;BR /&gt;{&lt;BR /&gt;#begin rules applying commonly&lt;BR /&gt;$Prop["_Category"].add_PropertyChanged({&lt;BR /&gt;if ($_.PropertyName -eq "Value")&lt;BR /&gt;{&lt;BR /&gt;#region quickstart&lt;BR /&gt;#$Prop["_NumSchm"].Value = $Prop["_Category"].Value&lt;BR /&gt;allowedNumSchemes&lt;BR /&gt;m_CategoryChanged&lt;BR /&gt;#endregion&lt;BR /&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;function GetNumSchms&lt;BR /&gt;{&lt;BR /&gt;if ($Prop["_CreateMode"].Value)&lt;BR /&gt;{&lt;BR /&gt;try&lt;BR /&gt;{&lt;BR /&gt;#Adopted from a DocumentService call, which always pulls FILE class numbering schemes&lt;BR /&gt;[System.Collections.ArrayList]$numSchems = @($vault.NumberingService.GetNumberingSchemes('FILE', 'Activated'))&lt;/P&gt;&lt;P&gt;if ($numSchems.Count -gt 1)&lt;BR /&gt;{&lt;BR /&gt;#$numSchems = $numSchems | Sort-Object -Property IsDflt -Descending&lt;BR /&gt;#region Quickstart&lt;BR /&gt;$mWindowName = $dsWindow.Name&lt;BR /&gt;switch($mWindowName)&lt;BR /&gt;{&lt;BR /&gt;"FileWindow"&lt;BR /&gt;{&lt;BR /&gt;#$_FilteredNumSchems = $numSchems | Where { $_.IsDflt -eq $true}&lt;BR /&gt;#$Prop["_NumSchm"].Value = $_FilteredNumSchems[0].Name&lt;BR /&gt;#$dsWindow.FindName("NumSchms").IsEnabled = $true&lt;BR /&gt;#return $_FilteredNumSchems&lt;/P&gt;&lt;P&gt;$_FilteredNumSchems = @()&lt;BR /&gt;Foreach ($numScheme in $numSchems){&lt;BR /&gt;if($global:_MyallowedNumSchemes -contains $numScheme.Name){&lt;BR /&gt;$_FilteredNumSchems += $numScheme&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;$_FilteredNumSchems = $_FilteredNumSchems | Sort-Object -Property IsDflt -Descending&lt;/P&gt;&lt;P&gt;return $_FilteredNumSchems&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;function allowedNumSchemes&lt;BR /&gt;{&lt;BR /&gt;if($prop["_Category"].Value -eq "Office"){&lt;/P&gt;&lt;P&gt;$global:_MyallowedNumSchemes = @('Office')&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;if($prop["_Category"].Value -eq "Konstruktion"){&lt;/P&gt;&lt;P&gt;$global:_MyallowedNumSchemes = @('Freigabezeichnungen' , 'Konstruktion','Office')&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;if($prop["_Category"].Value -eq "Zeichnungsableitungen"){&lt;/P&gt;&lt;P&gt;$global:_MyallowedNumSchemes = @('Bestandskonstruktion')&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;if($prop["_Category"].Value -eq "Freigabezeichnungen"){&lt;/P&gt;&lt;P&gt;$global:_MyallowedNumSchemes = @('Freigabezeichnungen')&lt;/P&gt;&lt;P&gt;}&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Does anyone have a good idea for a solution?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 May 2020 17:28:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/best-practice-different-numbering-schemes-for-categories-vault/m-p/9513589#M4061</guid>
      <dc:creator>-Roland-</dc:creator>
      <dc:date>2020-05-13T17:28:31Z</dc:date>
    </item>
    <item>
      <title>Re: Best practice different numbering schemes for categories  - Vault Data Stand</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/best-practice-different-numbering-schemes-for-categories-vault/m-p/9515032#M4062</link>
      <description>&lt;P&gt;In general, I strongly believe, that having a single numbering scheme providing unique file names is the best practice. That's my personal experience and view, based on the trouble and efforts that I see customers struggling with.&lt;/P&gt;
&lt;P&gt;However, I respect that many think differently. The Quickstart configuration sample that you are using is prepared to activate a numbering scheme per category. It is much simpler than you tried.&lt;/P&gt;
&lt;P&gt;Load all available numbering schemes; to do this, you need to remove the filters in GetNumSchms like this:&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;function GetNumSchms
{
	if ($Prop["_CreateMode"].Value)
	{
		try
		{
			#Adopted from a DocumentService call, which always pulls FILE class numbering schemes
				[System.Collections.ArrayList]$numSchems = @($vault.NumberingService.GetNumberingSchemes('FILE', 'Activated'))

			if ($global:numSchems.Count -gt 0)
			{
				#region Quickstart
					$mWindowName = $dsWindow.Name
					switch($mWindowName)
					{
						"FileWindow"
						{				
							return $numSchems 
						}
...&lt;/LI-CODE&gt;
&lt;P&gt;The category-changed-event can activate the required one (I added 2 schemes in my environment: "File-Item and "Sequential Files"):&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;function m_CategoryChanged 
{
	$mWindowName = $dsWindow.Name
    switch($mWindowName)
	{
		"FileWindow"
		{
			#Quickstart uses the default numbering scheme for files; GoTo GetNumSchms function to disable this filter incase you'd like to apply numbering per category for files as well
			If ($Prop['_XLTN_AUTHOR'])
			{
				$Prop['_XLTN_AUTHOR'].Value = $VaultConnection.UserName
			}

			#activate numbering scheme according to selected category
			if($prop["_Category"].Value -eq "Office")
			{ 
				$Prop["_NumSchm"].Value = "Sequential Files"
			}
			else
			{
				$Prop["_NumSchm"].Value = "File-Item"
			}
			$dsWindow.FindName("NumSchms").Text = $Prop["_NumSchm"].Value
		}
....&lt;/LI-CODE&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt; Should I move the comment to another location? Honestly, I did not recall that I already posted a note, how to do this in the code:&amp;nbsp;&lt;FONT face="comic sans ms,sans-serif"&gt;&lt;EM&gt;#Quickstart uses the default numbering scheme for files; GoTo GetNumSchms function to disable this filter in case you'd like to apply numbering per category for files as well.&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 14 May 2020 07:12:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/best-practice-different-numbering-schemes-for-categories-vault/m-p/9515032#M4062</guid>
      <dc:creator>Markus.Koechl</dc:creator>
      <dc:date>2020-05-14T07:12:22Z</dc:date>
    </item>
    <item>
      <title>Re: Best practice different numbering schemes for categories  - Vault Data Stand</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/best-practice-different-numbering-schemes-for-categories-vault/m-p/9518663#M4063</link>
      <description>&lt;P&gt;Thank you for your prompt reply&lt;BR /&gt;I set the thread to resolved because I can live with the solution like this. Unfortunately, filtering NumShems does not work as requested.&lt;BR /&gt;When selecting the category, the desired standard numbering scheme is selected as desired.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If the numbering scheme is changed, all numbering schemes are available.&lt;BR /&gt;For example in the category construction only "Konstruktion", "Bestandskonstruktion" and "Konstuktion_Auftagsbezogen" should be available and in the category office only numbering scheme "Office" should be available.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can use the "allowedNumSchemes" function to assign the numbering schemes. It works but only once.&lt;/P&gt;&lt;P&gt;When changing the category, the variable "$ global: _MyallowedNumScheme" is updated,&lt;/P&gt;&lt;P&gt;but "$ _FilteredNumSchems" and "$ NumSchems" are not updated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Roland&lt;/P&gt;</description>
      <pubDate>Fri, 15 May 2020 12:32:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/best-practice-different-numbering-schemes-for-categories-vault/m-p/9518663#M4063</guid>
      <dc:creator>-Roland-</dc:creator>
      <dc:date>2020-05-15T12:32:53Z</dc:date>
    </item>
    <item>
      <title>Re: Best practice different numbering schemes for categories  - Vault Data Stand</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/best-practice-different-numbering-schemes-for-categories-vault/m-p/9636483#M4064</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/8049350"&gt;@-Roland-&lt;/a&gt;: As part of the new VDS Tutorial, Chapter 11 is dedicated to your question. It uses a different approach compared to Quickstart and should offer the flexibility that you are asking for. Check out here:&amp;nbsp;&lt;A href="https://knowledge.autodesk.com/community/article/312276" target="_blank"&gt;https://knowledge.autodesk.com/community/article/312276&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jul 2020 10:23:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/best-practice-different-numbering-schemes-for-categories-vault/m-p/9636483#M4064</guid>
      <dc:creator>Markus.Koechl</dc:creator>
      <dc:date>2020-07-15T10:23:12Z</dc:date>
    </item>
    <item>
      <title>Re: Best practice different numbering schemes for categories  - Vault Data Stand</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/best-practice-different-numbering-schemes-for-categories-vault/m-p/9637070#M4065</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/33301"&gt;@Markus.Koechl&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i've been following her "Vault Data Standard - Tutorial" for a long time.&lt;BR /&gt;I looked at chapters 10 and 11 yesterday evening.&lt;BR /&gt;I will optimize our workflow "Numbering Schemes" again.&lt;BR /&gt;Thanks for the well done Vault Data Standard tutorial I can only recommend to everyone.&lt;BR /&gt;At the moment I am still hanging on another problem "Only Number for Textboxes" but that is another topic.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Roland&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jul 2020 14:54:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/best-practice-different-numbering-schemes-for-categories-vault/m-p/9637070#M4065</guid>
      <dc:creator>-Roland-</dc:creator>
      <dc:date>2020-07-15T14:54:37Z</dc:date>
    </item>
  </channel>
</rss>

