<?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>remco.van.oosterhout さんの グループ アクティビティ</title><link>https://www.aras.com/community/members/remco_2d00_van_2d00_oosterhout</link><description>remco.van.oosterhout さんの グループ ユーザーの最近のアクティビティ</description><dc:language>ja-JP</dc:language><generator>Telligent Community 12</generator><item><title>Saving to existing Document Item w/ Office Connector</title><link>https://www.aras.com/community/f/development/3813/saving-to-existing-document-item-w-office-connector</link><pubDate>Mon, 09 Jul 2018 05:02:15 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:4e7cced2-2072-4a3d-b01c-92fa965fe45c</guid><dc:creator>remco.van.oosterhout</dc:creator><description>Hi there,

At the moment I&amp;#39;m looking into the Office Connector with the goal to implement it for our business. Currently I&amp;#39;m only managing to save files to ARAS as new Document items. I.e. I have a .docx file appended to Document item Doc-001, open it in Word using the &amp;quot;Open in Office&amp;quot; action, edit it and then use the &amp;quot;Save and close&amp;quot; button in the ARAS ribbon in Word to save my changes to the file and upload it back to ARAS. Rather than create a new generation for my Document item and replace the old file relation with a relation to the updated file ARAS simply creates a new Document item (say Doc-002). This clutters up the maingrid with a number of versions of the same file. Edit a file 10 times and Doc-001 to Doc-010 are different versions of the same file. Work on multiple files and Doc-001 to Doc-999 are numerous versions of numerous files without much of a pattern to it.

Am I just configuring things wrongly here and is there a way to force the desired behavior or will I have to write custom methods to take care of all of this?

Kindest regards,

