<?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>dortego さんの グループ アクティビティ</title><link>https://www.aras.com/community/members/dortego</link><description>dortego さんの グループ ユーザーの最近のアクティビティ</description><dc:language>ja-JP</dc:language><generator>Telligent Community 12</generator><item><title>How to order a tree grid view by items that are related to the context items?</title><link>https://www.aras.com/community/f/development/6175/how-to-order-a-tree-grid-view-by-items-that-are-related-to-the-context-items</link><pubDate>Mon, 22 Jul 2019 15:59:01 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:10cdf39e-b29c-484d-a714-594cb8a3a770</guid><dc:creator>dortego</dc:creator><description>&lt;p&gt;I&amp;#39;m trying to order the items on a Query Definition by keyed name. The problem I&amp;#39;m having is that the items are related to a relationship ItemType, which is the context item on this query definition. This context item is unmapped, so the user only sees the source items of this relationship ItemType. Trying to order these items by keyed name using the Query Builder doesn&amp;#39;t seem to work because of the context item. So I added a foreign property to the context item, which is referencing the keyed name of its source item, and tried to order by that in Query Builder. But there&amp;#39;s no change in the order. However, if I order the context item by its source_id, it does seem to display the items in this order. This leads me to believe that you cannot order a Tree Grid View by a foreign property of the Query Def&amp;#39;s context item, but you can if the property is not foreign. My question is how can I order the results of the Tree Grid View by an item&amp;#39;s keyed name if it is only &lt;em&gt;related&lt;/em&gt; to the context item of the Query Definition?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Scheduler Service Issues</title><link>https://www.aras.com/community/f/development/6091/scheduler-service-issues</link><pubDate>Thu, 20 Jun 2019 17:46:19 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:706c6216-866f-4d2b-b757-5cade05a40f7</guid><dc:creator>dortego</dc:creator><description>&lt;p&gt;I&amp;#39;m trying to automate the execution of a server method, but after installing the Aras Scheduler Service and filling out the&amp;nbsp;InnovatorServiceConfig file, the scheduled method does not execute. I can see InnovatorService trying to execute the method in Windows Event Viewer. It says &amp;quot;Method finished&amp;quot; in Event Viewer, but then shows the error &amp;quot;The last run was less than an Interval ago&amp;quot; and the method does not execute. I can execute the method fine and see changes in the database if I go to Actions&amp;gt;Run Server Method in Aras, but the attempts by the Scheduler Service make no difference to the specified database.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>onBeforeUpdate - &amp;#39;Not a single item&amp;#39; error</title><link>https://www.aras.com/community/f/development/6080/onbeforeupdate---not-a-single-item-error</link><pubDate>Tue, 18 Jun 2019 20:58:05 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:b21c886e-9067-4e92-84d3-d86ea45cafdb</guid><dc:creator>dortego</dc:creator><description>&lt;p&gt;I have onBeforeAdd and onBeforeDelete methods on an ItemType to change a property depending on the status of that property on other instances of that ItemType. Those work fine. But when I tried to add an onBeforeUpdate method to detect when another property was changed, the &amp;#39;Not a single item&amp;#39; error shows up. I&amp;#39;m also not able to use the apply() method on any item that is changed on the update method. I just need to know how to make a change to the item&amp;nbsp;stick when using an Update server method.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Change a Tree Grid View&amp;#39;s parameter values</title><link>https://www.aras.com/community/f/development/5965/change-a-tree-grid-view-s-parameter-values</link><pubDate>Thu, 25 Apr 2019 21:08:58 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:afab168a-3811-4d7b-8db9-12d90dbc7640</guid><dc:creator>dortego</dc:creator><description>&lt;p&gt;Tree Grid View have parameters. You can set them like variables and then manually change them when you view an Item. Anyone ever changed these parameters programmatically? I&amp;#39;m able to reference the correct parameters and set their nodes&amp;#39; textContent, but the changes don&amp;#39;t actually apply after the method completes. Here&amp;#39;s a snippet:&lt;/p&gt;
&lt;p&gt;var tgv_id = &amp;quot;some GUID&amp;quot;; // tree grid view id&lt;/p&gt;
&lt;p&gt;var tgv = inn.newItem(&amp;quot;rb_TreeGridViewDefinition&amp;quot;, &amp;quot;get&amp;quot;);&lt;br /&gt;tgv.setID(tgv_id);&lt;br /&gt;tgv.setAttribute(&amp;quot;levels&amp;quot;,&amp;quot;2&amp;quot;);&lt;br /&gt;tgv = tgv.apply();&lt;/p&gt;
&lt;p&gt;var startValue = bg.getProperty(&amp;quot;_start&amp;quot;);&lt;br /&gt;var endValue = bg.getProperty(&amp;quot;_end&amp;quot;);&lt;/p&gt;
&lt;p&gt;var paramItem1 = tgv.dom.selectSingleNode(&amp;quot;//Item[keyed_name='startDate'][@type='rb_QueryDefinitionParameterMap']/user_input_default_value&amp;quot;);&lt;br /&gt;paramItem1.textContent = startValue;&lt;/p&gt;
&lt;p&gt;var paramItem2 = tgv.dom.selectSingleNode(&amp;quot;//Item[keyed_name='endDate'][@type='rb_QueryDefinitionParameterMap']/user_input_default_value&amp;quot;);&lt;br /&gt;paramItem2.textContent = endValue;&lt;/p&gt;
&lt;p&gt;tgv = tgv.apply();&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>Fri, 12 Apr 2019 18:33:54 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:b68b2e99-c50c-4dde-a84b-7fb7e11ecac3</guid><dc:creator /><description>Ask a question in a forum.</description></item><item><title>How to reference the ItemType in the current tab in a Dialog box?</title><link>https://www.aras.com/community/f/development/5937/how-to-reference-the-itemtype-in-the-current-tab-in-a-dialog-box</link><pubDate>Fri, 12 Apr 2019 18:33:53 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:43804a28-5f64-4f66-9574-5991c491d3f9</guid><dc:creator>dortego</dc:creator><description>&lt;p&gt;I&amp;#39;m&amp;nbsp;working on a client side method to clone an ItemType using a dialog box. My approach is to make a form with a check box to choose to copy properties and another check box to copy values from a relationship tab, and a button for &amp;quot;Done&amp;quot; and &amp;quot;Cancel.&amp;quot; Then opening that form inside a dialog box that&amp;#39;s opened from a menu button. My problem is referencing the ItemType in the current tab from the dialog box.&lt;/p&gt;
&lt;p&gt;I tried adding the item as an argument to the dialog using the &amp;#39;item&amp;#39; tag, but using document.thisItem returns &amp;#39;undefined&amp;#39; for me.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Cmd Batch Loader: &amp;#39;Not a single item&amp;#39; error</title><link>https://www.aras.com/community/f/applications/5880/cmd-batch-loader-not-a-single-item-error</link><pubDate>Mon, 18 Mar 2019 14:44:58 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:868b88cd-6dc3-4320-acf7-b1cdb67f4e0a</guid><dc:creator>dortego</dc:creator><description>&lt;p&gt;I&amp;#39;m trying to load some data using the cmd batch loader tool for a number of different ItemTypes. When the script gets to the last ItemType, an error occurs in the cmd window that states &amp;quot;Not a single item&amp;quot; for each row of data to be imported. I ran into this issue when creating an onBeforeAdd server method for this ItemType. My workaround was to enclose the method&amp;#39;s logic in a for-loop to iterate through each item individually. So there&amp;#39;s no problem with adding these items manually through the Aras interface, but the batch loader still complains. Is there a fix I can make to the method itself? Or is there a way to change my batch script to get around this problem?&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>