<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Deft Flux &#187; Uncategorized</title>
	<atom:link href="http://deftflux.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://deftflux.com</link>
	<description>recycling truckloads of electrons daily</description>
	<lastBuildDate>Mon, 24 May 2010 15:40:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>EPICOR shines</title>
		<link>http://deftflux.com/2010/03/24/epicor-shines/</link>
		<comments>http://deftflux.com/2010/03/24/epicor-shines/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 15:16:12 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://deftflux.com/?p=50</guid>
		<description><![CDATA[During a recent ERP selection, we have had the pleasure of looking at several different systems for a local client. But today, I want to share a few of our high-level observations of Epicor.  Epicor is consistently coming in at almost double the price point of the other ERP systems that are normally considered for [...]]]></description>
			<content:encoded><![CDATA[<p>During a recent ERP selection, we have had the pleasure of looking at several different systems for a local client.  But today, I want to share a few of our high-level observations of <a href="http://epicor.com/" target="_blank">Epicor</a>.  Epicor is consistently coming in at almost double the price point of the other ERP systems that are normally considered for a business of this size.  The &#8220;problem&#8221; is that Epicor is consistenly twice as good.  First, each of the other ERP systems lacks one or two key modules &#8212; e.g. payroll, maintenance, or purchasing.  When you subtract the price of those modules from Epicor or add the price of a third-party add-on to the other ERP, the price is closer to competitive.  Then, you consider how much work the folks at Epicor have put into making the software usable (the other vendors have not kept pace) and you have to add a &#8220;time saved&#8221; factor to the price of the software.  We have seen that the Epicor designers have not rested.  They are constantly releasing improvements and we can say that &#8212; mostly in usability, but sometimes even in function &#8212; their software compares well even with players like JDEdwards and SAP.  For lack of time, we shan&#8217;t go into more details, but it wouldn&#8217;t surprise me if Epicor stay in this game despite their high price.  If they can bring it down just a touch, they may win the game.  The point &#8212; for your future selection efforts, it may pay to consider Epicor.</p>
]]></content:encoded>
			<wfw:commentRss>http://deftflux.com/2010/03/24/epicor-shines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Date to JDE Date</title>
		<link>http://deftflux.com/2008/11/18/date-to-jde-date/</link>
		<comments>http://deftflux.com/2008/11/18/date-to-jde-date/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 16:38:09 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://deftflux.com/?p=14</guid>
		<description><![CDATA[I know since we posted the JDE date to real date function, everyone has been wondering where the real date to JDE date function is.  Well, &#8220;ask and you shall receive.&#8221; drop function myuser.DateToJ! CREATE function myuser.DateToJ (RealDate date) returns decimal(8,0) language sql deterministic no external action begin atomic if RealDate is null then return [...]]]></description>
			<content:encoded><![CDATA[<p>I know since we posted the JDE date to real date function, everyone has been wondering where the real date to JDE date function is.  Well, &#8220;ask and you shall receive.&#8221;</p>
<p><span id="more-14"></span></p>
<pre>
drop function myuser.DateToJ!

CREATE function myuser.DateToJ (RealDate date)
    returns decimal(8,0)
    language sql
    deterministic
    no external action
begin atomic
   if RealDate is null then
      return 0;
   else
      return ((Year(RealDate) - 1900) * 1000) + DayOfYear(RealDate);
   end if;
end!

select myuser.DateToJ(date('2008-11-18'))
from myuser.dual!
</pre>
]]></content:encoded>
			<wfw:commentRss>http://deftflux.com/2008/11/18/date-to-jde-date/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
