<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://www.aras.com/community/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>Tim_Beard さんのアクティビティ</title><link>https://www.aras.com/community/members/tim_5f00_beard</link><description>Tim_Beard さんの最近のアクティビティ</description><dc:language>ja-JP</dc:language><generator>Telligent Community 12</generator><item><title>Is Aras Flow still supported / updated?</title><link>https://www.aras.com/community/f/applications/36261/is-aras-flow-still-supported-updated</link><pubDate>Wed, 06 Jan 2021 13:06:21 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:0b975b38-9789-416a-9a3c-a0166e12fc7a</guid><dc:creator>Tim_Beard</dc:creator><description>&lt;p&gt;I&amp;#39;m setting up a demo system and part of the standard demo from Aras includes a section using Aras Flow.&lt;/p&gt;
&lt;p&gt;I&amp;#39;ve installed the Windows 10 app, but can&amp;#39;t get it to log in, even when logging in from a browser on the same system works fine. I receive the error &amp;quot;Authentication failed for &amp;lt;user name&amp;gt;&amp;quot;. It comes back instantly, as if it didn&amp;#39;t even really try. Login fails from the browser take much longer to come back.&lt;/p&gt;
&lt;p&gt;The demo mode works. Kinda.&lt;/p&gt;
&lt;p&gt;Any thoughts? It appears that the app hasn&amp;#39;t been updated in six years, so I wonder if it is still actively supported.&lt;/p&gt;
&lt;p&gt;Thank you!&lt;/p&gt;
&lt;p&gt;Tim&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Adding an xClass-specific image to a form</title><link>https://www.aras.com/community/f/getting-started/35966/adding-an-xclass-specific-image-to-a-form</link><pubDate>Mon, 14 Sep 2020 15:17:35 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:21b9e377-a190-499b-aeeb-26a11f924b88</guid><dc:creator>Tim_Beard</dc:creator><description>&lt;p&gt;With standard classification, it is pretty straightforward to add an image to a form that is only seen when viewing an item of that specific class.&lt;/p&gt;
&lt;p&gt;But how to achieve this with xClassifications? I noticed that there is not even an image property type for xProperties.&lt;/p&gt;
&lt;p&gt;Use case: We have a xClassification &amp;quot;Countersunk screws&amp;quot;. For these, we need to define certain measurements according to DIN standards. To make it clearer what the measurements mean, it would be very useful to also provide a diagram, e.g. as below.&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/500x240/__key/communityserver-discussions-components-files/6/pastedimage1600096527799v1.jpeg" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Any idea how to achieve this with xClassifications?&lt;/p&gt;
&lt;p&gt;Thank you!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Script for importing items with xProperties from Excel using Batch Loader</title><link>https://www.aras.com/community/f/getting-started/35943/script-for-importing-items-with-xproperties-from-excel-using-batch-loader</link><pubDate>Tue, 08 Sep 2020 09:49:41 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:62a747f0-cf74-4a09-8eab-576cd34992cb</guid><dc:creator>Tim_Beard</dc:creator><description>&lt;p&gt;I just went through this process as part of learning Aras. Importing items from Excel using the Batch Loader is pretty straightforward if you only have simple properties that all belong directly to the Item Type. See documentation for the Batch Loader. Note that you should save the Excel file as a tab-delimited .txt file.&lt;/p&gt;
&lt;p&gt;It gets more difficult, however, when you need to import properties over relationships. In this case Costs over the Part Goal relationship and xProperties over Part_xClass.&lt;/p&gt;
&lt;p&gt;I found no documentation to help me with this, so the script below is the result of a lot of trial and error. Comments and improvements welcome&amp;quot; It is my first import script! Copy the text below into Notepad++ for better readability.&lt;/p&gt;
&lt;p&gt;A big difficulty was working out how to explicitly identify the xClass. I used the xClass Property &amp;quot;name&amp;quot;. This used just the simple name of the &amp;quot;Leaf&amp;quot; xClass in the xClass tree.&lt;/p&gt;
&lt;p&gt;Hope it saves someone a bit of time :)&lt;/p&gt;
&lt;p&gt;(Extract to show the highlights...)&lt;/p&gt;
&lt;p&gt;&amp;lt;Item type=&amp;#39;Part&amp;#39; action=&amp;#39;add&amp;#39;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;!--Use Action=&amp;#39;edit&amp;#39; when updating items--&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;!--@10, etc. denotes the column in the data file and is independent of the header row contents--&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;item_number&amp;gt;@2&amp;lt;/item_number&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;name&amp;gt;@4&amp;lt;/name&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;classification&amp;gt;@5&amp;lt;/classification&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;Relationships&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;!--Part Goal is the relationship item that links to item type Goal--&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;Item type=&amp;quot;Part Goal&amp;quot; action=&amp;quot;add&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;lt;goal&amp;gt;@7&amp;lt;/goal&amp;gt; &amp;lt;!--e.g. Cost--&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;lt;actual_value&amp;gt;@8&amp;lt;/actual_value&amp;gt; &amp;lt;!--Further fields available, see Loader docs--&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/Item&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;!--Part_xClass is the relationship item from part to xClass--&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;!--Note that &amp;quot;name&amp;quot; (lower case) is the easiest of several field options for identifying xClass--&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;!--Format is, e.g. &amp;quot;Fuel Tanks&amp;quot; (name of leaf, spaces OK)--&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;Item type=&amp;quot;Part_xClass&amp;quot; action=&amp;quot;add&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;related_id&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;Item type=&amp;quot;xClass&amp;quot; action=&amp;quot;get&amp;quot; select=&amp;quot;id&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;name&amp;gt;@10&amp;lt;/name&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/Item&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/related_id&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/Item&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/Relationships&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;!--The properties below can only be loaded once the xClass relationship has been established as above--&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;xp-mass_full set=&amp;quot;value&amp;quot;&amp;gt;@14&amp;lt;/xp-mass_full&amp;gt;&lt;br /&gt;&amp;lt;/Item&amp;gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Actions menu not working in Project Management</title><link>https://www.aras.com/community/f/applications/36215/actions-menu-not-working-in-project-management</link><pubDate>Fri, 11 Dec 2020 14:35:42 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:a028d1d3-6b5c-42da-8915-90d48bf6fd18</guid><dc:creator>Tim_Beard</dc:creator><description>&lt;p&gt;When I hit the Actions button in the Project Tree view, I just get a little dot, which suggests that the menu has opened underneath the search/header bar, making the actions unavailable. Any idea how to fix this?&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/8/pastedimage1607697208053v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;I&amp;#39;m running Version 12.0 SP6&amp;nbsp; Build: 20133&lt;/p&gt;
&lt;p&gt;Thank you!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Office Connector: Error with properties when creating document type as per ACE 2019 training</title><link>https://www.aras.com/community/f/applications/36064/office-connector-error-with-properties-when-creating-document-type-as-per-ace-2019-training</link><pubDate>Mon, 26 Oct 2020 09:46:51 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:f19c37c9-eb71-4321-9df0-2b81dd74871e</guid><dc:creator>Tim_Beard</dc:creator><description>&lt;p&gt;I&amp;#39;m going through the &lt;a href="https://www.google.com/url?sa=t&amp;amp;rct=j&amp;amp;q=&amp;amp;esrc=s&amp;amp;source=web&amp;amp;cd=&amp;amp;cad=rja&amp;amp;uact=8&amp;amp;ved=2ahUKEwi83o37-dHsAhXN_aQKHcuSDAcQFjAAegQIBxAC&amp;amp;url=https%3A%2F%2Fwww.aras.com%2F-%2Fmedia%2Ffiles%2Fevents%2FACE-2019-Configuring-Office-Connector.pdf&amp;amp;usg=AOvVaw3DrdGkq3t786uzxvEKX0Rk"&gt;Student Training Guide&lt;/a&gt; from ACE 2019 called &amp;quot;Configuring Office Connector: Mapping Properties to/from MS Office Applications&amp;quot;&lt;/p&gt;
&lt;p&gt;I&amp;#39;m following the instructions on Page 11 to create a new document type for PR (Problem Report). On hitting Save, I get the error:&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:12px;"&gt;&lt;strong&gt;&lt;span style="background-color:#ffffff;color:#333333;float:none;font-family:Roboto, &amp;#39;Noto Sans JP&amp;#39;, Arial, sans-serif;font-style:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:pre-line;"&gt;The item_number property of selected ItemType has an incorrect data type&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="background-color:#ffffff;color:#333333;float:none;font-family:Roboto, &amp;#39;Noto Sans JP&amp;#39;, Arial, sans-serif;font-size:12px;font-style:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:pre-line;"&gt;&lt;strong&gt;ItemType&lt;/strong&gt; is PR and the &lt;strong&gt;item_number&lt;/strong&gt; property causing the problems is &lt;strong&gt;Sequence &lt;/strong&gt;out of the box, based on the Sequence called &lt;strong&gt;PR.&lt;/strong&gt; I have not changed this from default&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="background-color:#ffffff;color:#333333;float:none;font-family:Roboto, &amp;#39;Noto Sans JP&amp;#39;, Arial, sans-serif;font-size:12px;font-style:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:pre-line;"&gt;If I change the &lt;strong&gt;item_number&lt;/strong&gt; property to say, &lt;strong&gt;string&lt;/strong&gt;, then the new Office Connector Document Type can be saved without problem.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="background-color:#ffffff;color:#333333;float:none;font-family:Roboto, &amp;#39;Noto Sans JP&amp;#39;, Arial, sans-serif;font-size:12px;font-style:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:pre-line;"&gt;Is this a bug that has come in since last year? If not, can anyone explain what is going on and why using a Sequence should be a problem?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="background-color:#ffffff;color:#333333;float:none;font-family:Roboto, &amp;#39;Noto Sans JP&amp;#39;, Arial, sans-serif;font-size:12px;font-style:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:pre-line;"&gt;Thank you!&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="background-color:#ffffff;color:#333333;float:none;font-family:Roboto, &amp;#39;Noto Sans JP&amp;#39;, Arial, sans-serif;font-size:12px;font-style:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:pre-line;"&gt;Tim&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="background-color:#ffffff;color:#333333;float:none;font-family:Roboto, &amp;#39;Noto Sans JP&amp;#39;, Arial, sans-serif;font-size:12px;font-style:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:pre-line;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Lessons Learned from importing data for Parts with xClassification data and a thumbnail image</title><link>https://www.aras.com/community/f/getting-started/36049/lessons-learned-from-importing-data-for-parts-with-xclassification-data-and-a-thumbnail-image</link><pubDate>Mon, 19 Oct 2020 07:56:50 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:d5707a08-319b-4874-91db-c2f830ba1bc9</guid><dc:creator>Tim_Beard</dc:creator><description>&lt;p&gt;With the attached document, I just want to share my experiences and struggles with the hope that it helps someone else trying to do similar things.&lt;/p&gt;
&lt;p&gt;It follows on from my posts&lt;/p&gt;
&lt;p&gt;&lt;a href="/f/getting-started/35943/script-for-importing-items-with-xproperties-from-excel-using-batch-loader"&gt;https://community.aras.com/f/getting-started/35943/script-for-importing-items-with-xproperties-from-excel-using-batch-loader&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="/f/getting-started/35979/how-to-import-thumbnail-images-for-parts-using-batch-loader"&gt;https://community.aras.com/f/getting-started/35979/how-to-import-thumbnail-images-for-parts-using-batch-loader&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I eventually worked out for myself how to import thumbnails, but - unless I&amp;#39;ve missed a trick somewhere - it isn&amp;#39;t as straightforward as one would hope.&lt;/p&gt;
&lt;p&gt;Should you be able to provide feedback / improvements / information about useful reference documents or if you have any questions I&amp;#39;d be happy to hear from you!&lt;/p&gt;
&lt;p&gt;Tim&lt;/p&gt;
&lt;p&gt;---------&lt;/p&gt;
&lt;p&gt;This is just a record of my experience (as a non-programmer) trying to work out how to import the data for a demo system just using AML and Batch Loader. A lot of it was picking clues out from various sources plus a lot of educated guesses. The documentation is insufficient. What I did find was as below:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;A nice introduction, but just an &lt;a href="/b/english/posts/aml-basics"&gt;introduction by Christopher Gillis&lt;/a&gt; on the Aras Forum&lt;/li&gt;
&lt;li&gt;The &lt;strong&gt;Programmer&amp;rsquo;s Guide&lt;/strong&gt; in the Innovator Documentation. This includes a three-page reference, which feels a bit short.&lt;/li&gt;
&lt;li&gt;The documentation for &lt;strong&gt;Batch Loader&lt;/strong&gt; includes some examples at the end&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I would love to see further documentation and references, in particular:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The full extent of what AML can and can&amp;rsquo;t do. Specifically:
&lt;ul&gt;
&lt;li&gt;Can it include logic such as IF statements that depend on the content of the file being imported (i.e. an SQL where condition doesn&amp;rsquo;t help here)&lt;/li&gt;
&lt;li&gt;Can one concatenate input data. See below where this would have been useful for loading the thumbnail images.&lt;/li&gt;
&lt;li&gt;Can one import files (e.g. image files) along with the data by using pointers to the file locations with the import sheet?&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;A full description of the error messages returned within Batch Loader. These are mostly very obscure and singularly unhelpful.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Software used&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Excel&lt;/strong&gt; for
&lt;ul&gt;
&lt;li&gt;Data&lt;/li&gt;
&lt;li&gt;Lookup for GUIDs to enable importing of Thumbnails&lt;/li&gt;
&lt;li&gt;Generating AML for Batch Loader&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Batch Loader&lt;/strong&gt;. I assume that the reader has a basic understanding of using this program. If not&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;MS SQL Studio&lt;/strong&gt;. Other options also available. Used to get a list of files in the vault along with their GUID&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;...&lt;/p&gt;
&lt;p&gt;Please see attached file for the rest of the document:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.aras.com/cfs-file/__key/communityserver-discussions-components-files/6/Lessons-Learned_2C00_-xClass-import-with-thumbnail-images_2C00_-forum.pdf"&gt;www.aras.com/.../Lessons-Learned_2C00_-xClass-import-with-thumbnail-images_2C00_-forum.pdf&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Extended Properties Permissions Issue</title><link>https://www.aras.com/community/f/community/4581/extended-properties-permissions-issue</link><pubDate>Wed, 02 Jan 2019 17:59:46 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:2ea56bb8-37bc-448f-a56a-7348c4178b6e</guid><dc:creator>krisgopi88</dc:creator><description>&lt;p&gt;Hi Team&lt;/p&gt;
&lt;p&gt;I have configured extended properties for Part Item type and I&amp;#39;m able to select and add the xProperties in Part item using super user. But when I try to get / add xProperties using normal user, I was not able to get or add the xProperties.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I&amp;#39;m getting the below error&lt;/p&gt;
&lt;div class="arasDialog-content"&gt;
&lt;div class="aras-dialog-alert__container"&gt;&lt;span class="aras-dialog-alert__text"&gt;You have insufficient permissions to perform &amp;#39;classify&amp;#39; operation for item id &amp;#39;46F261DDEDEA40F784EA2C51687BB519&amp;#39; by xClass id &amp;#39;F4C365C728574ADEAE8EB1C4E5A50D25&amp;#39;.&lt;/span&gt;&lt;/div&gt;
&lt;div class="aras-dialog-alert__container"&gt;&lt;span class="aras-dialog-alert__text"&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="aras-dialog-alert__container"&gt;&lt;span class="aras-dialog-alert__text"&gt;Attached screenshot as normal user and super user for reference. Do I need to add permission anywhere to see / add xProperties on Part as normal user ?&lt;/span&gt;&lt;/div&gt;
&lt;div class="aras-dialog-alert__container"&gt;&lt;span class="aras-dialog-alert__text"&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="aras-dialog-alert__container"&gt;&lt;span class="aras-dialog-alert__text"&gt;&lt;img alt=" " src="/resized-image/__size/600x240/__key/communityserver-discussions-components-files/10/NormalUser_5F00_View.JPG" /&gt;&lt;img alt=" " src="/resized-image/__size/600x240/__key/communityserver-discussions-components-files/10/SuperUser_5F00_View.JPG" /&gt;&lt;img alt=" " src="/resized-image/__size/600x300/__key/communityserver-discussions-components-files/10/Screen1.JPG" /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thank You&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Sample Data for Innovator V12</title><link>https://www.aras.com/community/f/community/6194/sample-data-for-innovator-v12</link><pubDate>Wed, 31 Jul 2019 09:05:24 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:8ecd4e05-ce8f-4131-a901-83bcbd5288d1</guid><dc:creator>Erlandas</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Any information about sample data for&amp;nbsp;Innovator V12 ?&lt;/p&gt;
&lt;p&gt;How I can get it?&lt;/p&gt;
&lt;p&gt;Thank you&lt;/p&gt;
&lt;p&gt;Erlandas&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Introduction to xClassification and xProperties</title><link>https://www.aras.com/community/b/english/posts/introduction-to-xclassification-and-xproperties</link><pubDate>Thu, 16 Apr 2020 14:00:00 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:89e95a95-a81a-42e2-a388-d1e6059fe1a0</guid><dc:creator>AJ Sebastian</dc:creator><description>&lt;p&gt;Everyone&amp;rsquo;s data model is different. You might need connections across ItemTypes that nobody else has ever considered. One way that Aras allows you to do this is by defining what we call Extended Classifications and Extended Properties.&lt;/p&gt;
&lt;p&gt;Standard ItemTypes allow for classification. If you have a Part, you can classify into a couple groups, like software, component, assembly, or any custom classification you add. What Xclass allows you to do is create a set of classifications which you could apply to multiple different ItemTypes. This allows you to tag specific items within some overarching group. This makes it really easy to find all the times related to a specific business process, or project, based on the classifications you&amp;rsquo;ve added.&lt;/p&gt;
&lt;p&gt;Extended Properties (xProperties) are defined on a global scale. You&amp;rsquo;ll create a group of xProperties which we can then assign in a few different ways. We can &lt;strong&gt;Implicitly&lt;/strong&gt; assign them, which means assigning them to&amp;nbsp;a specific&amp;nbsp;xClassification, and will be shared across all items which are classified as such. The other option is to &lt;strong&gt;Explicitly &lt;/strong&gt;assign them, which means we&amp;rsquo;ll pick specific ItemTypes which our properties will apply to. The example below will &lt;strong&gt;Implicitly&lt;/strong&gt; assign them, using the xClassification structure we define.&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:150%;"&gt;Implementing&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;In this example we&amp;rsquo;re going to create an xClassification tree, some subclasses, and some xProperties. To do this we&amp;rsquo;ll first navigate to the Extended Classification section on the table of contents.&lt;/p&gt;
&lt;p&gt;Let&amp;rsquo;s go ahead and create a new xClass. Immediately you are presented with a form. We&amp;rsquo;ll call our new xClassification tree &amp;ldquo;Inventory tracking&amp;rdquo;, as we can group everything related to sales together. Once you&amp;rsquo;ve filled out the form, you can use the relationships grid to assign which ItemTypes can use your new xClassification tree.&amp;nbsp;We&amp;#39;re going to go ahead and configure our xClass to apply to the following ItemTypes.&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " border="0" src="/cfs-file/__key/communityserver-blogs-components-weblogfiles/00-00-00-00-04/1033.pastedimage1586976048717v1.png" /&gt;&lt;/p&gt;
&lt;p&gt;If your curious what the end result could look like, here&amp;#39;s a sample structure which could be created from the simple one we will create here.&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " border="0" src="/cfs-file/__key/communityserver-blogs-components-weblogfiles/00-00-00-00-04/8475.pastedimage1586976264232v2.png" /&gt;&lt;/p&gt;
&lt;p&gt;Once you press save, you&amp;rsquo;re then presented with a new sidebar button. Click it and it will take you to the xClassification Tree editor. This is where we can define the structure of classifications. The pane to the right allows us to define xProperties which correspond to our newly created xClassifications. You can use the left pane to define your xClassification structure. Using the example from the above structure, we&amp;#39;ll make our xClass structure look like this:&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " border="0" src="/cfs-file/__key/communityserver-blogs-components-weblogfiles/00-00-00-00-04/8475.pastedimage1586978261094v4.png" /&gt;&lt;/p&gt;
&lt;p&gt;Once you&amp;rsquo;ve defined some sub-classifications on the left, select one to assign it some xProperties in the right pane.&amp;nbsp;You can only select from existing xProperties, so I&amp;#39;ve quickly created xp-material from the diagram above. Here&amp;#39;s what the xProperty looks like&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/640x480/__key/communityserver-blogs-components-weblogfiles/00-00-00-00-04/8475.pastedimage1586978441097v5.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;And here&amp;#39;s what the editor will look like once we assign our xProperty to our classification.&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " border="0" src="/cfs-file/__key/communityserver-blogs-components-weblogfiles/00-00-00-00-04/2100.pastedimage1586978780834v6.png" /&gt;&lt;/p&gt;
&lt;p&gt;Once you&amp;rsquo;ve defined some properties, you can save and close the xClassification tree. Our tree will still need a set of permissions. Like everything in Aras Innovator,&amp;nbsp; we use role based permissions to decide who can access, modify, or delete these Items. Without modification, this is set to a permissive option. To modify it, we&amp;rsquo;ll create a new &amp;ldquo;Item Classification Permission&amp;rdquo; Item. Here we can assign different sets of permissions to different identities, similar to how normal permissions are set. The difference is the selections. Here you can choose whether specific identities have the ability to assign classifications, delete classifications, or perform queries about whether items are classified within the related xClassification.&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:inherit;"&gt;&lt;img src="/resized-image/__size/640x480/__key/communityserver-blogs-components-weblogfiles/00-00-00-00-04/2100.pastedimage1586979402064v7.png" alt=" " /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:inherit;"&gt;To assign our permission, we must open our classification tree again. The permissions are actually set for each individual relationship in the &amp;ldquo;types&amp;rdquo; tab. Right click each individual relationship and you can select &amp;ldquo;Pick Item Classification Permission&amp;rdquo;.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/640x480/__key/communityserver-blogs-components-weblogfiles/00-00-00-00-04/2100.pastedimage1586977506859v3.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;We&amp;rsquo;re almost done! Our ItemTypes are classified, have xProperties, and have permissions set. The final step is being able to modify the xProperties for an Item through the form. If we open up our custom form, we can add an&amp;nbsp;xClassification box to it. I&amp;#39;ve added it to the Part Form, as that&amp;#39;s where I assigned my custom xClassification. You can see that the box generated only has samples. This is because you can add as many Classifications and Properties as you&amp;#39;d like, and the box will format itself properly.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " border="0" src="/cfs-file/__key/communityserver-blogs-components-weblogfiles/00-00-00-00-04/2100.pastedimage1586979557407v8.png" /&gt;&lt;/p&gt;
&lt;p&gt;Now once we go to instantiate one of our new items, we will be able to see and modify the associated xProperties.&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " border="0" src="/cfs-file/__key/communityserver-blogs-components-weblogfiles/00-00-00-00-04/6813.pastedimage1586980473764v9.png" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Conclusion&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;So now that you know how to assign classifications and xProperties, hopefully you see how they could be used to improve your process. Let us know how you or your organization utilizes this feature in the comments!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>How to import thumbnail images for parts using batch loader?</title><link>https://www.aras.com/community/f/getting-started/35979/how-to-import-thumbnail-images-for-parts-using-batch-loader</link><pubDate>Fri, 18 Sep 2020 15:33:14 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:24771aa7-a752-4f3e-8def-7d4fe5ad5d49</guid><dc:creator>Tim_Beard</dc:creator><description>&lt;p&gt;I&amp;#39;ve worked out how to import all other part data, including related item types such as xproperties&lt;/p&gt;
&lt;p&gt;I&amp;#39;m stuck on getting the thumbnail images imported, however, as &amp;quot;thumbnail&amp;quot; is just a property of data type image with no data source. I can reference a filename in the import file, but how do I tell Batch Loader the location of the file?&lt;/p&gt;
&lt;p&gt;Or should all files just be dumped somewhere specific (e.g. under .../Client/Customer or .../Client/Images) and the Batchloader knows where to find them?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Bonus Question: If I load images into .../Client/Customer or .../Client/Images, whilst the Image Browser picks up the folders, it is unable to recognise the image files and I have to use External File. What do I need to do to get Image Browser to recognise the new files?&lt;/p&gt;
&lt;p&gt;Thank you!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Defining a workflow process and map vs process plan</title><link>https://www.aras.com/community/f/getting-started/35825/defining-a-workflow-process-and-map-vs-process-plan</link><pubDate>Tue, 28 Jul 2020 17:44:32 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:22811c5d-6376-4308-8304-8bd4848efcc7</guid><dc:creator>Duncanwilliamgibbons</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;If my understanding is correct. a lifecycle is the states an item (be it a part, equipment or document) goes through.&lt;/p&gt;
&lt;p&gt;The manufacturing process plan is the plan (list of operations and steps) required to realize a part or product.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Then what is the workflow map, process, activity, assignment and task? And can a workflow process not be the same as a manufacturing process plan?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Is there possibly a document that clearly defines these, their relation to one another and to which items they relate to (part, product, document etc.)&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Creating export packages &amp;quot;PackageElement... Already exists&amp;quot;</title><link>https://www.aras.com/community/f/getting-started/35907/creating-export-packages-packageelement-already-exists</link><pubDate>Tue, 25 Aug 2020 09:45:09 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:ed43a6d1-db31-4da7-a5e9-79d8345aa7d3</guid><dc:creator>Tim_Beard</dc:creator><description>&lt;p&gt;I&amp;#39;m creating a demo environment and want to export the new Part definitions and Forms that I have created. When I try to add Part or Form to my new package, I get&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp; Unable to add item Form PackageElement (PackageElement) with Element Id &amp;#39;47573682FB7549F59ADECD4BFE04F1DE&amp;#39; already exists.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Both part and form already exist in&lt;strong&gt; com.aras.innovator.solution.PLM&lt;/strong&gt;, which I would have expected to use in the &amp;quot;Depends on&amp;quot; section.&lt;/p&gt;
&lt;p&gt;I can use this PLM package and remove all the other item types and then export, but it would be more convenient to just use my custom package. This seems to be possible as seen in the packages for the aras training &lt;a href="/subscriber-portal/training/w/training-server-setup" rel="noopener noreferrer" target="_blank"&gt;here&lt;/a&gt;. This includes what I want and more:&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/6/pastedimage1598348513389v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;How do I achieve this?&lt;/p&gt;
&lt;p&gt;Follow-on question: is it possible to filter what is exported? For example to only export members a certain part classification?&lt;/p&gt;
&lt;p&gt;Thank you!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Discussion Starter I</title><link>https://www.aras.com/community/achievements/21025ab1-febb-4fb4-a872-d32a921cb45c</link><pubDate>Mon, 31 Aug 2020 13:44:26 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:7d944300-4c5b-4761-8761-775d99840684</guid><dc:creator /><description>Start a discussion in a forum that receives 5 replies.</description></item><item><title>Limited property types in Extended Classifications?</title><link>https://www.aras.com/community/f/getting-started/35915/limited-property-types-in-extended-classifications</link><pubDate>Fri, 28 Aug 2020 13:37:47 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:d0a94d34-a560-4512-8be0-58718ec032e0</guid><dc:creator>Tim_Beard</dc:creator><description>&lt;p&gt;I&amp;#39;m trying to create a system using both types of classification to work out which might be best in which circumstances and have discovered that there seems to be quite a number of property types that can be used with standard classifications, but not extended classifications, e.g.:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Foreign properties&lt;/li&gt;
&lt;li&gt;Sequence&lt;/li&gt;
&lt;li&gt;Federated&lt;/li&gt;
&lt;li&gt;Image&lt;/li&gt;
&lt;li&gt;...&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Am I missing something here? If not, are any of these likely to be coming to extended classifications?&lt;/p&gt;
&lt;p&gt;Thank you!&lt;/p&gt;
&lt;p&gt;Tim&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Ask A Question I</title><link>https://www.aras.com/community/achievements/460ac7df-7ccc-4c42-a204-9e05eef3be09</link><pubDate>Tue, 25 Aug 2020 09:45:09 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:6f68998c-77d1-48f8-be03-809bd03b8b2a</guid><dc:creator /><description>Ask a question in a forum.</description></item></channel></rss>