<?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>rneuber1 さんの グループ アクティビティ</title><link>https://www.aras.com/community/members/rneuber1</link><description>rneuber1 さんの グループ ユーザーの最近のアクティビティ</description><dc:language>ja-JP</dc:language><generator>Telligent Community 12</generator><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>What If...</title><link>https://www.aras.com/community/achievements/431b6499-29c0-4b75-9a11-0f8ab01b8e9b</link><pubDate>Wed, 09 Dec 2020 13:57:45 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:bfeae4a9-a9fd-4ae6-b2d5-da8eecb5a03e</guid><dc:creator /><description>Share an idea with the community</description></item><item><title>IOM SDK</title><link>https://www.aras.com/community/f/integrations/3434/iom-sdk</link><pubDate>Mon, 16 Oct 2017 13:38:18 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:1e25b073-db2a-4262-8739-b5b3e5833f2c</guid><dc:creator>Former Member</dc:creator><description>I was curious where I could download the IOM SDK as I want to use the COM dll for an integration into excel.

&amp;nbsp;

Thanks&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Relative date search</title><link>https://www.aras.com/community/f/development/3110/relative-date-search</link><pubDate>Mon, 12 Dec 2016 11:34:24 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:2a33bd52-29d8-41cd-9c6a-e321015d1a4c</guid><dc:creator>rneuber1</dc:creator><description>Hi all,
we had the requirement to be able to search for relative Dates, for example:
&amp;quot;Modified within the last week&amp;quot; or &amp;quot;Due within the next 30 days&amp;quot;.

Aras (9.4 in our case) does not support that, so we&amp;#39;ve hacked it ourselves, maybe it can be useful for others, too.

For our users it is sufficient to use it within AML queries, so there is no fancy UI needed.

With the patch described below it is possible to use &amp;#39;@today(offset)&amp;#39; to write queries like:

&lt;code&gt;&amp;lt;modified_on condition=&amp;quot;ge&amp;quot;&amp;gt;@today(-1)&amp;lt;/modified_on&amp;gt;&lt;/code&gt; (Modified since yesterday)

or

&lt;pre&gt;&lt;code&gt;&amp;lt;and&amp;gt;
   &amp;lt;due_date condition=&amp;quot;ge&amp;quot;&amp;gt;@today()&amp;lt;/due_date&amp;gt;
   &amp;lt;due_date condition=&amp;quot;le&amp;quot;&amp;gt;@today(7)&amp;lt;/due_date&amp;gt;
&amp;lt;/and&amp;gt;&lt;/code&gt;&lt;/pre&gt;


 (due next week)

To achieve this, simply edit &lt;em&gt;Innovator\Client\javascript\search_container.js&lt;/em&gt; and add the following snippet after line 642:

&lt;pre&gt;&lt;code&gt;// Search for any @{n} parameter in Aml.
var re = new RegExp();

// Check for relative dates: @today{-20} will be replaced with the date of 20 days before today
if (/@today\((-?\d+)\)/g.test(searchAml))
	{
		var reDate = new RegExp(&amp;quot;@today\\((-?\\d+)\\)&amp;quot;,&amp;quot;g&amp;quot;);

		var m;
		while (m = reDate.exec(searchAml))
		{
			var diff =  parseInt(m[1]) ;
			var foundString = m[0];
			var today = new Date();
			var relDate = new Date();
			var toff = relDate.getTimezoneOffset();
			relDate.setDate(today.getDate() +  diff);
			relDate.setHours(0,-1 * toff,0,0);
			var nd = relDate.toISOString();
			nd = nd.substr(0,nd.length - 5); // Remove .000Z
			searchAml = searchAml.replace(foundString, nd);
		}&lt;/code&gt;&lt;/pre&gt;




Any comments are welcome.

\Ralf&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Speeding up a simple Innovator implementation</title><link>https://www.aras.com/community/f/getting-started/3095/speeding-up-a-simple-innovator-implementation</link><pubDate>Tue, 29 Nov 2016 06:09:16 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:3bf33b8b-5c5d-4626-ba19-57159d01f4a3</guid><dc:creator>Former Member</dc:creator><description>Hello all

We&amp;#39;re using Aras Innovator in our startup company to manage our BOM. I find it to be a bit slow in loading/opening windows/saving changes, etc.

Is there anything I can do to speed things up? What dictates the speed of response?

Note I am not an expert in IT so please assume very little knowledge :)

Our implementation:
Aras is installed on a simple Windows server used&lt;strong&gt; only&lt;/strong&gt; for ARAS. It&amp;#39;s not a fast machine, but not ridiculously slow either - I can get specs if relevant.
It&amp;#39;s accessed via Firefox by my Win7 PC - I am currently the only user. PC is high spec machine for CAD.
They&amp;#39;re both on the same wired network.

Many thanks

Bob&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>