<?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: Rename filename using Part Number property in Inventor Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918459#M48524</link>
    <description>&lt;P&gt;This is the code I use, and it works as you describe. I set it to fire before save. You might have to rename it.&lt;/P&gt;</description>
    <pubDate>Mon, 24 Apr 2023 17:58:05 GMT</pubDate>
    <dc:creator>b.mccarthy</dc:creator>
    <dc:date>2023-04-24T17:58:05Z</dc:date>
    <item>
      <title>Rename filename using Part Number property</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918299#M48519</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;My usual workflow is to use INV Pro 2023&amp;nbsp; &amp;amp; Vault Professional 2023 using a sequential serial numbering scheme.&lt;/P&gt;&lt;P&gt;As I work on a project, I develop a sensible numbering scheme (part number) which is different from the sequential filename.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have encountered an issue where I need to output to a file (preferrably a stp file) for another team member to import into fusion 360 and they need the parts to import with their part numbers (not filename)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas on workflow would be greatly appreciated&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2023 16:50:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918299#M48519</guid>
      <dc:creator>eucci</dc:creator>
      <dc:date>2023-04-24T16:50:33Z</dc:date>
    </item>
    <item>
      <title>Re: Rename filename using Part Number property</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918396#M48520</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;I didn't quite understand the order of saving, so for now I wrote the iLogic code, which converts the file into step format, gives it a name that will is equal to the part number, and saves it to the folder where the original file is located.&lt;/P&gt;&lt;P&gt;Please specify what you need))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Sub&lt;/SPAN&gt; &lt;SPAN&gt;Main&lt;/SPAN&gt;
    &lt;SPAN&gt;' Get the STEP translator Add-In.&lt;/SPAN&gt;
    &lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oSTEPTranslator&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;TranslatorAddIn&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ApplicationAddIns&lt;/SPAN&gt;.&lt;SPAN&gt;ItemById&lt;/SPAN&gt;(&lt;SPAN&gt;"{90AF7F40-0C01-11D5-8E83-0010B541CD80}"&lt;/SPAN&gt;)

    &lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;oSTEPTranslator&lt;/SPAN&gt; &lt;SPAN&gt;Is&lt;/SPAN&gt; &lt;SPAN&gt;Nothing&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;
	    &lt;SPAN&gt;Exit&lt;/SPAN&gt; &lt;SPAN&gt;Sub&lt;/SPAN&gt;
    &lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;

    &lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oContext&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;TranslationContext&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;TransientObjects&lt;/SPAN&gt;.&lt;SPAN&gt;CreateTranslationContext&lt;/SPAN&gt;
    &lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oOptions&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;NameValueMap&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;TransientObjects&lt;/SPAN&gt;.&lt;SPAN&gt;CreateNameValueMap&lt;/SPAN&gt;
    &lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;oSTEPTranslator&lt;/SPAN&gt;.&lt;SPAN&gt;HasSaveCopyAsOptions&lt;/SPAN&gt;(&lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveDocument&lt;/SPAN&gt;, &lt;SPAN&gt;oContext&lt;/SPAN&gt;, &lt;SPAN&gt;oOptions&lt;/SPAN&gt;) &lt;SPAN&gt;Then&lt;/SPAN&gt;
        &lt;SPAN&gt;' Set application protocol.&lt;/SPAN&gt;
        &lt;SPAN&gt;' 2 = AP 203 - Configuration Controlled Design&lt;/SPAN&gt;
        &lt;SPAN&gt;' 3 = AP 214 - Automotive Design&lt;/SPAN&gt;
        &lt;SPAN&gt;oOptions&lt;/SPAN&gt;.&lt;SPAN&gt;Value&lt;/SPAN&gt;(&lt;SPAN&gt;"ApplicationProtocolType"&lt;/SPAN&gt;) = 3
        &lt;SPAN&gt;oContext&lt;/SPAN&gt;.&lt;SPAN&gt;Type&lt;/SPAN&gt; = &lt;SPAN&gt;kFileBrowseIOMechanism&lt;/SPAN&gt;
		
		&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;Path&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt; = &lt;SPAN&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN&gt;Path&lt;/SPAN&gt;
		&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;Name&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt; = &lt;SPAN&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN&gt;Value&lt;/SPAN&gt;(&lt;SPAN&gt;"Project"&lt;/SPAN&gt;, &lt;SPAN&gt;"Part Number"&lt;/SPAN&gt;)

        &lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oData&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;DataMedium&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;TransientObjects&lt;/SPAN&gt;.&lt;SPAN&gt;CreateDataMedium&lt;/SPAN&gt;
		
        &lt;SPAN&gt;oData&lt;/SPAN&gt;.&lt;SPAN&gt;FileName&lt;/SPAN&gt; = &lt;SPAN&gt;Path&lt;/SPAN&gt; &amp;amp; &lt;SPAN&gt;"\"&lt;/SPAN&gt; &amp;amp; &lt;SPAN&gt;Name&lt;/SPAN&gt; &amp;amp; &lt;SPAN&gt;".stp"&lt;/SPAN&gt;

        &lt;SPAN&gt;Call&lt;/SPAN&gt; &lt;SPAN&gt;oSTEPTranslator&lt;/SPAN&gt;.&lt;SPAN&gt;SaveCopyAs&lt;/SPAN&gt;(&lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveDocument&lt;/SPAN&gt;, &lt;SPAN&gt;oContext&lt;/SPAN&gt;, &lt;SPAN&gt;oOptions&lt;/SPAN&gt;, &lt;SPAN&gt;oData&lt;/SPAN&gt;)
    &lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;