Remco van Oosterhout&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>Tue, 24 Mar 2020 06:55:36 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:f0963ab5-ffe3-4c64-8a43-0f9c8b684aef</guid><dc:creator /><description>Start a discussion in a forum that receives 5 replies.</description></item><item><title>Attribute suppression with multiple parameters</title><link>https://www.aras.com/community/f/development/9372/attribute-suppression-with-multiple-parameters</link><pubDate>Tue, 24 Mar 2020 06:55:36 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:7eaf9b1b-7417-44f4-ad76-e98bad1b0d96</guid><dc:creator>remco.van.oosterhout</dc:creator><description>&lt;p&gt;Hi, I&amp;#39;m looking to add a suppression to my ItemAnalysis.Suppressions xml file using 2 parameters in the same attribute suppression. How do I go about this/is this even possible? Currently we&amp;#39;re on Aras 11SP12.&lt;/p&gt;
&lt;p&gt;We&amp;#39;re looking at the following case. We want to enable appointing assignees in a workflow using the batchloader. To do so I need to use the following AML:&lt;/p&gt;
&lt;p&gt;&amp;lt;AML&amp;gt;&amp;lt;Item action=&amp;quot;add&amp;quot; type=&amp;quot;Activity Assignment&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;source_id&amp;gt;&amp;lt;Item type=&amp;quot;Activity&amp;quot; action=&amp;quot;get&amp;quot; where=&amp;quot;[Activity].id IN (&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SELECT a.ID AS ID FROM&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; innovator.[ACTIVITY] a&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LEFT JOIN innovator.[WORKFLOW_PROCESS_ACTIVITY] wpa on a.id = wpa.RELATED_ID&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LEFT JOIN innovator.[WORKFLOW_PROCESS] wp on wpa.SOURCE_ID = wp.ID&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LEFT JOIN innovator.[WORKFLOW] w on w.RELATED_ID = wp.id&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LEFT JOIN innovator.[DOCUMENT] d on d.ID = w.SOURCE_ID&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; WHERE a.LABEL_NL = &amp;#39;name of some activity recognizable to the user, or @parameter1&amp;#39;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; AND wp.STATE = &amp;#39;Active&amp;#39;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; AND d.ITEM_NUMBER = &amp;#39;itemnumber of some document, or @parameter2&amp;#39; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; AND d.IS_CURRENT = &amp;#39;1&amp;#39;)&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Item&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;/source_id&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;related_id&amp;gt;&amp;lt;Item type=&amp;quot;Identity&amp;quot; action=&amp;quot;get&amp;quot; where=&amp;quot;[Identity].keyed_name=&amp;#39;some known identity&amp;#39;&amp;quot;&amp;gt;&amp;lt;/Item&amp;gt;&amp;lt;/related_id&amp;gt;&lt;br /&gt; &amp;lt;/Item&amp;gt;&lt;br /&gt;&amp;lt;/AML&amp;gt;&lt;/p&gt;
&lt;p&gt;So to find the right activity I need the name of that activity (or at least what a user recognizes as such) and the itemnumber of the document the activity assignment ultimately relates to. In order to fit this in the format required by the ItemAnalysis.Suppressions I&amp;#39;d have to supply 2 separate parameters but I don&amp;#39;t think this is supported.&lt;/p&gt;
&lt;p&gt;How can I get this to work, with the knowledge that we&amp;#39;re looking to migrate to Aras 12 and therefor adding &amp;lt;operating_parameter key=&amp;quot;parse_item&amp;quot; value=&amp;quot;false&amp;quot;/&amp;gt; to InnovatorServerConfig.xml won&amp;#39;t be a longterm solution?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>How to highlight a relationship tab</title><link>https://www.aras.com/community/f/development/5709/how-to-highlight-a-relationship-tab</link><pubDate>Wed, 30 Jan 2019 07:42:48 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:39d9136f-09cb-4c16-9906-0b203e3e0818</guid><dc:creator>remco.van.oosterhout</dc:creator><description>&lt;p&gt;Hi there,&lt;/p&gt;
&lt;p&gt;I&amp;#39;m looking to highlight certain relationship tabs (say the Documents tab under a Part item). Now I&amp;#39;ve found controls to edit the CSS of various fields of the Part form, but I haven&amp;#39;t been able to figure out how I can for instance change the background colour of the Documents tab label (in order to pull a users attention towards it, for instance).&lt;/p&gt;
&lt;p&gt;Is it at all possible to dynamically change the look of that particular piece of the form (by firing a method on the onLoad and/or onFormPopulate events for instance), or are those controls entirely inaccessible?&lt;/p&gt;
&lt;p&gt;Kindest regards,&lt;/p&gt;
&lt;p&gt;Remco van Oosterhout&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Office 365 Aras Workflow Approval compatibility</title><link>https://www.aras.com/community/f/integrations/4062/office-365-aras-workflow-approval-compatibility</link><pubDate>Thu, 06 Dec 2018 08:18:42 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:ad08ef68-0784-421e-8708-c4be4e6c15c5</guid><dc:creator>remco.van.oosterhout</dc:creator><description>Hi there,

I&amp;#39;m looking to implement the Aras Workflow Approval add-on in our Office 365 Outlook environment. The add-on states it&amp;#39;s compatible with Outlook 2013 SP1+, so does that mean it&amp;#39;ll be compatible with Office 365 as well?

Currently I&amp;#39;m having trouble installing it, which is either due to compatibility issues or company policies and I&amp;#39;m trying to figure out which of the two it is.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Firing action from tree grid views</title><link>https://www.aras.com/community/f/development/3926/firing-action-from-tree-grid-views</link><pubDate>Thu, 13 Sep 2018 06:25:04 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:4f124490-7bae-4142-b0ba-c0eba4dabecf</guid><dc:creator>remco.van.oosterhout</dc:creator><description>So the Office Connector now is up and running and I&amp;#39;ve modified the code for the Open in Office action to also function from relationship items. Some time ago I also implemented a tree grid view that allows the user to navigate to documents through a system breakdown structure via the main grid.

Seeing as it&amp;#39;d be a nice timesaver if users didn&amp;#39;t have to open the document item before being able to use the Open in Office action, how would I have to go about adding that action to the tree grid view? I&amp;#39;ll either have to be able to retrieve a relationship item that has a Document item as its related ID or to retrieve the ID of the Document displayed on the row the user rightclicks on.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Copying and appending physical files</title><link>https://www.aras.com/community/f/development/3896/copying-and-appending-physical-files</link><pubDate>Thu, 23 Aug 2018 02:10:51 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:057dda16-74ea-498c-81f4-b1e5ce63e90e</guid><dc:creator>remco.van.oosterhout</dc:creator><description>Another day, another challenge. I&amp;#39;m still working on our Office Connector integration and one of the features I want to present to my user community is the ability to use templates when creating new Document items. In order to do this a user can set the &amp;quot;from_template&amp;quot; property, after which I want to copy the physical file appended to that particular Document item and append it to the new Document item so the user won&amp;#39;t have to do so manually. This saves our users a lot of work as new Document items often are created in bulk with the batchloader, literally by the hundreds. Instead of having to upload a file for each and every individual Document item this&amp;#39;ll be all done programmatically so our engineers etc. can get straight to work on the various documents.

Unfortunately however I can&amp;#39;t seem to figure out how to copy the physical file on the server. Creating a File and relationship item is easy enough, but how do I copy the physical file the original File item points to?&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>Wed, 12 Dec 2018 22:57:00 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:0c7d3dba-f1a9-4c3f-a7b4-d65831c59dc9</guid><dc:creator /><description>Ask a question in a forum.</description></item><item><title>Tree view in main grid</title><link>https://www.aras.com/community/f/development/3674/tree-view-in-main-grid</link><pubDate>Fri, 04 May 2018 04:00:26 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:f1e1c04b-d60c-4f7b-9f31-eddabda2de74</guid><dc:creator>remco.van.oosterhout</dc:creator><description>Hi there,

I&amp;#39;m currently fumbling around with SP12 and am trying to get a tree grid view to display on the main grid instead of a relationship grid. For instance, I&amp;#39;d want to display all my Part BOMs in the main grid to allow users to manually browse through them. A next step would be to show both Part BOMs and Part Documents so users can navigate through the Part structure to find the Document item they want to work on/review etc.

I manage to get the grid up and running in relationship grids using the Tree Grid View and Query builder but can&amp;#39;t seem to get it to work in the main grid.

To make things easier, our Part items have an &amp;quot;is_top&amp;quot; property to define whether or not the item is the top item in its respective Part BOM, so to gather the top elements for each Part BOM one just has to look for elements where the &amp;quot;is_top&amp;quot; property is set to 1. From there, the rest of each tree can be added.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>