<?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>Hamdi_Kendil さんの グループ アクティビティ</title><link>https://www.aras.com/community/members/hamdi_5f00_kendil</link><description>Hamdi_Kendil さんの グループ ユーザーの最近のアクティビティ</description><dc:language>ja-JP</dc:language><generator>Telligent Community 12</generator><item><title>Browse the versions of an item</title><link>https://www.aras.com/community/f/development/6607/browse-the-versions-of-an-item</link><pubDate>Thu, 21 Nov 2019 11:29:21 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:d0d43b25-0560-4254-9826-bbdf3f23e132</guid><dc:creator>Hamdi_Kendil</dc:creator><description>&lt;p&gt;&lt;span style="font-size:150%;"&gt;Hi everyone ,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:150%;"&gt;I&amp;#39;m currently trying to implement a C# method that should be able to browse&lt;span style="background-color:#ffffff;color:#000080;"&gt; all the versions &lt;/span&gt;of a &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:150%;"&gt;Part Item , &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:150%;"&gt;thus we can read the states of the different versions and promote them .&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:150%;"&gt;but the problem is that I don&amp;#39;t know how to get the versions of an Item .&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:150%;"&gt;Does anyone know how to solve this issue please ?&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:150%;"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:150%;"&gt;Thanks in Advance&amp;nbsp;&lt;br /&gt;Hamdi&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Error  &amp;quot; There is no tag   in response. &amp;quot;</title><link>https://www.aras.com/community/f/development/6319/error-there-is-no-tag-in-response</link><pubDate>Wed, 11 Sep 2019 13:57:10 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:02b25598-6a90-410f-a710-aa107acf4def</guid><dc:creator>Hamdi_Kendil</dc:creator><description>&lt;p&gt;Hi ,&lt;br /&gt;I am trying to edit an ItemType &amp;quot;EDM StructureDocument&amp;quot; which is derived from a polyItem using a server event&amp;nbsp; &amp;quot;onAfterAdd&amp;quot; .&lt;/p&gt;
&lt;p&gt;with an implemented C# method :&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;/**&lt;br /&gt; * History&lt;br /&gt; * Version Date Name Comment &lt;br /&gt; * 1.1 09-September-2019 Hamdi Kendil Generate the ID for the current EDM Structure Document using the Server Event onAfterAdd&lt;br /&gt; * Story: EDM-5: Create a new Document &lt;br /&gt; * Purpose: Generate the EDM Structure Document ID&lt;br /&gt; * Usage: EDM Structure Document &lt;br /&gt; * Event: onAfterAdd&lt;br /&gt; *&lt;br /&gt; */&lt;/p&gt;
&lt;p&gt;System.Diagnostics.Debugger.Launch();&lt;br /&gt;System.Diagnostics.Debugger.Break();&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;//Obtain the Innovator instance from the Context Item&lt;br /&gt;Innovator inn = this.getInnovator();&lt;/p&gt;
&lt;p&gt;//long MaxItemNumber = 9999999999 ;&lt;/p&gt;
&lt;p&gt;//Get the ItemList of EDM StructureDocument ItemType&lt;br /&gt;Item results = inn.newItem(&amp;quot;EDM StructureDocument&amp;quot;, &amp;quot;get&amp;quot;);&lt;br /&gt;results = results.apply();&lt;/p&gt;
&lt;p&gt;//Calculate the number of the EDM Part instances&lt;br /&gt;long count = results.getItemCount();&lt;/p&gt;
&lt;p&gt;if(count &amp;lt;= MaxItemNumber){&lt;br /&gt; //Get the hexa id of the current EDM Part item&lt;br /&gt; string id = &amp;quot;&amp;#39;&amp;quot; + this.getID() + &amp;quot;&amp;#39;&amp;quot;;&lt;br /&gt; &lt;br /&gt; //Compute a new id of the current EDM Part item&lt;br /&gt; string edmId = &amp;quot;&amp;quot;;&lt;br /&gt; string itemNumber = count.ToString();&lt;br /&gt; int len = itemNumber.Length;&lt;br /&gt; int maxIndex = 10 - len;&lt;br /&gt; for (var index = 0; index &amp;lt; maxIndex; index++) {&lt;br /&gt; edmId += &amp;quot;0&amp;quot;;&lt;br /&gt; }&lt;br /&gt; edmId += itemNumber;&lt;br /&gt; &lt;br /&gt; //Set the current item id with the determined value&lt;br /&gt; Item myItem = inn.newItem(&amp;quot;EDM StructureDocument&amp;quot;, &amp;quot;edit&amp;quot;);&lt;br /&gt; string request = &amp;quot;id=&amp;quot; + id;&lt;br /&gt; myItem.setAttribute(&amp;quot;where&amp;quot;, request);&lt;br /&gt; myItem.setProperty(&amp;quot;edm_doku_id&amp;quot;, edmId);&lt;br /&gt; &lt;br /&gt; return myItem.apply();&lt;br /&gt;} else {&lt;br /&gt; return inn.newError(&amp;quot;Error Creating a new EDM Document , the Number of Documents is Maximal&amp;quot;);&lt;br /&gt;}&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;When I try to save the new created Item, it gives me following error :&lt;/p&gt;
&lt;p&gt;&lt;b&gt;There is no tag &amp;lt;Item&amp;gt; in response.&amp;nbsp;&lt;/b&gt;&lt;/p&gt;
&lt;div class="aml-description__clicable-row"&gt;-&lt;span class="aml-description__special-character"&gt;&amp;lt;&lt;/span&gt;&lt;span class="aml-description__tag-name"&gt;SOAP-ENV:Envelope&lt;/span&gt;&lt;span class="aml-description__special-character"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;div class="aml-description__tag-block"&gt;
&lt;div class="aml-description__clicable-row"&gt;-&lt;span class="aml-description__special-character"&gt;&amp;lt;&lt;/span&gt;&lt;span class="aml-description__tag-name"&gt;SOAP-ENV:Body&lt;/span&gt;&lt;span class="aml-description__special-character"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;div class="aml-description__tag-block"&gt;
&lt;div class="aml-description__clicable-row"&gt;-&lt;span class="aml-description__special-character"&gt;&amp;lt;&lt;/span&gt;&lt;span class="aml-description__tag-name"&gt;SOAP-ENV:Fault&lt;/span&gt;&lt;span class="aml-description__special-character"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;div class="aml-description__tag-block"&gt;&lt;span class="aml-description__plus-or-minus"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="aml-description__special-character"&gt;&amp;lt;&lt;/span&gt;&lt;span class="aml-description__tag-name"&gt;faultcode&lt;/span&gt;&lt;span class="aml-description__special-character"&gt;&amp;gt;&lt;/span&gt;&lt;b&gt;SOAP-ENV:Server.TagItemIsNotFoundInResponseException&lt;/b&gt;&lt;span class="aml-description__special-character"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="aml-description__tag-name"&gt;faultcode&lt;/span&gt;&lt;span class="aml-description__special-character"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="aml-description__tag-block"&gt;&lt;span class="aml-description__plus-or-minus"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="aml-description__special-character"&gt;&amp;lt;&lt;/span&gt;&lt;span class="aml-description__tag-name"&gt;faultstring&lt;/span&gt;&lt;span class="aml-description__special-character"&gt;&amp;gt;&lt;/span&gt;&lt;b&gt;There is no tag &amp;lt;Item&amp;gt; in response.&lt;/b&gt;&lt;span class="aml-description__special-character"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="aml-description__tag-name"&gt;faultstring&lt;/span&gt;&lt;span class="aml-description__special-character"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="aml-description__tag-block"&gt;
&lt;div class="aml-description__clicable-row"&gt;-&lt;span class="aml-description__special-character"&gt;&amp;lt;&lt;/span&gt;&lt;span class="aml-description__tag-name"&gt;detail&lt;/span&gt;&lt;span class="aml-description__special-character"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;div class="aml-description__tag-block"&gt;&lt;span class="aml-description__plus-or-minus"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="aml-description__special-character"&gt;&amp;lt;&lt;/span&gt;&lt;span class="aml-description__tag-name"&gt;af:legacy_detail&lt;/span&gt;&lt;span class="aml-description__special-character"&gt;&amp;gt;&lt;/span&gt;&lt;b&gt;There is no tag &amp;lt;Item&amp;gt; in response.&lt;/b&gt;&lt;span class="aml-description__special-character"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="aml-description__tag-name"&gt;af:legacy_detail&lt;/span&gt;&lt;span class="aml-description__special-character"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="aml-description__tag-block"&gt;&lt;span class="aml-description__plus-or-minus"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="aml-description__special-character"&gt;&amp;lt;&lt;/span&gt;&lt;span class="aml-description__tag-name"&gt;af:exception&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="aml-description__tag-name"&gt;message&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="aml-description__special-character"&gt;=&amp;quot;&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;b&gt;There is no tag &amp;lt;Item&amp;gt; in response.&lt;/b&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="aml-description__special-character"&gt;&amp;quot;&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="aml-description__tag-name"&gt;type&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="aml-description__special-character"&gt;=&amp;quot;&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;b&gt;Aras.Server.Core.TagItemIsNotFoundInResponseException&lt;/b&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="aml-description__special-character"&gt;&amp;quot;&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="aml-description__special-character"&gt;/&amp;gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span class="aml-description__plus-or-minus"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="aml-description__special-character"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="aml-description__tag-name"&gt;detail&lt;/span&gt;&lt;span class="aml-description__special-character"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;&lt;span class="aml-description__plus-or-minus"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="aml-description__special-character"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="aml-description__tag-name"&gt;SOAP-ENV:Fault&lt;/span&gt;&lt;span class="aml-description__special-character"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;&lt;span class="aml-description__plus-or-minus"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="aml-description__special-character"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="aml-description__tag-name"&gt;SOAP-ENV:Body&lt;/span&gt;&lt;span class="aml-description__special-character"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;&lt;span class="aml-description__plus-or-minus"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="aml-description__special-character"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="aml-description__tag-name"&gt;SOAP-ENV:Envelope&lt;/span&gt;&lt;span class="aml-description__special-character"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Can anyone explain me the cause of this error , or provide me a document that can help me solving the issue such as the Aras exceptions details .&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Please .&lt;/p&gt;
&lt;p&gt;Thanks in advance&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Installation error after Package Import</title><link>https://www.aras.com/community/f/development/6329/installation-error-after-package-import</link><pubDate>Fri, 13 Sep 2019 15:42:12 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:218c2c9d-206c-46a8-8a43-8f91263d7fa1</guid><dc:creator>Hamdi_Kendil</dc:creator><description>&lt;p&gt;Hi folks ,&lt;/p&gt;
&lt;p&gt;I am using Aras innovator 11SP15&amp;nbsp; in a cloned repository on my computer&amp;nbsp; ,&lt;/p&gt;
&lt;p&gt;I &amp;#39;ve tried to export existing components from an old database to this repository using the Export.exe application and I staged these&lt;/p&gt;
&lt;p&gt;components into the existing repository using the SourceTree , then I runned the script&amp;nbsp; &amp;quot; .\SetupInnovatorHere.bat &amp;quot; to reinstall the&amp;nbsp; software&lt;/p&gt;
&lt;p&gt;with the exported elements .&lt;/p&gt;
&lt;p&gt;but it always displays the following error&lt;/p&gt;
&lt;p&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;&amp;gt;&amp;lt;SOAP-ENV:Body&amp;gt;&amp;lt;SOAP-ENV:Fault&lt;/a&gt; xmlns:af=&amp;quot;&lt;a href="http://www.aras.com/InnovatorFault"&gt;&amp;#39;objet&amp;nbsp;&amp;#39;secured.Project_Task&amp;#39;&amp;quot;&amp;gt;www.aras.com/.../faultcode&amp;gt;&amp;lt;faultstring&amp;gt;&amp;lt;![CDATA[L&amp;#39;objet&amp;#160;&amp;#39;secured.Project_Task&amp;#39;&lt;/a&gt; est introuvable ou vous ne disposez pas de l&amp;#39;autorisation n&amp;eacute;cessaire. in SQL:&lt;/p&gt;
&lt;p&gt;EXEC sp_refreshsqlmodule &amp;#39;secured.Workflow_Task&amp;#39;&lt;br /&gt; EXEC sp_refreshsqlmodule &amp;#39;secured.Project_Task&amp;#39;&lt;br /&gt; EXEC sp_refreshsqlmodule &amp;#39;secured.Inbasket_Task&amp;#39;&lt;br /&gt; -- Return empty result to the Innovator server because result is required by the server, otherwise an error will be thrown.&lt;br /&gt; SELECT TOP 0 NULL&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/3/error.JPG" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;it seems that there is a missing module or privilege ( I runned the power Shell as administrator ).&lt;/p&gt;
&lt;p&gt;does anyone have an idea about this error ???&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;thank you in advance .&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>Wed, 11 Sep 2019 13:57:11 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:5b9c44a7-0b5c-4477-9570-817c751b055e</guid><dc:creator /><description>Ask a question in a forum.</description></item></channel></rss>