<?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>AlBer さんのアクティビティ</title><link>https://www.aras.com/community/members/alber</link><description>AlBer さんの最近のアクティビティ</description><dc:language>ja-JP</dc:language><generator>Telligent Community 12</generator><item><title>Initial DB package</title><link>https://www.aras.com/community/f/getting-started/6546/initial-db-package</link><pubDate>Fri, 08 Nov 2019 14:22:04 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:be6751b3-24e2-4608-aeb1-fc9caacdb594</guid><dc:creator>AlBer</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I was wondering if it is possible to have/download a package regrouping the overall standard/first configuration of Aras Innovator ? In other words, a package regrouping all the initial ItemTypes, Relationships, Methods, Presentation Configurations, ...&lt;/p&gt;
&lt;p&gt;Sincerely&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Running ARAS Innovator on Docker</title><link>https://www.aras.com/community/f/getting-started/6282/running-aras-innovator-on-docker</link><pubDate>Tue, 03 Sep 2019 11:03:27 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:964d6449-9efa-4dbe-a3fb-1ec0f5b9a871</guid><dc:creator>AlBer</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I found these two web pages about running ARAS Innovator on Docker:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.software-vision.com/blog/2018/10/08/dockerinzing-aras-innovator.html"&gt;https://www.software-vision.com/blog/2018/10/08/dockerinzing-aras-innovator.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/dejan-siedle/innovator-docker"&gt;https://github.com/dejan-siedle/innovator-docker&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I was wondering if your corporation has any advices or solutions for this option?&lt;/p&gt;
&lt;p&gt;Best regards&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Token Authentication using the REST API</title><link>https://www.aras.com/community/b/english/posts/token-authentication-using-the-rest-api</link><pubDate>Thu, 02 May 2019 12:30:00 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:3cef7e0d-c20c-4e1d-8938-82e633d39d2e</guid><dc:creator>Christopher Gillis</dc:creator><description>&lt;p&gt;Aras Innovator&amp;nbsp;introduced an Authentication Server feature in 11.0 SP12 and has been fleshing it out with each new service pack. In 11.0 SP15, it is possible to request an OAuth token from this server that can be used with the &lt;a href="/b/english/posts/tech-tip-using-the-aras-restful-api"&gt;RESTful API&lt;/a&gt; as an alternative to basic authentication.&amp;nbsp;Using tokens is preferred for external apps as they don&amp;#39;t require you to keep your users&amp;#39; passwords in memory while your app runs. Because tokens expire after a set time, you can also rest assured that if a malicious party later acquires&amp;nbsp;the token, they won&amp;#39;t have access to your system.&lt;/p&gt;
&lt;p&gt;In this blog post, we&amp;#39;ll be going over examples of both requesting an OAuth token from the Aras Innovator server as well as using that token to authenticate additional requests. You can also check out this&amp;nbsp;&lt;a href="https://github.com/ArasLabs/rest-auth-example"&gt;Authentication Example&lt;/a&gt; on GitHub for a simple app that will&amp;nbsp;request a token and use that token to query the Parts in a database.&lt;/p&gt;
&lt;h2 id="register-your-app"&gt;Register Your App&lt;/h2&gt;
&lt;p&gt;One of the features of the Authentication Server is to limit what apps can request a token.&amp;nbsp;The Authentication Server keeps a list of registered apps that are able to request tokens, so external applications cannot get tokens by default. If you don&amp;#39;t wish to do any additional configuration, you can use the default &amp;quot;IOMApp&amp;quot; client registry.&amp;nbsp;However, we recommend adding a new client registry to register your app with the server by following the steps below.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Open the \OAuthServer\OAuth.config in your preferred text editor&lt;/li&gt;
&lt;li&gt;Scroll down to the bottom until you see &lt;strong&gt;&amp;lt;clientRegistry id=&amp;quot;IOMApp&amp;quot;&amp;gt;&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;/strong&gt;Copy this node and all of its child nodes&lt;/li&gt;
&lt;li&gt;Paste them as a new section just below the original node&lt;/li&gt;
&lt;li&gt;Give a new ID to this registry corresponding to the purpose of your app&lt;/li&gt;
&lt;li&gt;Make sure this new registry has&amp;nbsp;&lt;strong&gt;enabled=&amp;quot;true&amp;quot;&lt;/strong&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;strong&gt;&lt;/strong&gt;Make note of the ID you give this new registry. You will need to use it in the body of your request for a token which is covered later in this blog.&lt;/p&gt;
&lt;h2&gt;Get the OAuthServer URL&lt;/h2&gt;
&lt;p&gt;The first thing we&amp;#39;ll want to do is query for the location of the OAuthServer.&amp;nbsp;Because Aras Innovator allows most of its components to exist on separate servers, the OAuthServer may not be available from the same server as our Instance URL. However, the Innovator Server does have a way to query for this information by appending&amp;nbsp;&lt;strong&gt;/Server/OAuthServerDiscovery.aspx&lt;/strong&gt; to the end of your Instance URL:&amp;nbsp;&lt;strong&gt;&lt;/strong&gt;http://localhost/InnovatorServer/Server/OAuthServerDiscovery.aspx&lt;strong&gt;&amp;nbsp;&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;If you&amp;#39;re using something like &lt;a href="https://www.getpostman.com/"&gt;Postman&lt;/a&gt;&amp;nbsp;to follow along with this blog, you can simply perform a get request on this URL with an empty body. The result of this request should look something like below.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;code&gt;{&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;quot;locations&amp;quot;: [&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; {&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; "uri": "http://localhost/InnovatorServer/oauthserver/"&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; }&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; ]&lt;/code&gt;&lt;br /&gt;&lt;code&gt;}&lt;/code&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;The URL we will use is stored in the&amp;nbsp;&lt;strong&gt;uri&lt;/strong&gt; property of the JSON returned from our request. The JSON path you can use to retrieve this information is&amp;nbsp;&lt;em&gt;locations[0].uri&lt;/em&gt;.&lt;/p&gt;
&lt;h2&gt;Get the Token Endpoint&lt;/h2&gt;
&lt;p&gt;Now that we have the URL of the OAuthServer, we will need to retrieve the exact URL that we can use to query for the token. This next URL is based on the &lt;a href="https://openid.net/specs/openid-connect-discovery-1_0.html"&gt;OpenID discovery specification&lt;/a&gt;. We will take the OAuthServer URL from our previous step and append&amp;nbsp;&lt;em&gt;.well-known/openid-configuration&lt;/em&gt; to the end of it: http://localhost/InnovatorServer/oauthserver/.well-known/openid-configuration. Again, we can query on this URL with a simple GET request without passing anything through the body.&lt;/p&gt;
&lt;p&gt;The response to this request is significantly longer, but it should contain our token endpoint somewhere near the top.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;code&gt;{&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;quot;issuer&amp;quot;: &amp;quot;OAuthServer&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;quot;jwks_uri&amp;quot;: &amp;quot;http://localhost/InnovatorServer/oauthserver/.well-known/openid-configuration/jwks&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;quot;authorization_endpoint&amp;quot;: &amp;quot;http://localhost/&lt;span&gt;InnovatorServer&lt;/span&gt;/oauthserver/connect/authorize&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;strong&gt;&lt;code&gt;&amp;nbsp; &amp;quot;token_endpoint&amp;quot;: &amp;quot;http://localhost/&lt;span&gt;InnovatorServer&lt;/span&gt;/oauthserver/connect/token&amp;quot;&lt;/code&gt;&lt;/strong&gt;&lt;code&gt;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;quot;userinfo_endpoint&amp;quot;: &amp;quot;http://localhost/&lt;span&gt;InnovatorServer&lt;/span&gt;/oauthserver/connect/userinfo&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;quot;end_session_endpoint&amp;quot;: &amp;quot;http://localhost/&lt;span&gt;InnovatorServer&lt;/span&gt;/oauthserver/connect/endsession&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt;...&lt;/code&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;The JSON path to retrieve this data is simply&amp;nbsp;&lt;em&gt;token_endpoint&lt;/em&gt;.&lt;/p&gt;
&lt;h2&gt;Get Token&lt;/h2&gt;
&lt;p&gt;The final request we&amp;#39;ll use to retrieve our token will use the token endpoint URL retrieved in the previous step. Because this token will be linked to a user&amp;#39;s credentials, we will need to pass in additional information before making our request. If you&amp;#39;re following along with Postman, you can use the Multipart Form to specify the following pieces of information in your body.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;grant_type&lt;/strong&gt; : &amp;quot;password&amp;quot;&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Currently, I believe&amp;nbsp;&lt;strong&gt;&lt;/strong&gt;&amp;quot;password&amp;quot; is the only authentication type allows. Aras as a whole is moving towards more types of authentication in 12.0, so this is likely to change in the upcoming releases.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;scope&lt;/strong&gt; : &amp;quot;Innovator&amp;quot;
&lt;ul&gt;
&lt;li&gt;The scope of information this token will be able to access. &amp;quot;Innovator&amp;quot; will be used for almost all purposes.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;client_id&lt;/strong&gt; : &amp;quot;IOMApp&amp;quot;
&lt;ul&gt;
&lt;li&gt;The ID of your client app you configured in the first step of this blog.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;username&lt;/strong&gt; : &amp;quot;YOUR_USER_NAME&amp;quot;
&lt;ul&gt;
&lt;li&gt;Any requests made using the returned token will share the same permissions as this user&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;password&lt;/strong&gt; : &amp;quot;YOUR_MD5_HASHED_PASSWORD&amp;quot;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;database&lt;/strong&gt; : &amp;quot;YOUR_DATABASE_NAME&amp;quot;
&lt;ul&gt;
&lt;li&gt;This should be the name of the database that this token will be able to access. &amp;quot;InnovatorSolutions&amp;quot; is the default name of Aras databases.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;After configuring your body, you can send a POST request to the token endpoint URL with the body containing the properties defined above. The response will contain both the OAuth token as well as how long you will have until that token expires.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;code&gt;{&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;quot;access_token&amp;quot;: &amp;quot;YOUR_TOKEN&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;quot;expires_in&amp;quot;: 3600,&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;quot;token_type&amp;quot;: &amp;quot;Bearer&amp;quot;&lt;/code&gt;&lt;br /&gt;&lt;code&gt;}&lt;/code&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;The JSON path to this token will be&amp;nbsp;&lt;em&gt;access_token&lt;/em&gt;. By default, the IOMApp token expires in 3600 seconds or 1 hour.&lt;/p&gt;
&lt;h2&gt;Make Request with Token&lt;/h2&gt;
&lt;p&gt;If you&amp;#39;ve ever used our previous &lt;a href="/b/english/posts/tech-tip-using-the-aras-restful-api"&gt;RESTful blog&lt;/a&gt;, you&amp;#39;ll know that we authenticated previously by passing in the username and hashed password into the &lt;strong&gt;AUTHUSER&lt;/strong&gt; and &lt;strong&gt;AUTHPASSWORD&lt;/strong&gt; headers respectively. With the token, we will authenticate using the standard HTTP&amp;nbsp;&lt;strong&gt;Authorization&lt;/strong&gt; header. Token authentication using this header follows the format below.&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;Authorization : Bearer {YOUR_TOKEN}&lt;/p&gt;
&lt;p&gt;Note that the word &amp;quot;Bearer&amp;quot; must come before your token in the header. If you&amp;#39;re using Postman, there should be a way to configure authentication differently than other headers which should automatically add in this word for you. Alternatively, depending on the programming language you&amp;#39;re using to perform this request, there may be a special authentication class or library which will automatically add &amp;quot;Bearer&amp;quot; into the header for you as well.&lt;/p&gt;
&lt;p&gt;Regardless, once you have your Authorization header configured,&amp;nbsp;you can follow along with our previous RESTful blog, and you should notice that you can query for all of the same information. You can also confirm that the permission model is still in place by querying for items to which you do not have access.&lt;/p&gt;
&lt;hr /&gt;
&lt;h3&gt;LOOKING FOR MORE ARAS INSPIRATION?&lt;/h3&gt;
&lt;p&gt;Subscribe to our blog and follow&amp;nbsp;&lt;a href="https://twitter.com/araslabs"&gt;@ArasLabs on Twitter&lt;/a&gt;&amp;nbsp;for more helpful content! You can also find our latest open-source projects and sample code on the&amp;nbsp;&lt;a href="https://github.com/ArasLabs"&gt;Aras Labs&amp;nbsp;GitHub&amp;nbsp;page&lt;/a&gt;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Unable to build project in Visual Studio</title><link>https://www.aras.com/community/f/development/6443/unable-to-build-project-in-visual-studio</link><pubDate>Mon, 14 Oct 2019 13:13:42 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:f1e14da4-e5f6-4614-821b-8db25468af8e</guid><dc:creator>AlBer</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;We have created a project with template v12.0 in Visual Studio 2019.&lt;/p&gt;
&lt;p&gt;- We have created a new method from Visual Studio and we got 11 errors :&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/3/pastedimage1571058808376v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;- Then we created a method on Aras, and then did &amp;quot;Aras Innovator &amp;gt; Open method from Aras Innovator&amp;quot; which worked. We now have the method in Visual Studio, we can edit it and save it to Aras.&lt;/p&gt;
&lt;p&gt;- Yet, the method that come from Aras doesn&amp;#39;t build also.&lt;/p&gt;
&lt;p&gt;The errors we get are :&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;1&amp;gt;C:\Users\0berali\source\repos\A12_CPQPOP\Aras12CPQ\ServerMethods\CPQProjectCost\Import\Method\CPQProjetCost\CPQProjetCost.cs(1,7,1,11): error CS0246: The type or namespace name &amp;#39;Aras&amp;#39; could not be found (are you missing a using directive or an assembly reference?)&lt;br /&gt;1&amp;gt;C:\Users\0berali\source\repos\A12_CPQPOP\Aras12CPQ\ServerMethods\CPQProjectCost\Import\Method\CPQProjetCost\CPQProjetCostWrapper.cs(1,7,1,11): error CS0246: The type or namespace name &amp;#39;Aras&amp;#39; could not be found (are you missing a using directive or an assembly reference?)&lt;br /&gt;1&amp;gt;C:\Users\0berali\source\repos\A12_CPQPOP\Aras12CPQ\ServerMethods\CPQProjectCost\Import\Method\CPQProjetCost\CPQProjetCostWrapper.cs(17,39,17,43): error CS0246: The type or namespace name &amp;#39;Item&amp;#39; could not be found (are you missing a using directive or an assembly reference?)&lt;br /&gt;1&amp;gt;C:\Users\0berali\source\repos\A12_CPQPOP\Aras12CPQ\ServerMethods\CPQProjectCost\Import\Method\CPQProjetCost\CPQProjetCostWrapper.cs(24,41,24,45): error CS0246: The type or namespace name &amp;#39;Aras&amp;#39; could not be found (are you missing a using directive or an assembly reference?)&lt;br /&gt;1&amp;gt;C:\Users\0berali\source\repos\A12_CPQPOP\Aras12CPQ\ServerMethods\CPQProjectCost\Import\Method\CPQProjetCost\CPQProjetCost.cs(27,16,27,20): error CS0246: The type or namespace name &amp;#39;Item&amp;#39; could not be found (are you missing a using directive or an assembly reference?)&lt;br /&gt;1&amp;gt;C:\Users\0berali\source\repos\A12_CPQPOP\Aras12CPQ\ServerMethods\CPQProjectCost\Import\Method\CPQProjetCost\CPQProjetCostWrapper.cs(29,31,29,48): error CS0246: The type or namespace name &amp;#39;IServerConnection&amp;#39; could not be found (are you missing a using directive or an assembly reference?)&lt;br /&gt;1&amp;gt;C:\Users\0berali\source\repos\A12_CPQPOP\Aras12CPQ\ServerMethods\CPQProjectCost\Import\Method\CPQProjetCost\CPQProjetCostWrapper.cs(19,27,19,44): error CS0246: The type or namespace name &amp;#39;IServerConnection&amp;#39; could not be found (are you missing a using directive or an assembly reference?)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;Some help would be appreciated, we have been looking for it and couldn&amp;#39;t find it.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;Best Regards,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;Al Ber&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Quality Management System module</title><link>https://www.aras.com/community/f/development/6614/quality-management-system-module</link><pubDate>Mon, 25 Nov 2019 15:07:50 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:27c85e8a-38bb-4cfe-b8e9-b013e5ee1c18</guid><dc:creator>AlBer</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;We installed the Aras Quality Management System module and we have some questions:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Concerning the Process Quality Document, how can we display ONLY the Process FMEA (skip the selection between the three options : Process Control Plan, Process Flow Diagram and Process FMEA)?&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;
&lt;li&gt;How can we modify (add or delete) the columns of the Process FMEA?&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;
&lt;li&gt;Is the module a core module of Aras Innovator or does it come from the Lab?&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Thank you in advance for your answer, best regards,&lt;/p&gt;
&lt;p&gt;AlBer&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>API post request</title><link>https://www.aras.com/community/f/getting-started/6687/api-post-request</link><pubDate>Thu, 19 Dec 2019 10:18:48 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:fd0a51a8-be29-4ea4-934e-b67ef5424e33</guid><dc:creator>AlBer</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I try to create a problem report through APIs.&lt;/p&gt;
&lt;p&gt;However, the fields: &lt;em&gt;reported_by&lt;/em&gt;, &lt;em&gt;owned_by_id&lt;/em&gt; and &lt;em&gt;affected_item&lt;/em&gt; needs an ID and the following error message appears:&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/6/pastedimage1576750652189v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;How can we enter the name of the item (&lt;em&gt;Georges&lt;/em&gt; and &lt;em&gt;SLCMP-0001&lt;/em&gt;) and not the id ?&lt;/p&gt;
&lt;p&gt;Best regards&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>jquery - Get token</title><link>https://www.aras.com/community/f/development/6633/jquery---get-token</link><pubDate>Mon, 02 Dec 2019 09:32:31 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:c14dceee-e318-4ae6-bc0b-0c73796494d6</guid><dc:creator>AlBer</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I try to get a token with jquery but the following error message appears:&lt;/p&gt;
&lt;p&gt;POST arasdev/.../token 500 (Internal Server Error)&lt;/p&gt;
&lt;p&gt;From Postman, it works perfectly. And from jquery, if I have the token, I&amp;#39;m able to connect to the API.&lt;/p&gt;
&lt;p&gt;Sincerely&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Overall bug on Innovator</title><link>https://www.aras.com/community/f/getting-started/6533/overall-bug-on-innovator</link><pubDate>Tue, 05 Nov 2019 13:50:27 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:4e040454-8189-495d-a71b-a5c935d7f012</guid><dc:creator>AlBer</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;Since this weekend, when I try to open any item, the following error message appears :&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/6/pastedimage1572961621955v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/6/pastedimage1572961638672v2.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/6/pastedimage1572961650069v3.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/6/pastedimage1572961667454v4.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/6/pastedimage1572961692270v5.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;And it&amp;#39;s not finish !&lt;/p&gt;
&lt;p&gt;It looks like all the methods have crashed ...&lt;/p&gt;
&lt;p&gt;Can you help me ?&lt;/p&gt;
&lt;p&gt;Thank you,&lt;/p&gt;
&lt;p&gt;Al Ber&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Problems  about Aras Innovator Method Plugin</title><link>https://www.aras.com/community/f/community/6517/problems-about-aras-innovator-method-plugin</link><pubDate>Thu, 31 Oct 2019 02:33:55 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:856774b1-3c08-4272-801f-a2e0aea6b87b</guid><dc:creator>tomato</dc:creator><description>&lt;p&gt;&lt;span style="font-family:inherit;font-size:150%;"&gt;Hello,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;span style="font-family:inherit;font-size:150%;"&gt;I&amp;#39;m trying to use the Aras Innovator Method Plugin to debug a sever method in Visual Studio 2017.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:inherit;font-size:150%;"&gt;Here is the URL of&amp;nbsp;&lt;span&gt;Aras Innovator Method Plugin:&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:inherit;font-size:150%;"&gt;&lt;a href="https://github.com/arasplm/ArasVSMethodPlugin/wiki"&gt;https://github.com/arasplm/ArasVSMethodPlugin/wiki&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:inherit;font-size:150%;"&gt;I build the project successfully, but when i try to debug it the error is &amp;#39;System.InvalidCastException&amp;#39;.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:inherit;font-size:150%;"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:inherit;font-size:150%;"&gt;Where the error&amp;nbsp;appeared is &amp;#39;Aras.Server.Core.CallContext CCO = ((Aras.Server.Core.IOMConnection)serverConnection).CCO;&amp;#39;.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:inherit;font-size:150%;"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:inherit;font-size:150%;"&gt;I don&amp;#39;t know why because it is a template code.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:inherit;font-size:150%;"&gt;Any help would be appreciated. Thank you!&lt;/span&gt;&lt;/p&gt;
&lt;h4&gt;&lt;/h4&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Version child items when parent get versioned</title><link>https://www.aras.com/community/f/getting-started/6497/version-child-items-when-parent-get-versioned</link><pubDate>Fri, 25 Oct 2019 06:25:40 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:7e9d95d2-9a76-402c-86b0-66ed27b1fb5a</guid><dc:creator>AlBer</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I have an item relationship structure as described below :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Project
&lt;ul&gt;
&lt;li&gt;Process
&lt;ul&gt;
&lt;li&gt;Item
&lt;ul&gt;
&lt;li&gt;Cost&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I was wondering if it is possible to version all child items (Process, Item, Cost) when the parent (Project) is versioned ?&lt;/p&gt;
&lt;p&gt;Thank you, best regards !&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Documentation about Presentation Configurations</title><link>https://www.aras.com/community/f/development/6460/documentation-about-presentation-configurations</link><pubDate>Thu, 17 Oct 2019 14:25:18 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:a10c37be-64c1-424d-ab31-7d125141075e</guid><dc:creator>AlBer</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I was wondering if there are any available documentation about :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Presentation Configurations&lt;/li&gt;
&lt;li&gt;Command Bar Section&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;
&lt;li&gt;Command Bar Item&lt;/li&gt;
&lt;li&gt;The structure the methods need to have&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Thank you !&lt;/p&gt;
&lt;p&gt;AlBer&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Relationship addition</title><link>https://www.aras.com/community/f/development/6438/relationship-addition</link><pubDate>Fri, 11 Oct 2019 09:45:21 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:5c7fe55b-c9fc-4bd3-9407-1e568c5a43e3</guid><dc:creator>AlBer</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I would like to know how to sum up the two elements in the relationship tab and display the result in the &amp;quot;Cost&amp;quot; property of the parent item ?&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/3/pastedimage1570786959648v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;Thank you !&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Relationship addition</title><link>https://www.aras.com/community/f/getting-started/6439/relationship-addition</link><pubDate>Fri, 11 Oct 2019 11:32:04 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:b6a35f14-dcc6-47df-a848-0400f75cc837</guid><dc:creator>AlBer</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I would like to know how to sum up the two elements in the relationship tab and display the result in the &amp;quot;Cost&amp;quot; property of the parent item ?&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/6/pastedimage1570786959648v1.png" /&gt;&lt;/p&gt;
&lt;p&gt;Thank you !&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Update part after an ECR / ECN release</title><link>https://www.aras.com/community/f/getting-started/6374/update-part-after-an-ecr-ecn-release</link><pubDate>Thu, 26 Sep 2019 09:51:24 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:3fb2ce9e-8da5-456c-a084-b4c953ccb881</guid><dc:creator>AlBer</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I was wondering if there is a way to automatically update a part after an ECR or an ECN has been released ? How to explain the change we want within an ECR or an ECN ?&lt;/p&gt;
&lt;p&gt;Thank you &lt;span class="emoticon" data-url="https://www.aras.com/community/cfs-file/__key/system/emoji/1f642.svg" title="Slight smile"&gt;&amp;#x1f642;&lt;/span&gt;&lt;/p&gt;&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>Fri, 04 Oct 2019 06:15:46 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:5dd81ca2-fb7a-44ab-83ce-91f48b43964c</guid><dc:creator /><description>Start a discussion in a forum that receives 5 replies.</description></item></channel></rss>