<?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>Gopikrishnan さんの グループ アクティビティ</title><link>https://www.aras.com/community/members/gkarasuser</link><description>Gopikrishnan さんの グループ ユーザーの最近のアクティビティ</description><dc:language>ja-JP</dc:language><generator>Telligent Community 12</generator><item><title>After Installation of ARAS I am getting this Blank Screen,  How to Resolve It ?</title><link>https://www.aras.com/community/f/community/35903/after-installation-of-aras-i-am-getting-this-blank-screen-how-to-resolve-it</link><pubDate>Sun, 23 Aug 2020 17:48:32 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:9b405152-2865-4558-badb-ee8bfaba27db</guid><dc:creator>ARAS PLM Learner</dc:creator><description>&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/10/pastedimage1598204806791v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>GetItemRepeatConfig removes child items that are used multiple times. How to fix?</title><link>https://www.aras.com/community/f/development/37794/getitemrepeatconfig-removes-child-items-that-are-used-multiple-times-how-to-fix</link><pubDate>Fri, 20 Jan 2023 13:30:53 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:18930f57-7bf9-4569-bba6-04f4052ecca0</guid><dc:creator>AngelaIp</dc:creator><description>&lt;p&gt;Hi community,&lt;/p&gt;
&lt;p&gt;I use a classical &amp;quot;GetItemRepeatConfig&amp;quot; query to get a Part BOM over multiple levels.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;code&gt;id=&amp;quot;xyz&amp;quot;;&lt;/code&gt;&lt;br /&gt;&lt;code&gt;Item partItem = inn.newItem(&amp;quot;Part&amp;quot;,&amp;quot;GetItemRepeatConfig&amp;quot;);&lt;/code&gt;&lt;br /&gt;&lt;code&gt;partItem.setAttribute(&amp;quot;select&amp;quot;,&amp;quot;id,classification,keyed_name,item_number&amp;quot;);&lt;/code&gt;&lt;br /&gt;&lt;code&gt;partItem.setID(id); // &amp;lt;- target Part&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;&lt;code&gt;Item bomItem = partItem.createRelationship(&amp;quot;Part BOM&amp;quot;,&amp;quot;get&amp;quot;);&lt;/code&gt;&lt;br /&gt;&lt;code&gt;bomItem.setAttribute(&amp;quot;select&amp;quot;,&amp;quot;related_id(keyed_name),sort_order&amp;quot;);&lt;/code&gt;&lt;br /&gt;&lt;code&gt;bomItem.setAttribute(&amp;quot;repeatProp&amp;quot;,&amp;quot;related_id&amp;quot;);&lt;/code&gt;&lt;br /&gt;&lt;code&gt;bomItem.setAttribute(&amp;quot;repeatTimes&amp;quot;,&amp;quot;10&amp;quot;);&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;&lt;code&gt;partItem = partItem.apply();&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;When taking a look at the AML result, I discovered that Parts that are used on multiple levels inside a BOM (e.g. common items like screws) are not returned as complete items. The full related item is available only ONCE inside the AML result, but not for every BOM position that use that Part.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Here is how the result looks like:&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The image shows three relationship BOM positions. Position 1 and 3 contain the full Part &amp;lt;Item&amp;gt; for the &amp;quot;related_id&amp;quot;. Position 2 does not contain the &amp;quot;Item&amp;quot; cause it appeared already present in a previous position.&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/3/pastedimage1674220014838v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Problem: Without the date of the related_id/Item, I am not able to render the AML data. In my current use case I want to restructure the AML result in a way that it will also include depth/level of each BOM position. This basically works well, but as soon a duplicate entry appears, the data for the child item is missing:&lt;/p&gt;
&lt;p&gt;Here is the current result that I get. I used a placeholder &amp;quot;Data missing&amp;quot; each time the related item is missing:&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/3/pastedimage1674220563909v2.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I discovered that this one is actually a know bug/behavior since over 10 years:&lt;/p&gt;
&lt;p&gt;&lt;a href="/f/archive/2097/developers-forum---getitemrepeatconfig-fix"&gt;https://community.aras.com/f/archive/2097/developers-forum---getitemrepeatconfig-fix&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The solution in the post is to not use GetItemRepeatConfig, but to manually create a query that includes all BOM levels.&lt;/p&gt;
&lt;p&gt;Sure, this solution will work. But after 10 years, is this really the solution of choice? My AML query shall also contain other relationships, which would make the query even bigger&amp;nbsp;when we hardcode any level manually.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Does anyone now a better solution for this one or how to modify the&amp;nbsp;GetItemRepeatConfig query so it returns all data?&lt;/p&gt;
&lt;p&gt;Thanks for any help!&lt;/p&gt;
&lt;p&gt;Angela&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Run &amp;#39;Spinner&amp;#39; on Aras modal dialog</title><link>https://www.aras.com/community/f/development/36435/run-spinner-on-aras-modal-dialog</link><pubDate>Tue, 27 Apr 2021 09:35:53 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:d76669fd-cb3b-4989-99ac-41c6298b88b8</guid><dc:creator>Aras Innovator&amp;amp;#39;s</dc:creator><description>&lt;p&gt;Hi Team,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;How to &lt;img alt=" " height="434" src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/3/dialog.png" width="584" /&gt;run&amp;nbsp;&amp;#39;Spinner&amp;#39; on modal dialog to prevent user from closing modal dialog.&lt;/p&gt;
&lt;p&gt;--&amp;gt;When user click on &amp;#39;Submit; button we should run a spinner which stops user from closing the dialog until something happened in the background.&lt;/p&gt;
&lt;p&gt;How can we achieve this.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thanks in advance.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>how comment in history is related with track history properties in Itemtype.</title><link>https://www.aras.com/community/f/development/5731/how-comment-in-history-is-related-with-track-history-properties-in-itemtype</link><pubDate>Tue, 05 Feb 2019 07:43:05 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:6b87c2b8-b210-46c8-9c66-f95f98e17d7e</guid><dc:creator>Tejaswini</dc:creator><description>&lt;p&gt;how comment in history is related with track history properties in Itemtype.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Disable more than one text field on the form</title><link>https://www.aras.com/community/f/development/6537/disable-more-than-one-text-field-on-the-form</link><pubDate>Wed, 06 Nov 2019 12:43:39 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:8bdc3803-3f2f-470a-b498-be7d5f4b98b3</guid><dc:creator>Dave259</dc:creator><description>&lt;p&gt;Hi Community,&lt;/p&gt;
&lt;p&gt;I&amp;nbsp;am using&amp;nbsp;a code from the &amp;quot;Disable Form Fields&amp;quot;-blog (&lt;a href="/b/english/posts/disable-form-fields/"&gt;https://community.aras.com/b/english/posts/disable-form-fields/&lt;/a&gt;) in one of my methods. In the test phase&amp;nbsp;I realized that the code for the text field only works on one field.&lt;/p&gt;
&lt;p&gt;I tried to call all the required fields in the brackets, but it always used only one field:&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:courier new,courier;"&gt;var input = getFieldByName(&amp;quot;part&amp;quot;, &amp;quot;part_number&amp;quot;, &amp;quot;quantity&amp;quot;);&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new,courier;"&gt;input.getElementsByTagName(&amp;quot;input&amp;quot;)[0].disabled = true;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;How can I easily disable multiple fields at the same time on the form?&lt;/p&gt;
&lt;p&gt;Thank you in advance for your help!&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Best regards&lt;/p&gt;
&lt;p&gt;David&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>How to hide a tab of an item?</title><link>https://www.aras.com/community/f/development/55236/how-to-hide-a-tab-of-an-item</link><pubDate>Fri, 19 Apr 2024 16:47:03 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:d31b00cc-735d-462b-8846-68f291cac16f</guid><dc:creator>Hargul Sidhu</dc:creator><description>&lt;p&gt;For the Item Part, for the all the part numbers, I need to hide a specific tab, lets say &amp;quot;Goals&amp;quot; for a specific identity.&amp;nbsp;&lt;br /&gt;&amp;quot;Goals&amp;quot; is under Relationship Types in Part item. I have tried:&lt;br /&gt;- Right click on the Goals in Relationship Type,Permissions--&amp;gt; Access Report, edit Permissions named &amp;quot;Relationship Type&amp;quot;. Add identity, here to Permission named &amp;quot;RelationshipType&amp;quot; and give no rights to the identity. The tab still shows.&amp;nbsp;&lt;br /&gt;&lt;img style="max-height:240px;max-width:320px;" src="/community/resized-image/__size/640x480/__key/communityserver-discussions-components-files/3/pastedimage1713545150107v3.png" alt=" " /&gt;&amp;nbsp;&lt;br /&gt;&lt;img style="max-height:240px;max-width:320px;" src="/community/resized-image/__size/640x480/__key/communityserver-discussions-components-files/3/pastedimage1713544407602v2.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>How to add History using a custom method?</title><link>https://www.aras.com/community/f/development/6232/how-to-add-history-using-a-custom-method</link><pubDate>Wed, 21 Aug 2019 14:28:22 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:9a5dcd7d-5bed-4d16-b618-16f484d6c593</guid><dc:creator>Sathish</dc:creator><description>&lt;p&gt;I want to log in History when a specific &amp;quot;Action&amp;quot; is performed on a &amp;quot;Part&amp;quot; . I try to do this by adding to the &amp;quot;History&amp;quot; table. I do get a response that the record is added, However, I do not see a record in the database, neither visible in the History View. I try to do this by invoking &amp;quot;History Daemon&amp;quot; identity.&lt;/p&gt;
&lt;p&gt;How can i achieve this in Aras?&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;AML&amp;gt;&lt;br /&gt;&amp;lt;Item action=&amp;#39;add&amp;#39; type=&amp;#39;History&amp;#39;&amp;gt;&lt;br /&gt;&amp;lt;action&amp;gt;Special Action&amp;lt;/action&amp;gt;&lt;br /&gt;&amp;lt;source_id&amp;gt;#######ITEM HISTORY CONTAINER ID#############/source_id&amp;gt;&lt;br /&gt;&amp;lt;comments&amp;gt;Attempted Special Action&amp;lt;/comments&amp;gt;&lt;br /&gt;&amp;lt;item_id&amp;gt;#######ITEM ID##############&amp;lt;/item_id&amp;gt;&lt;br /&gt;&amp;lt;/Item&amp;gt;&lt;br /&gt;&amp;lt;/AML&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Unable to do a SaveAs for an existing user</title><link>https://www.aras.com/community/f/community/38196/unable-to-do-a-saveas-for-an-existing-user</link><pubDate>Thu, 04 Jan 2024 09:54:45 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:e250a0cc-5036-48f1-9230-61d05bb58864</guid><dc:creator>amolakolkar001</dc:creator><description>&lt;p&gt;Hello Aras community,&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;span class="ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak" dir="ltr"&gt;Am trying a &amp;quot;SaveAs&amp;quot; for &amp;quot;admin&amp;quot; user using &amp;quot;root&amp;quot; login in order to create a new user, Getting attached error for it.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;span class="ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak" dir="ltr"&gt;Please let me know if this is the correct way to create a new user, apart from the other ways.&lt;img style="max-height:240px;max-width:320px;" alt=" " src="/community/resized-image/__size/640x480/__key/communityserver-discussions-components-files/10/new_5F00_user_5F00_error.JPG" /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Email Notification.</title><link>https://www.aras.com/community/f/community/9451/email-notification</link><pubDate>Fri, 10 Apr 2020 21:07:26 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:e41c6a7c-3f3e-491c-85f5-a882e70e9135</guid><dc:creator>diptasubhra10@gmail.com</dc:creator><description>&lt;p&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp; I want to send an Email Notification through a workflow. what are the Exact Steps should be following please guide me regarding these Email Notification?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;How can I configure my Aras so that once the part is released the assigned user gets a notification.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>aras.confirm dialog - Are there any alternatives or updates to improve the lock&amp;amp;feel?</title><link>https://www.aras.com/community/f/getting-started/37434/aras-confirm-dialog---are-there-any-alternatives-or-updates-to-improve-the-lock-feel</link><pubDate>Tue, 21 Jun 2022 16:01:53 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:23eba842-f69d-4498-b5a9-c1d2b376aae1</guid><dc:creator>AngelaIp</dc:creator><description>&lt;p&gt;Hi Community,&lt;/p&gt;
&lt;p&gt;I use aras.confirm() to get user confirmation before executing some onClick button events.&lt;br /&gt;The regular aras.confirm() mainly reuses the standard Javascript confirm() function and doesn&amp;acute;t really blend into the layout.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The confirm dialog (in Innovator 12) more locks like a browser related error message and not like&amp;nbsp;an Innovator object.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s not very aesthetic and would like to have something that looks nicer.&lt;span class="emoticon" data-url="https://www.aras.com/community/cfs-file/__key/system/emoji/1f600.svg" title="Grinning"&gt;&amp;#x1f600;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/6/pastedimage1655826439133v2.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;Does anyone know an alternative confirm option? We of course could build our own custom dialog. Or even better: Integrate some custom designs straight into aras-objects.js&lt;/p&gt;
&lt;p&gt;But maybe someone can recommend me an existing solution, that I might not have seen yet?&lt;/p&gt;
&lt;p&gt;I know that Aras right now reworks the UI styling in each new Innovator version. So I am not sure if a custom solution for this one is actually necessary anymore. Does anyone know if confirm messages has been enhanced already? And if yes, in which version? (14,15,16,17,18,19,20?)&lt;/p&gt;
&lt;p&gt;There are some dialog related topics on the roadmap and they even fixed a bug in the prompt dialog. But I am not sure if&amp;nbsp;there are any plans regarding confirm dialog.&lt;/p&gt;
&lt;p&gt;Thanks for any hint!&lt;/p&gt;
&lt;p&gt;Angela&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Sort order  items  of an itemtype by date (created_on property)</title><link>https://www.aras.com/community/f/applications/8990/sort-order-items-of-an-itemtype-by-date-created_on-property</link><pubDate>Wed, 29 Jan 2020 16:26:47 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:940a38a4-8c66-4f89-91b1-2272ab4b1935</guid><dc:creator>mouad</dc:creator><description>&lt;p&gt;Hello,&lt;br /&gt;&lt;br /&gt;Is there any way in the configuration&amp;nbsp;to retreive all items of an ItemType sorted by date (created_on property) when runing search.&lt;br /&gt;&lt;br /&gt;otherwise i have developped a server method without success:&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Innovator inn = this.getInnovator();&lt;/p&gt;
&lt;p&gt;Item Items = inn.newItem(&amp;quot;name of the ItemType&amp;quot;,&amp;quot;get&amp;quot;);&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;Items.setAttribute(&amp;quot;orderBy&amp;quot;, &amp;quot;[name of the ItemType].created_on desc &amp;quot;);&lt;/p&gt;
&lt;p&gt;return Items.apply();&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Any help please ?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>System Event - SuccessfulLogin</title><link>https://www.aras.com/community/f/development/38068/system-event---successfullogin</link><pubDate>Fri, 18 Aug 2023 16:26:32 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:1b382f3a-4aad-47f0-9712-969b0b19eaf7</guid><dc:creator>ddidonato</dc:creator><description>&lt;p&gt;I&amp;#39;m trying to run this method on the System Event Successful Login but get an error &amp;quot;&lt;span class="aras-dialog-alert__text-container"&gt;&lt;span class="aras-dialog-alert__text"&gt;Not a single item&lt;/span&gt;&lt;/span&gt;&amp;quot; The SQL is bring back 1 record since I&amp;#39;m using the &amp;quot;Select top(1)&amp;quot;. I&amp;#39;m not sure why the error.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Innovator inn=this.getInnovator();&lt;br /&gt;String SQL = &amp;quot;Select top (1) aras_session_id as nb from [Test500].[application].[ACTIVEUSER] where login_name = &amp;#39;hdportal&amp;#39; order by login_time desc&amp;quot;;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;SQL = String.Format(SQL,this.getProperty(&amp;quot;id&amp;quot;,&amp;quot;error&amp;quot;));&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;Item res = this.getInnovator().applySQL(SQL);&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;if (!res.isError())&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;{&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;string nb = res.getProperty(&amp;quot;nb&amp;quot;,&amp;quot;&amp;quot;);&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Item cSession = this.newItem(&amp;quot;MIN_PORTAL_STORE_ID&amp;quot;,&amp;quot;edit&amp;quot;);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cSession.setID(&amp;quot;26E9C01A4C264B80967D07F2F386BD1B&amp;quot;);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cSession.setProperty(&amp;quot;session_id&amp;quot;,nb);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cSession.apply();&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;br /&gt;return this;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Part MultiLevel BOM</title><link>https://www.aras.com/community/f/development/38067/part-multilevel-bom</link><pubDate>Mon, 14 Aug 2023 16:48:18 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:578f87aa-085c-4687-8d49-d47e58a833d7</guid><dc:creator>ddidonato</dc:creator><description>&lt;p&gt;I added a new field in my &amp;quot;Part&amp;quot; item type that&amp;#39;s is called &amp;quot;master file&amp;quot; which is an item type that comes from the FILE item type. I changed the PartLevel BOM code so it displays in the BOM Structure. My two issues are:&lt;/p&gt;
&lt;p&gt;1. How can I display the keyed name for that file instead of the ID. I changed the GetMultiBom method from:&lt;/p&gt;
&lt;p&gt;infoOfItem.file_master = itm.getProperty(&amp;quot;related_file_master&amp;quot;, &amp;quot;&amp;quot;);&lt;br /&gt;to&lt;br /&gt;infoOfItem.file_master = itm.getPropertyAttribute(&amp;quot;related_file_master&amp;quot;,&amp;quot;keyed_name&amp;quot;,&amp;quot;&amp;quot;);&lt;/p&gt;
&lt;p&gt;but that didn&amp;#39;t work.&lt;/p&gt;
&lt;p&gt;2. How can I make that field act like a item type field so it&amp;#39;s clickable to display that item? It&amp;#39;s only displaying the ID number and I&amp;#39;m not able to click the ID to display that file. - see attachment.&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="/community/resized-image/__size/640x480/__key/communityserver-discussions-components-files/3/aa.JPG" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>TypeError: Cannot read properties of undefined (reading &amp;#39;itemTypeGridPlugin&amp;#39;)</title><link>https://www.aras.com/community/f/community/38034/typeerror-cannot-read-properties-of-undefined-reading-itemtypegridplugin</link><pubDate>Wed, 12 Jul 2023 03:43:23 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:71f75319-ec9f-4732-a340-8851140d4cbe</guid><dc:creator>Senthurpari Sargunam</dc:creator><description>&lt;p&gt;Dear team,&lt;/p&gt;
&lt;p&gt;We are currently using Aras version Release19. However, when attempting to perform searches for both parts and documents, we encounter an error stating &amp;quot;TypeError: Cannot read properties of undefined (reading &amp;#39;itemTypeGridPlugin&amp;#39;).&amp;quot; This error is causing the search operation to fail. Could you please advise on how to resolve this issue? I have already checked the error log, but I couldn&amp;#39;t find any relevant information.&lt;/p&gt;
&lt;p&gt;Attaching screenshot for your reference.&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="/community/resized-image/__size/640x480/__key/communityserver-discussions-components-files/10/pastedimage1689133243938v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;S. Senthurpari&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Batch Approve Express ECOs</title><link>https://www.aras.com/community/f/development/38030/batch-approve-express-ecos</link><pubDate>Mon, 10 Jul 2023 19:29:25 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:e230e6de-934e-477e-9cc5-f8374f3f9988</guid><dc:creator>Travis1st</dc:creator><description>&lt;p&gt;We are using Innovator 24 in a large course (550+) students. This Fall we will be having all students submit their work using the Express ECOs. Once items are scored, we would like to be able to Batch Approve the ECOs by selecting the desired ECOs with an Action available in the contextual menu to approve the selected ECOs.&lt;/p&gt;
&lt;p&gt;Any assistance with writing the method that would enable this would be greatly appreciated.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>