<?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>Nara さんの グループ アクティビティ</title><link>https://www.aras.com/community/members/ynarayanareddy</link><description>Nara さんの グループ ユーザーの最近のアクティビティ</description><dc:language>ja-JP</dc:language><generator>Telligent Community 12</generator><item><title>Integrate ARAS with office connector</title><link>https://www.aras.com/community/f/community/36527/integrate-aras-with-office-connector</link><pubDate>Mon, 24 May 2021 08:21:50 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:0ffcce4e-4503-4946-8bba-bafcd8b01e9b</guid><dc:creator>prakashm</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;is there any document that explains how to integrate ARAS with office connector ?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>&amp;quot;Classification cannot be changed after saving the item&amp;quot; error using the .Net API to update requirement</title><link>https://www.aras.com/community/f/development/6100/classification-cannot-be-changed-after-saving-the-item-error-using-the-net-api-to-update-requirement</link><pubDate>Mon, 24 Jun 2019 10:24:19 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:6b7bc16f-31b8-4521-988f-daae7800b5dd</guid><dc:creator>archan96</dc:creator><description>&lt;p&gt;I am using Aras 11 SP15. I am trying to update a requirement I created. Here is my code:&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;using System;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;using System.Collections.Generic;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;using Aras.IOM;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;namespace TestArasProject&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;&amp;nbsp; &amp;nbsp; public static class Program&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;&amp;nbsp; &amp;nbsp; { &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; public static void Main(string[] args)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;{&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;HttpServerConnection conn = IomFactory.CreateHttpServerConnection(serverUrl, dbName, username, password);&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;Innovator inn = IomFactory.CreateInnovator(conn);&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;conn.Login();&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;Item updateItem = inn.newItem(requirement, &amp;quot;edit&amp;quot;);&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;string internalId = &amp;quot;FB20D91203DC4E3EB30DBA0CFBE4FD0F&amp;quot;;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;updateItem.setAttribute(&amp;quot;where&amp;quot;, &amp;quot;[" + requirement.Replace(' ', '_') + "].&amp;quot; + &amp;quot;config_id&amp;quot; + &amp;quot; = &amp;#39;&amp;quot; + internalId + &amp;quot;&amp;#39; AND [" + requirement.Replace(' ', '_') + "].&amp;quot; + &amp;quot;is_current&amp;quot; + &amp;quot;=&amp;#39;1&amp;#39;&amp;quot;);&lt;/span&gt;&lt;br /&gt; &lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;// updating the name of the requirement&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;updateItem.setProperty(&amp;quot;req_rm_title&amp;quot;, &amp;quot;Test Requirement&amp;quot; + Guid.NewGuid());&lt;/span&gt;&lt;br /&gt; &lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;Item result = updateItem.apply();&lt;/span&gt;&lt;br /&gt; &lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;Console.WriteLine(result);&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;Console.WriteLine(result.isError());&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;Console.ReadLine();&lt;/span&gt;&lt;br /&gt; &lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;conn.Logout();&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;&amp;nbsp; &amp;nbsp; }&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;}&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:inherit;"&gt;I am getting the following error:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;&amp;lt;SOAP-ENV:Envelope xmlns:SOAP-ENV=&amp;quot;&lt;a href="http://schemas.xmlsoap.org/soap/envelope/" /&gt;&amp;quot;&amp;gt;schemas.xmlsoap.org/.../&amp;quot; xmlns:i18n=&amp;quot;&lt;a href="http://www.aras.com/I18N"&gt;&amp;quot;&amp;gt;www.aras.com/I18N&amp;quot;&amp;gt;&amp;lt;SOAP-ENV:Body&amp;gt;&amp;lt;SOAP-ENV:Fault&amp;gt;&lt;/a&gt;&lt;br /&gt; &amp;lt;faultcode&amp;gt;1&amp;lt;/faultcode&amp;gt;&lt;br /&gt; &amp;lt;faultactor /&amp;gt;&lt;br /&gt; &amp;lt;faultstring&amp;gt;Classification cannot be changed after saving the item.&amp;lt;/faultstring&amp;gt;&amp;lt;/SOAP-ENV:Fault&amp;gt;&amp;lt;/SOAP-ENV:Body&amp;gt;&amp;lt;/SOAP-ENV:Envelope&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:inherit;"&gt;I checked the XML which was getting created to update, this XML did not even contain the Classification property nor am I trying to update it. Here is the XML:&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;&amp;lt;Item isNew=\&amp;quot;1\&amp;quot; isTemp=\&amp;quot;1\&amp;quot; type=\&amp;quot;re_Requirement\&amp;quot; action=\&amp;quot;edit\&amp;quot; where=\&amp;quot;[re_Requirement].config_id = &amp;#39;3AFD850B785E43F1B854EE404469FA87&amp;#39; AND [re_Requirement].is_current=&amp;#39;1&amp;#39;\&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;lt;req_title&amp;gt;2019_06_24_12_25_42_850_-{AB}&amp;lt;/req_title&amp;gt;&lt;br /&gt;&amp;lt;/Item&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:inherit;"&gt;I noticed that Classification (Type) is a default value on UI still I need to explicitly pass it through the API. This is not the case with Risk or Complexity type of fields. How do I update a requirement?&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>How to configure Out of the office options in Aras Innovator</title><link>https://www.aras.com/community/f/community/6184/how-to-configure-out-of-the-office-options-in-aras-innovator</link><pubDate>Fri, 26 Jul 2019 19:24:44 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:191cbefb-c4f2-41ee-b454-8d164869d732</guid><dc:creator>Nara</dc:creator><description>&lt;p&gt;Hi&amp;nbsp;&lt;br /&gt;How can i&amp;nbsp;setup&amp;nbsp; my InBasket &amp;quot;task&amp;quot; delegate option, when i am Out Of Office.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Regards&lt;/p&gt;
&lt;p&gt;Nara&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Let me Help You</title><link>https://www.aras.com/community/achievements/687f4b6d-e18a-4e55-836c-49926ca2c9d9</link><pubDate>Tue, 09 Jul 2019 16:42:33 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:bb99cc5c-ac2b-4b56-af2f-4df6ef4fbf58</guid><dc:creator /><description>Answer a question that is verified as helpful or correct.</description></item><item><title>Not able to Purge a Part</title><link>https://www.aras.com/community/f/development/6140/not-able-to-purge-a-part</link><pubDate>Sat, 06 Jul 2019 07:09:17 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:c0bc1ee6-cdd9-449d-8b25-eaf7fd32c276</guid><dc:creator>Nara</dc:creator><description>&lt;p&gt;Hi All,&lt;/p&gt;
&lt;p&gt;I am trying to Purge a part, before purge i have deleted all the relationships.&lt;/p&gt;
&lt;p&gt;&amp;lt;Item isNew=&amp;quot;1&amp;quot; isTemp=&amp;quot;1&amp;quot; type=&amp;quot;Part&amp;quot; action=&amp;quot;purge&amp;quot; id=&amp;quot;A61FDAB93E5B4AFCBA9981B35F652A8B&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt;Above AML is used to purge, i am getting below error.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Error:&amp;nbsp;An exception of type &amp;#39;Aras.Server.Core.InnovatorServerException&amp;#39; occurred in InnovatorCore.dll but was not handled in user code&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Appreciate any help.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Regards&lt;/p&gt;
&lt;p&gt;Nara&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>SignOff Tab is not working in Chrome</title><link>https://www.aras.com/community/f/development/6130/signoff-tab-is-not-working-in-chrome</link><pubDate>Thu, 04 Jul 2019 01:18:20 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:0d1445bf-750f-4da6-99cb-161ba8157978</guid><dc:creator>Nara</dc:creator><description>&lt;p&gt;Hi Experts,&lt;/p&gt;
&lt;p&gt;I am using&amp;nbsp;&lt;span&gt;Aras Innovator Version 11.0 SP9&amp;nbsp;&amp;nbsp;Build: 6549&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;I have created a custom Item type and added SignOff Report Relationship.&lt;/p&gt;
&lt;p&gt;SignOff Report relationship tab is working find in IE and FF, but in Chrome it is not working.&lt;/p&gt;
&lt;p&gt;Appreciate any inputs.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Nara&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Regarding Signoffs Tab</title><link>https://www.aras.com/community/f/development/6114/regarding-signoffs-tab</link><pubDate>Fri, 28 Jun 2019 22:37:15 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:ae456865-a770-4b42-ae9c-bee26a7fc147</guid><dc:creator>Nara</dc:creator><description>&lt;p&gt;Hi&amp;nbsp;&lt;/p&gt;
&lt;p&gt;We have a Custom ItemType &amp;quot;MyChange&amp;quot; and it is having a relationship &amp;quot;Signoff&amp;quot;.&lt;/p&gt;
&lt;p&gt;For &amp;quot;MyChange&amp;quot;, we have created a instance which is &amp;quot;Change1&amp;quot; and it got released tr workflow process.&lt;/p&gt;
&lt;p&gt;Under &amp;quot;&lt;span&gt;Signoff&amp;quot; tab,&amp;nbsp;&lt;/span&gt;We are able to view&amp;nbsp;right SignOff Information.&lt;/p&gt;
&lt;p&gt;User has revised &amp;quot;&lt;span&gt;Change1&amp;quot; from Rev A to Rev B.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Under SignOff tab,&amp;nbsp;user is able to see Rev A related SignOff Info.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;span style="text-decoration:underline;"&gt;&lt;strong&gt;Expected&lt;/strong&gt;&lt;/span&gt;: It should show Rev B related SignOff details.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Any&amp;nbsp;help would be appreciated.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Regards&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>A question for Item characteristic list value.</title><link>https://www.aras.com/community/f/development/6115/a-question-for-item-characteristic-list-value</link><pubDate>Sun, 30 Jun 2019 20:30:27 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:f516b4fd-810e-46ea-9cc0-7412b3a96190</guid><dc:creator>Joseph An</dc:creator><description>&lt;p&gt;Hi Expert,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;In &amp;#39;Item Characteristic&amp;#39; which I believe is standard object, there are three fieds as below:&lt;/p&gt;
&lt;p&gt;&amp;#39;Sort Order&amp;#39;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;#39;Value&amp;#39;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#39;Label&amp;#39;&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/3/pastedimage1561932217271v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;I tried to enter text for new Item Chracteristic &amp;#39;Construction&amp;#39; as above:&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&amp;#39;Sort Order&amp;#39;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;#39;Value&amp;#39;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;#39;Label&amp;#39;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;10&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;AIO&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; All In One&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;However, once I save it, when I trid to select this new item characteristic of &amp;#39;Construction&amp;#39; in part screen with All In One&amp;#39; as below,&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;img alt=" " border="0" src="/cfs-file/__key/communityserver-discussions-components-files/3/Capture2.JPG" /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;System save it successfully.&amp;nbsp;But, system doesn&amp;#39;t show &amp;#39;All In One&amp;#39; in &amp;#39;Value&amp;#39; field, once it refresh screen.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;img alt=" " src="/resized-image/__size/0x240/__key/communityserver-discussions-components-files/3/Capture3.JPG" /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Is it impossible to maintain different text in &amp;#39;Value&amp;#39; and &amp;#39;Label&amp;#39; or s&lt;/span&gt;&lt;span&gt;hould I maintain the same text in two fields?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Would you please help on this?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Thank you so much.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&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, 28 Jun 2019 22:37:16 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:5084be2d-5e7b-4d83-8105-f879446d70ff</guid><dc:creator /><description>Ask a question in a forum.</description></item></channel></rss>