<?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>Bernt Ove Sunde さんの グループ アクティビティ</title><link>https://www.aras.com/community/members/berntove</link><description>Bernt Ove Sunde さんの グループ ユーザーの最近のアクティビティ</description><dc:language>ja-JP</dc:language><generator>Telligent Community 12</generator><item><title>ECO Item in Browser changes after voting it from Planning and to In Work</title><link>https://www.aras.com/community/f/community/55386/eco-item-in-browser-changes-after-voting-it-from-planning-and-to-in-work</link><pubDate>Thu, 09 Jan 2025 13:44:42 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:a3708f4f-1b1f-4b95-b2da-792adbde6e0e</guid><dc:creator>Bernt Ove Sunde</dc:creator><description>&lt;p&gt;Hi all,&lt;/p&gt;
&lt;p&gt;Currently setting up a new production environment with V31 and have gotten a very special error on our ECO item.&lt;/p&gt;
&lt;p&gt;The ECO is slightly modified, but uses the EHT module from Minerva for dynamical assignment.&lt;/p&gt;
&lt;p&gt;Everything is going as planned until the ECO is voted to In Work. When the ECO refreshes it has changed its keyed_name to the affected_part keyed_name, and has gotten a new item ID. When trying&amp;nbsp; to seach in the database after the ECO with the new item ID it does not exists.&lt;/p&gt;
&lt;p&gt;It seems that the ECO is now trying to be the afffected part, but the signoff tab still works, and we are able to finish the voting and release of the ECO and its affected parts.&lt;/p&gt;
&lt;p&gt;If we close the ECO tab and open it again its back to its normal state.&lt;/p&gt;
&lt;p&gt;It seems like its a client/browser issue, but I*m now at a miss to where troubleshoot. I have excluded server and client methods, but the issue is still present.&lt;/p&gt;
&lt;p&gt;We are using Edge (&lt;span&gt;Version 131.0.2903.112 (Official build) (64-bit))&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Any tips and help is greatly appreciated!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>DBList request failed: Request uri: &amp;#39;http://localhost/InnovatorServer/Server/DBList.aspx&amp;#39;, Status code: &amp;#39;404&amp;#39;, Reason: &amp;#39;Not Found&amp;#39;.</title><link>https://www.aras.com/community/f/getting-started/38310/dblist-request-failed-request-uri-http-localhost-innovatorserver-server-dblist-aspx-status-code-404-reason-not-found</link><pubDate>Thu, 14 Mar 2024 08:35:44 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:4c01b671-baab-4e23-a11a-dd90114dc4ef</guid><dc:creator>wengenyi</dc:creator><description>&lt;p&gt;When I install innovator, open localhost/innovatorserver, I can jump to the login page, but it shows that the DBList.aspx file cannot be found. I looked for this file locally and could not find it.When I install innovator, open localhost/innovatorserver, I can jump to the login page, but it shows that the DBList.aspx file cannot be found. I looked for this file locally and could not find it.&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/6/WX20240314_2D00_163345_4000_2x.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Getting Item id from custom context method on Tree Grid View</title><link>https://www.aras.com/community/f/community/37739/getting-item-id-from-custom-context-method-on-tree-grid-view</link><pubDate>Mon, 12 Dec 2022 12:48:50 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:7cca7f58-6dda-4553-8bfc-83ec5d462dae</guid><dc:creator>Bernt Ove Sunde</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I have two&amp;nbsp;new ItemTypes that i use to add project activities and tasks to the Part ItemType like this:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;img alt="Part, Project Activity, and Tasks Relationships" src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/10/Part-_2D00_-Task-Relationships.PNG" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I have created a new query definition and tree grid view to display the structure on a new tab on the Part:&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/10/Tree-Grid-View.PNG" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I have also created a custom context menu item with corresponsing method that is intended to set the Done property on the selected task.&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/10/Complete-Action.png" /&gt;&lt;/p&gt;
&lt;p&gt;The issue i am struggeling with is that i cant get the Item id of the selected row.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="javascript"&gt;var taskItem = aras.newIOMItem(&amp;#39;Task&amp;#39;, &amp;#39;edit&amp;#39;);
var tgvContext = inArgs.contextParams.tgvContext;
var tgvGrid = tgvContext.grid;
var tgvGridData = tgvContext.getGridData()

var dataObject = tgvGridData.focus[0].row.cells[0].data;
aras.AlertError(&amp;quot;Result: &amp;quot; + dataObject);&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;as shown from the output i get &amp;quot;INVALID_ID_VALUE&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/10/ErrorMsg.PNG" /&gt;&lt;/p&gt;
&lt;p&gt;Hope somebody can assist here.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Deleting Part BOM relationships on Parts</title><link>https://www.aras.com/community/f/development/36619/deleting-part-bom-relationships-on-parts</link><pubDate>Tue, 22 Jun 2021 08:55:41 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:84ffd5d5-46a7-4945-a022-b1472fddb6c1</guid><dc:creator>Bernt Ove Sunde</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I`m currently trying to develop a function that easily deletes all Part BOM lines of a specific type (in our configuration &amp;quot;Purchased Parts&amp;quot;). All assebly parts should be left alone since in my next part of development my plan is to run the method also on these (i.e.&amp;nbsp;make it recursive).&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I have made an action on the Part Item that runs the following code:&lt;/p&gt;
&lt;p&gt;Innovator inn = this.getInnovator();&lt;br /&gt;Item qryItm = inn.newItem(&amp;quot;Part&amp;quot;, &amp;quot;get&amp;quot;);&lt;br /&gt;Item PartBOM_Relationship = inn.newItem(&amp;quot;Part BOM&amp;quot;, &amp;quot;get&amp;quot;);&lt;br /&gt;Item BOM_Part = inn.newItem(&amp;quot;Part&amp;quot;, &amp;quot;get&amp;quot;);&lt;br /&gt;qryItm.setID(this.getID());&lt;br /&gt;PartBOM_Relationship.setRelatedItem(BOM_Part);&lt;br /&gt;qryItm.addRelationship(PartBOM_Relationship);&lt;br /&gt;Item partItm = qryItm.apply();&lt;/p&gt;
&lt;p&gt;partItm.setAction(&amp;quot;edit&amp;quot;);&lt;/p&gt;
&lt;p&gt;Item partRelationships = partItm.getRelationships(&amp;quot;Part BOM&amp;quot;);&lt;/p&gt;
&lt;p&gt;for (int i=0; i&amp;lt; partRelationships.getItemCount(); i++) {&lt;br /&gt; &lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Item part_relationship = partRelationships.getItemByIndex(i);&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Item partItem = part_relationship.getRelatedItem();&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (partItem.getProperty(&amp;quot;ve_classification_display&amp;quot;, &amp;quot;&amp;quot;) == &amp;quot;PURCHASED PART&amp;quot;) {&lt;br /&gt; &lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;partItm.removeRelationship(part_relationship);&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;br /&gt;}&lt;/p&gt;
&lt;p&gt;partItm = partItm.apply();&lt;br /&gt;return&amp;nbsp;partItm;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I have checked that the if is triggered and a new generation of the part is generated, but the Part BOM relationships are still there in the new generation of the part.&lt;/p&gt;
&lt;p&gt;I have also tried to delete the relationship item but this is not allowed in my current configuration.&lt;/p&gt;
&lt;p&gt;What am i missing?&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, 22 Jun 2021 07:16:34 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:d8fe12ba-9ed4-42bd-a361-e8266f71afa9</guid><dc:creator /><description>Ask a question in a forum.</description></item><item><title>AML request get where relationship is empty</title><link>https://www.aras.com/community/f/development/3508/aml-request-get-where-relationship-is-empty</link><pubDate>Wed, 20 Dec 2017 04:00:28 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:5fcee740-fcfd-415d-9df9-581835a94f8e</guid><dc:creator>Former Member</dc:creator><description>Hi all,

I&amp;#39;m struggling with an AML request, i would like to get items from an Item Type where a certain Relationship is Empty, and an other request  where this Relationship is not empty.

Thank you !

Léo&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>