&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;Sub&lt;/SPAN&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 24 Apr 2023 17:32:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918396#M48520</guid>
      <dc:creator>dimamazutaMMJ32</dc:creator>
      <dc:date>2023-04-24T17:32:01Z</dc:date>
    </item>
    <item>
      <title>Re: Rename filename using Part Number property</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918405#M48521</link>
      <description>&lt;P&gt;I use the part number as the filename, as well. I created individual schemas tied to my various clients' needs. Some want a simple scheme. while others prefer a more complex version. Have you looked into that? Vault Data Standard may be worth a look...&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2023 17:36:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918405#M48521</guid>
      <dc:creator>b.mccarthy</dc:creator>
      <dc:date>2023-04-24T17:36:19Z</dc:date>
    </item>
    <item>
      <title>Re: Rename filename using Part Number property</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918436#M48522</link>
      <description>dimamazutaMMJ32&lt;BR /&gt;&lt;BR /&gt;Thank you very much for the quick reply!&lt;BR /&gt;If it can work as you describe in the beginning that would be just fine:&lt;BR /&gt;&lt;BR /&gt;*"converts the file into step format, gives it a name that will is equal to&lt;BR /&gt;the part number, and saves it to the folder where the original file is&lt;BR /&gt;located."*&lt;BR /&gt;&lt;BR /&gt;I'm not familiar with using ilogic code.&lt;BR /&gt;I created a new rule from the ilogic tab in the context of my assembly.&lt;BR /&gt;I inserted the code that you provided:&lt;BR /&gt;&lt;BR /&gt;*Sub Main ' Get the STEP translator Add-In. Dim oSTEPTranslator As&lt;BR /&gt;TranslatorAddIn =&lt;BR /&gt;ThisApplication.ApplicationAddIns.ItemById("{90AF7F40-0C01-11D5-8E83-0010B541CD80}")&lt;BR /&gt;If oSTEPTranslator Is Nothing Then Exit Sub End If Dim oContext As&lt;BR /&gt;TranslationContext =&lt;BR /&gt;ThisApplication.TransientObjects.CreateTranslationContext Dim oOptions As&lt;BR /&gt;NameValueMap = ThisApplication.TransientObjects.CreateNameValueMap If&lt;BR /&gt;oSTEPTranslator.HasSaveCopyAsOptions(ThisApplication.ActiveDocument,&lt;BR /&gt;oContext, oOptions) Then ' Set application protocol. ' 2 = AP 203 -&lt;BR /&gt;Configuration Controlled Design ' 3 = AP 214 - Automotive Design&lt;BR /&gt;oOptions.Value("ApplicationProtocolType") = 3 oContext.Type =&lt;BR /&gt;kFileBrowseIOMechanism Dim Path As String = ThisDoc.Path Dim Name As String&lt;BR /&gt;= iProperties.Value("Project", "Part Number") Dim oData As DataMedium =&lt;BR /&gt;ThisApplication.TransientObjects.CreateDataMedium oData.FileName = Path &amp;amp;&lt;BR /&gt;"\" &amp;amp; Name &amp;amp; ".stp" Call&lt;BR /&gt;oSTEPTranslator.SaveCopyAs(ThisApplication.ActiveDocument, oContext,&lt;BR /&gt;oOptions, oData) End If End Sub*&lt;BR /&gt;&lt;BR /&gt;When I attempted to save and run it returned the following error&lt;BR /&gt;[image: image.png]&lt;BR /&gt;</description>
      <pubDate>Mon, 24 Apr 2023 17:47:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918436#M48522</guid>
      <dc:creator>eucci</dc:creator>
      <dc:date>2023-04-24T17:47:51Z</dc:date>
    </item>
    <item>
      <title>Re: Rename filename using Part Number property</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918457#M48523</link>
      <description>&lt;P&gt;Ok&lt;/P&gt;&lt;P&gt;I have attached the .ipt file in which this rule is written.&lt;BR /&gt;Note that the file must be saved in any folder.&lt;/P&gt;&lt;P&gt;Checked in 2022 version&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2023 18:00:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918457#M48523</guid>
      <dc:creator>dimamazutaMMJ32</dc:creator>
      <dc:date>2023-04-24T18:00:03Z</dc:date>
    </item>
    <item>
      <title>Re: Rename filename using Part Number property</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918459#M48524</link>
      <description>&lt;P&gt;This is the code I use, and it works as you describe. I set it to fire before save. You might have to rename it.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2023 17:58:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918459#M48524</guid>
      <dc:creator>b.mccarthy</dc:creator>
      <dc:date>2023-04-24T17:58:05Z</dc:date>
    </item>
    <item>
      <title>Re: Rename filename using Part Number property</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918463#M48525</link>
      <description>&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;Ideally, I'm looking to export the step from the context of an assembly file so that all the parts in tha assembly are saved out to a step file such that the individual bodies maintain the part number property. Will this code do that?&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2023 18:00:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918463#M48525</guid>
      <dc:creator>eucci</dc:creator>
      <dc:date>2023-04-24T18:00:21Z</dc:date>
    </item>
    <item>
      <title>Re: Rename filename using Part Number property</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918469#M48526</link>
      <description>This code translates into a step only the file in which it was run (part or assembly).&lt;BR /&gt;In general, it is possible to develop a rule that would export to step all the details contained in the assembly</description>
      <pubDate>Mon, 24 Apr 2023 18:04:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918469#M48526</guid>
      <dc:creator>dimamazutaMMJ32</dc:creator>
      <dc:date>2023-04-24T18:04:39Z</dc:date>
    </item>
    <item>
      <title>Re: Rename filename using Part Number property</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918487#M48527</link>
      <description>&lt;P&gt;The rule I posted will do this. I tested it on an assembly, opened the step file (Convert Model option), and all of the part numbers came through:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2023-04-24 663.jpg" style="width: 413px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1206124i107D2CF3939CFAA5/image-dimensions/413x299?v=v2" width="413" height="299" role="button" title="2023-04-24 663.jpg" alt="2023-04-24 663.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The caveat here is that I have been unable to get it to export component lengths, such as FG assemblies. Anyone have ideas on how to accomplish that?&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2023 18:12:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918487#M48527</guid>
      <dc:creator>b.mccarthy</dc:creator>
      <dc:date>2023-04-24T18:12:37Z</dc:date>
    </item>
    <item>
      <title>Re: Rename filename using Part Number property</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918489#M48528</link>
      <description>dimamazutaMMJ32&lt;BR /&gt;I ran this rule from both a part file and an assembly file.&lt;BR /&gt;It does save out a step file. However, the step file maintains the former&lt;BR /&gt;filenames. It does not appear to create new filenames using the part number&lt;BR /&gt;property.&lt;BR /&gt;Am I doing something wrong?&lt;BR /&gt;</description>
      <pubDate>Mon, 24 Apr 2023 18:12:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918489#M48528</guid>
      <dc:creator>eucci</dc:creator>
      <dc:date>2023-04-24T18:12:51Z</dc:date>
    </item>
    <item>
      <title>Re: Rename filename using Part Number property</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918544#M48529</link>
      <description>&lt;P&gt;I provide the file Assembly1 in which there are two rules&lt;BR /&gt;The SaveAs(OnePart) rule converts a part or an entire assembly into 1 step file with a file name that is taken from the part number&lt;BR /&gt;The SaveAs(PartsFromAssembly) rule converts parts in an assembly into separate step files with names taken from part numbers in that assembly&lt;/P&gt;&lt;P&gt;Inventor 2022&lt;/P&gt;&lt;P&gt;&lt;div class="lia-vid-container video-embed-center"&gt;&lt;div id="lia-vid-6326144692112w672h540r277" class="lia-video-brightcove-player-container"&gt;&lt;video-js data-video-id="6326144692112" data-account="6057940548001" data-player="default" data-embed="default" class="vjs-fluid" controls="" data-application-id="" style="width: 100%; height: 100%;"&gt;&lt;/video-js&gt;&lt;/div&gt;&lt;script src="https://players.brightcove.net/6057940548001/default_default/index.min.js"&gt;&lt;/script&gt;&lt;script&gt;(function() {  var wrapper = document.getElementById('lia-vid-6326144692112w672h540r277');  var videoEl = wrapper ? wrapper.querySelector('video-js') : null;  if (videoEl) {     if (window.videojs) {       window.videojs(videoEl).ready(function() {         this.on('loadedmetadata', function() {           this.el().querySelectorAll('.vjs-load-progress div[data-start]').forEach(function(bar) {             bar.setAttribute('role', 'presentation');             bar.setAttribute('aria-hidden', 'true');           });         });       });     }  }})();&lt;/script&gt;&lt;a class="video-embed-link" href="https://forums.autodesk.com/t5/video/gallerypage/video-id/6326144692112"&gt;(view in My Videos)&lt;/a&gt;&lt;/div&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2023 18:39:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918544#M48529</guid>
      <dc:creator>dimamazutaMMJ32</dc:creator>
      <dc:date>2023-04-24T18:39:40Z</dc:date>
    </item>
    <item>
      <title>Re: Rename filename using Part Number property</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918545#M48530</link>
      <description>&lt;P&gt;Perhaps I'm not running it incorrectly.&lt;/P&gt;&lt;P&gt;I've created a new rule in the assembly file.&lt;/P&gt;&lt;P&gt;Pasted in the code that you posted.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then I ran the rule and it did export out a step.&lt;/P&gt;&lt;P&gt;When I import the subsequent stp file back into Inventor it does show the part number for the all the filenames in the browser panel nodes. However, when I look at the properties of each part they actually maintain the former filenames and not the updated part number.&lt;/P&gt;&lt;P&gt;This also happens when I import the step into Autocad. It maintains the former filenames for all the undividual bodies.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe I didnt set up the code to run properly?&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2023 18:39:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918545#M48530</guid>
      <dc:creator>eucci</dc:creator>
      <dc:date>2023-04-24T18:39:54Z</dc:date>
    </item>
    <item>
      <title>Re: Rename filename using Part Number property</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918555#M48531</link>
      <description>THis was sent before seeing your latest. Please disregard. I'll run your latest now&lt;BR /&gt;</description>
      <pubDate>Mon, 24 Apr 2023 18:42:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918555#M48531</guid>
      <dc:creator>eucci</dc:creator>
      <dc:date>2023-04-24T18:42:01Z</dc:date>
    </item>
    <item>
      <title>Re: Rename filename using Part Number property</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918568#M48532</link>
      <description>&lt;DIV class=""&gt;&lt;SPAN class=""&gt;&lt;A href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/10718482" target="_self"&gt;dimamazutaMMJ32&lt;/A&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;THis is getting very close.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Is it possible to export out to one file such that the individual bodies are named based on the part number property?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2023 18:51:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918568#M48532</guid>
      <dc:creator>eucci</dc:creator>
      <dc:date>2023-04-24T18:51:23Z</dc:date>
    </item>
    <item>
      <title>Re: Rename filename using Part Number property</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918578#M48533</link>
      <description>All the parts were exported as bodies in the assembly.step file, and at the same time, these bodies in the multibody had names corresponding to the part numbers of the original parts?&lt;BR /&gt;Sorry, I have to translate into Ukrainian, so there may be a misunderstanding))&lt;BR /&gt;Please provide some picture if possible</description>
      <pubDate>Mon, 24 Apr 2023 18:57:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918578#M48533</guid>
      <dc:creator>dimamazutaMMJ32</dc:creator>
      <dc:date>2023-04-24T18:57:02Z</dc:date>
    </item>
    <item>
      <title>Re: Rename filename using Part Number property</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918644#M48534</link>
      <description>&lt;P&gt;SaveAs(PartsFromAssembly)&lt;/P&gt;&lt;P&gt;Saves all parts of the assembly out to individual files that have the filename updated to the part number property&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SaveAs(OnePart)&lt;/P&gt;&lt;P&gt;Saves out to a multibody stp file with the stp filename updated to the part number property&lt;/P&gt;&lt;P&gt;However, the individual parts in the assembly do not have the filename updated to the part number property.&lt;/P&gt;&lt;P&gt;they still have the former filenames&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;See link below for the files Im using:&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.dropbox.com/sh/wjn3rec86m5jd87/AAA3iDH07h7PYdMOOO2pQG5ta?dl=0" target="_blank"&gt;https://www.dropbox.com/sh/wjn3rec86m5jd87/AAA3iDH07h7PYdMOOO2pQG5ta?dl=0&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2023 19:29:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918644#M48534</guid>
      <dc:creator>eucci</dc:creator>
      <dc:date>2023-04-24T19:29:51Z</dc:date>
    </item>
    <item>
      <title>Re: Rename filename using Part Number property</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918685#M48535</link>
      <description>Do you want to rename the original .ipt files and have an assembly with these new_named .ipt files? (file name was 182951 and now it must be DER 336CS11)&lt;BR /&gt;Is convertation into .stp format Ok for now?</description>
      <pubDate>Mon, 24 Apr 2023 19:48:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918685#M48535</guid>
      <dc:creator>dimamazutaMMJ32</dc:creator>
      <dc:date>2023-04-24T19:48:07Z</dc:date>
    </item>
    <item>
      <title>Re: Rename filename using Part Number property</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918692#M48536</link>
      <description>&lt;P&gt;Your assembly is missing the&amp;nbsp;CP PARAMETERS 230406.xlsx file.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2023 19:51:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918692#M48536</guid>
      <dc:creator>b.mccarthy</dc:creator>
      <dc:date>2023-04-24T19:51:29Z</dc:date>
    </item>
    <item>
      <title>Re: Rename filename using Part Number property</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918693#M48537</link>
      <description>&lt;P&gt;I do not need to rename any of the iam or ipt files. I need the bodies in the exported stp file to be named according to the part number property.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2023 19:53:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918693#M48537</guid>
      <dc:creator>eucci</dc:creator>
      <dc:date>2023-04-24T19:53:11Z</dc:date>
    </item>
    <item>
      <title>Re: Rename filename using Part Number property</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918703#M48538</link>
      <description>&lt;P&gt;I uploaded to the dropbox link:&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.dropbox.com/sh/wjn3rec86m5jd87/AAA3iDH07h7PYdMOOO2pQG5ta?dl=0" target="_blank"&gt;https://www.dropbox.com/sh/wjn3rec86m5jd87/AAA3iDH07h7PYdMOOO2pQG5ta?dl=0&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2023 19:55:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/rename-filename-using-part-number-property/m-p/11918703#M48538</guid>
      <dc:creator>eucci</dc:creator>
      <dc:date>2023-04-24T19:55:42Z</dc:date>
    </item>
  </channel>
</rss>

