<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>ED HAYES &#187; ERP</title>
	<atom:link href="http://blog.edhayes.us/category/erp/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.edhayes.us</link>
	<description>Information Technology, Business Consulting, and Solutions to Life</description>
	<lastBuildDate>Thu, 05 Jan 2012 07:58:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='blog.edhayes.us' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>ED HAYES &#187; ERP</title>
		<link>http://blog.edhayes.us</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blog.edhayes.us/osd.xml" title="ED HAYES" />
	<atom:link rel='hub' href='http://blog.edhayes.us/?pushpress=hub'/>
		<item>
		<title>Component Backflush with Oracle MTL Transaction Interface Table</title>
		<link>http://blog.edhayes.us/2011/09/22/component-backflush-with-oracle-mtl-transaction-interface-table/</link>
		<comments>http://blog.edhayes.us/2011/09/22/component-backflush-with-oracle-mtl-transaction-interface-table/#comments</comments>
		<pubDate>Fri, 23 Sep 2011 02:41:17 +0000</pubDate>
		<dc:creator>Ed Hayes</dc:creator>
				<category><![CDATA[ERP]]></category>
		<category><![CDATA[Work Life]]></category>

		<guid isPermaLink="false">http://blog.edhayes.us/?p=861</guid>
		<description><![CDATA[Recently, at work, we noticed the Work Order-less completions inserted into our MTL_TRANSACTIONS_INTERFACE table were not spawning component backflush transactions. It was quite the mystery to us, as they had been working in Oracle 11i (11.5.10).  At some point during our migration to R12 (12.1.3) the backflush transactions had stopped.  We searched Oracle&#8217;s documentation, support [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.edhayes.us&amp;blog=7273967&amp;post=861&amp;subd=edhayes3&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recently, at work, we noticed the Work Order-less completions inserted into our MTL_TRANSACTIONS_INTERFACE table were not spawning component backflush transactions. It was quite the mystery to us, as they had been working in Oracle 11i (11.5.10).  At some point during our migration to R12 (12.1.3) the backflush transactions had stopped.  We searched Oracle&#8217;s documentation, support knowledge base, and all over the internet.  We couldn&#8217;t find a solution.</p>
<p>One of my colleagues got in touch with someone she used to work with.  They were able to provide a private API: APPS.wip_flowUtil_priv.  My colleague tried the API call explodeRequirementsToMTI and was able to get the components to backflush.  We thought all was well.</p>
<p>However, upon further testing, I noticed something strange.  The original Assembly was getting stuck in the interface.  And when resubmitted, I saw both the assembly and another round of components getting transacted.  What was going on?</p>
<p>Further testing provided me with the answer: the originally inserted assembly record was getting slightly altered by the material transaction worker before getting marked in error.  Altered to a point which would spawn component backflush transactions if marked for processing and then processed.  I tried inserting a fresh assembly record into the MTL_TRANSACTIONS_INTERFACE table with the updated fields and was able to get the components to backflush, automatically, without any errors.</p>
<p>We now have a functioning R12 Work Order-less completion interface which inserts assembly completion records into the MTL_TRANSACTIONS_INTERFACE table.  Records which are correctly formed and spawn component issue (backflush) transactions when processed by the material transaction manager (Process transaction interface).</p>
<p>These are the two fields that were changed by the transaction manager:</p>
<blockquote><p>OPERATION_SEQ_NUM from -1 to NULL<br />
TRANSACTION_BATCH_SEQ from NULL to 1</p></blockquote>
<p>Below is the insert statement we are using, with Oracle 12.1.3 changes noted.</p>
<p><span id="more-861"></span></p>
<blockquote>
<p style="font-size:8pt;font-family:'Times New Roman',serif;"><span style="color:blue;">INSERT INTO</span> <span style="color:black;">MTL_TRANSACTIONS_INTERFACE</span><span style="color:blue;">(</span><span style="color:black;"><br />
</span><span style="color:black;">TRANSACTION_INTERFACE_ID</span><span style="color:blue;">,</span><br />
<span style="color:black;">TRANSACTION_HEADER_ID</span><span style="color:blue;">,</span><br />
<span style="color:black;">SOURCE_CODE</span><span style="color:blue;">,</span><br />
<span style="color:black;">SOURCE_LINE_ID</span><span style="color:blue;">,</span><br />
<span style="color:black;">SOURCE_HEADER_ID</span><span style="color:blue;">,</span><br />
<span style="color:black;">PROCESS_FLAG</span><span style="color:blue;">,</span><br />
<span style="color:black;">VALIDATION_REQUIRED</span><span style="color:blue;">,</span><br />
<span style="color:black;">TRANSACTION_MODE</span><span style="color:blue;">,</span><br />
<span style="color:black;">LOCK_FLAG</span><span style="color:blue;">,</span><br />
<span style="color:black;">LAST_UPDATE_DATE</span><span style="color:blue;">,</span><br />
<span style="color:black;">LAST_UPDATED_BY</span><span style="color:blue;">,</span><br />
<span style="color:black;">CREATION_DATE</span><span style="color:blue;">,</span><br />
<span style="color:black;">CREATED_BY</span><span style="color:blue;">,</span><br />
<span style="color:black;">LAST_UPDATE_LOGIN</span><span style="color:blue;">,</span><br />
<span style="color:black;">REQUEST_ID</span><span style="color:blue;">,</span><br />
<span style="color:black;">PROGRAM_APPLICATION_ID</span><span style="color:blue;">,</span><br />
<span style="color:black;">PROGRAM_ID</span><span style="color:blue;">,</span><br />
<span style="color:black;">PROGRAM_UPDATE_DATE</span><span style="color:blue;">,</span><br />
<span style="color:black;">INVENTORY_ITEM_ID</span><span style="color:blue;">,</span><br />
<span style="color:black;">ITEM_SEGMENT1</span><span style="color:blue;">,</span><br />
<span style="color:black;">ORGANIZATION_ID</span><span style="color:blue;">,</span><br />
<span style="color:black;">TRANSACTION_QUANTITY</span><span style="color:blue;">,</span><br />
<span style="color:black;">PRIMARY_QUANTITY</span><span style="color:blue;">,</span><br />
<span style="color:black;">TRANSACTION_UOM</span><span style="color:blue;">,</span><br />
<span style="color:black;">TRANSACTION_DATE</span><span style="color:blue;">,</span><br />
<span style="color:black;">SUBINVENTORY_CODE</span><span style="color:blue;">,</span><br />
<span style="color:black;">LOCATOR_ID</span><span style="color:blue;">,</span><br />
<span style="color:black;">TRANSACTION_SOURCE_ID</span><span style="color:blue;">,</span><br />
<span style="color:black;">TRANSACTION_SOURCE_TYPE_ID</span><span style="color:blue;">,</span><br />
<span style="color:black;">TRANSACTION_ACTION_ID</span><span style="color:blue;">,</span><br />
<span style="color:black;">TRANSACTION_TYPE_ID</span><span style="color:blue;">,</span><br />
<span style="color:black;">TRANSACTION_REFERENCE</span><span style="color:blue;">,</span><br />
<span style="color:black;">TRANSFER_SUBINVENTORY</span><span style="color:blue;">,</span><br />
<span style="color:black;">TRANSFER_ORGANIZATION</span><span style="color:blue;">,</span><br />
<span style="color:black;">ERROR_EXPLANATION</span><span style="color:blue;">,</span><br />
<span style="color:black;">ERROR_CODE</span><span style="color:blue;">,</span><br />
<span style="color:black;">ATTRIBUTE10</span><span style="color:blue;">,</span><br />
<span style="color:black;">ATTRIBUTE_CATEGORY</span><span style="color:blue;">,</span><br />
<span style="color:black;">WIP_ENTITY_TYPE</span><span style="color:blue;">,</span><br />
<span style="color:black;">OPERATION_SEQ_NUM</span><span style="color:blue;">, </span><span style="color:green;">&#8211;****CHANGED****</span><br />
<span style="color:black;">TRANSACTION_BATCH_SEQ</span><span style="color:blue;">, </span><span style="color:green;">&#8211;****CHANGED****</span><br />
<span style="color:black;">BOM_REVISION_DATE</span><span style="color:blue;">,</span><br />
<span style="color:black;">ROUTING_REVISION_DATE</span><span style="color:blue;">,</span><br />
<span style="color:black;">SCHEDULE_NUMBER</span><span style="color:blue;">,</span><br />
<span style="color:black;">SCHEDULED_FLAG</span><span style="color:blue;">,</span><br />
<span style="color:black;">FLOW_SCHEDULE</span><span style="color:blue;">)</span><br />
<span style="color:blue;">VALUES</span><span style="color:blue;">(</span><br />
<span style="color:black;">MTL_MATERIAL_TRANSACTIONS_S</span><span style="color:blue;">.NEXTVAL,</span> <span style="color:green;">&#8211;TRANSACTION_INTERFACE_ID</span><br />
<span style="color:black;">MTL_MATERIAL_TRANSACTIONS_S</span><span style="color:blue;">.NEXTVAL,</span> <span style="color:green;">&#8211;TRANSACTION_HEADER_ID</span><br />
<span style="color:red;">&#8216;BACKFLUSH TEST&#8217;</span><span style="color:blue;">,</span> <span style="color:green;">&#8211;SOURCE_CODE &#8212; Reference to legacy/interface data</span><br />
<span style="color:blue;">-</span><span style="color:maroon;">99999</span><span style="color:blue;">,</span> <span style="color:green;">&#8211; SOURCE_LINE_ID &#8212; Reference to legacy/interface data</span><br />
<span style="color:blue;">-</span><span style="color:maroon;">99999</span><span style="color:blue;">,</span> <span style="color:green;">&#8211; SOURCE_HEADER_ID &#8212; Reference to legacy/interface data</span><br />
<span style="color:maroon;">1</span><span style="color:blue;">,</span> <span style="color:green;">&#8211;PROCESS_FLAG</span><br />
<span style="color:maroon;">1</span><span style="color:blue;">,</span> <span style="color:green;">&#8211;VALIDATION_REQUIRED &#8212; 1=FULL</span><br />
<span style="color:maroon;">3</span><span style="color:blue;">,</span> <span style="color:green;">&#8211;TRANSACTION_MODE &#8212; 2=Concurrent, 3=Background</span><br />
<span style="color:maroon;">2</span><span style="color:blue;">,</span> <span style="color:green;">&#8211;LOCK_FLAG</span><br />
<span style="color:blue;">sysdate</span><span style="color:blue;">,</span> <span style="color:green;">&#8211;LAST_UPDATE_DATE</span><br />
<span style="color:maroon;">1001</span><span style="color:blue;">,</span> <span style="color:green;">&#8211;LAST_UPDATED_BY</span><br />
<span style="color:blue;">sysdate</span><span style="color:blue;">,</span> <span style="color:green;">&#8211;CREATION_DATE</span><br />
<span style="color:maroon;">1001</span><span style="color:blue;">,</span> <span style="color:green;">&#8211;CREATED_BY</span><br />
<span style="color:maroon;">1000001</span><span style="color:blue;">,</span> <span style="color:green;">&#8211;LAST_UPDATE_LOGIN</span><br />
<span style="color:blue;">NULL,</span><span style="color:green;">&#8211; REQUEST_ID</span><br />
<span style="color:blue;">NULL,</span><span style="color:green;">&#8211; PROGRAM_APPLICATION_ID</span><br />
<span style="color:blue;">NULL,</span><span style="color:green;">&#8211; PROGRAM_ID</span><br />
<span style="color:blue;">SYSDATE,</span><span style="color:green;">&#8211; PROGRAM_UPDATE_DATE</span><br />
<span style="color:maroon;">100001</span><span style="color:blue;">,</span> <span style="color:green;">&#8211;INVENTORY_ITEM_ID</span><br />
<span style="color:red;">&#8216;ITEM_NUMBER&#8217;</span><span style="color:blue;">,</span> <span style="color:green;">&#8211;ITEM_SEGMENT1</span><br />
<span style="color:maroon;">100</span><span style="color:blue;">,</span> <span style="color:green;">&#8211;ORGANIZATION_ID</span><br />
<span style="color:maroon;">10</span><span style="color:blue;">,</span> <span style="color:green;">&#8211;TRANSACTION_QUANTITY</span><br />
<span style="color:maroon;">10</span><span style="color:blue;">,</span> <span style="color:green;">&#8211;PRIMARY_QUANTITY</span><br />
<span style="color:red;">&#8216;EA&#8217;</span><span style="color:blue;">,</span> <span style="color:green;">&#8211;TRANSACTION_UOM</span><br />
<span style="color:blue;">SYSDATE,</span><span style="color:green;">&#8211; TRANSACTION_DATE</span><br />
<span style="color:red;">&#8216;FG&#8217;</span><span style="color:blue;">,</span> <span style="color:green;">&#8211;SUBINVENTORY_CODE</span><br />
<span style="color:maroon;">10001</span><span style="color:blue;">, </span><span style="color:green;">&#8211; LOCATOR_ID</span><br />
<span style="color:red;">&#8221;</span><span style="color:blue;">,</span> <span style="color:green;">&#8211;TRANSACTION_SOURCE_ID &#8211; NULL as Work Order-less</span><br />
<span style="color:maroon;">5</span><span style="color:blue;">,</span> <span style="color:green;">&#8211;TRANSACTION_SOURCE_TYPE_ID</span><br />
<span style="color:maroon;">31</span><span style="color:blue;">,</span> <span style="color:green;">&#8211;TRANSACTION_ACTION_ID</span><br />
<span style="color:maroon;">44</span><span style="color:blue;">,</span> <span style="color:green;">&#8211;TRANSACTION_TYPE_ID</span><br />
<span style="color:red;">&#8216;TEST TRANSACTION ON &#8216;</span><span style="color:black;">|| </span><span style="color:blue;">SYSDATE,</span> <span style="color:green;">&#8211; TRANSACTION_REFERENCE</span><br />
<span style="color:blue;">NULL,</span><span style="color:green;">&#8211; TRANSFER_SUBINVENTORY</span><br />
<span style="color:blue;">NULL,</span><span style="color:green;">&#8211; TRANSFER_ORGANIZATION</span><br />
<span style="color:blue;">NULL,</span><span style="color:green;">&#8211; ERROR_EXPLANATION</span><br />
<span style="color:blue;">NULL,</span><span style="color:green;">&#8211; ERROR_CODE</span><br />
<span style="color:red;">&#8216;TEST ATTRIBUTE&#8217;</span><span style="color:blue;">,</span> <span style="color:green;">&#8211;ATTRIBUTE10</span><br />
<span style="color:red;">&#8216;ORG&#8217;</span><span style="color:blue;">,</span><span style="color:green;">&#8211; ATTRIBUTE_CATEGORY</span><br />
<span style="color:maroon;">4</span><span style="color:blue;">,</span> <span style="color:green;">&#8211;WIP_ENTITY_TYPE</span><br />
<span style="color:blue;">NULL,</span><span style="color:green;">&#8211; OPERATION_SEQ_NUM ***<span class="GramE">*(</span>Was:-1)****</span><br />
<span style="color:maroon;">1</span><span style="color:blue;">,</span><span style="color:green;">&#8211; TRANSACTION_BATCH_SEQ****(Was: NULL)****</span><br />
<span style="color:blue;">SYSDATE,</span><span style="color:green;">&#8211; BOM_REVISION_DATE</span><br />
<span style="color:blue;">SYSDATE,</span><span style="color:green;">&#8211; ROUTING_REVISION_DATE</span><br />
<span style="color:black;">WIP_JOB_NUMBER_S</span><span style="color:blue;">.nextval</span><span style="color:blue;">,</span> <span style="color:green;">&#8211; SCHEDULE_NUMBER</span><br />
<span style="color:maroon;">2</span><span style="color:blue;">,</span> <span style="color:green;">&#8211;SCHEDULED_FLAG</span><br />
<span style="color:red;">&#8216;Y&#8217;</span> <span style="color:green;">– FLOW_SCHEDULE</span><span style="color:blue;">);</span></p>
</blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/edhayes3.wordpress.com/861/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/edhayes3.wordpress.com/861/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/edhayes3.wordpress.com/861/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/edhayes3.wordpress.com/861/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/edhayes3.wordpress.com/861/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/edhayes3.wordpress.com/861/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/edhayes3.wordpress.com/861/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/edhayes3.wordpress.com/861/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/edhayes3.wordpress.com/861/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/edhayes3.wordpress.com/861/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/edhayes3.wordpress.com/861/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/edhayes3.wordpress.com/861/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/edhayes3.wordpress.com/861/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/edhayes3.wordpress.com/861/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.edhayes.us&amp;blog=7273967&amp;post=861&amp;subd=edhayes3&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.edhayes.us/2011/09/22/component-backflush-with-oracle-mtl-transaction-interface-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d466f200f383f8282232d0159ff260fa?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Ed Hayes</media:title>
		</media:content>
	</item>
		<item>
		<title>Fixed: Oracle iSetup XML Uploading Error</title>
		<link>http://blog.edhayes.us/2011/05/21/fixed-oracle-isetup-xml-uploading-error/</link>
		<comments>http://blog.edhayes.us/2011/05/21/fixed-oracle-isetup-xml-uploading-error/#comments</comments>
		<pubDate>Sat, 21 May 2011 18:05:06 +0000</pubDate>
		<dc:creator>Ed Hayes</dc:creator>
				<category><![CDATA[ERP]]></category>
		<category><![CDATA[Support]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Work Life]]></category>
		<category><![CDATA[7-ZIP]]></category>
		<category><![CDATA[ANSI]]></category>
		<category><![CDATA[iSetup]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[R12]]></category>
		<category><![CDATA[Rabid Solutions]]></category>
		<category><![CDATA[Rapid e-Suite]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[XML Notepad]]></category>

		<guid isPermaLink="false">http://blog.edhayes.us/?p=824</guid>
		<description><![CDATA[For the past month at work we have been experimenting with Oracle iSetup as a way to migrate Oracle R12 configurations from instance to instance.  We had been using Rapid Solutions (Rapid e-Suite) in Oracle 11i in the past, but wanted to try something quicker, more robust, and seeded with Oracle. The iSetup module worked [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.edhayes.us&amp;blog=7273967&amp;post=824&amp;subd=edhayes3&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For the past month at work we have been experimenting with Oracle iSetup as a way to migrate Oracle R12 configurations from instance to instance.  We had been using Rapid Solutions (<a href="http://rapidesuite.com/">Rapid e-Suite</a>) in Oracle 11i in the past, but wanted to try something quicker, more robust, and seeded with Oracle.</p>
<p>The iSetup module worked pretty well in our proof of concept testing.  But we ran into a problem when we started migrating our multi organization/business unit configurations. We have multiple business units because we are sharing the instance with another division at our company. Migrating configurations with iSetup brings all the ORGs and sites along with each configuration, however we only wanted our division&#8217;s configurations migrated.  To solve the problem, we started editing the exported XML before loading it into the new instance.</p>
<p>Editing XML is relatively time consuming and prone to error when editing in a text editor compared to a program designed to edit XML.  We tried to use the free Microsoft <a href="http://www.microsoft.com/downloads/en/details.aspx?familyid=72d6aa49-787d-4118-ba5f-4f30fe913628&amp;displaylang=en">XML Notepad 2007</a>, however, loading the exported files was causing iSetup to fail on upload.  I found the problem and solved it as described below.</p>
<h4><strong>Conditions</strong></h4>
<ul>
<li>Oracle iSetup module in Oracle E-Business suite R12</li>
<li>XML Documents edited by Microsoft XML Notepad 2007</li>
</ul>
<h4><strong>Symptoms</strong></h4>
<ul>
<li>iSetup reports error when uploading edited XML files</li>
<li>Log file as seen here:</li>
</ul>
<blockquote>
<div><span style="font-size:xx-small;">oracle.xml.parser.v2.XMLParseException: Start of root element expected.<br />
at oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:320)<br />
</span><span class="Apple-style-span" style="font-size:xx-small;">at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:341)</span></div>
<div><span class="Apple-style-span" style="font-size:xx-small;">at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:303)<br />
at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:205)<br />
at oracle.apps.az.r12.api.BC4JAPI.createAPIEntityItems(BC4JAPI.java:330)<br />
at oracle.apps.az.r12.extractor.cpserver.UploaderContextImpl.validateExtract(UploaderContextImpl.java:170)<br />
at oracle.apps.az.r12.extractor.cpserver.UploaderContextImpl.upload(UploaderContextImpl.java:105)<br />
at oracle.apps.az.r12.extractor.cpserver.UploaderCp.runProgram(UploaderCp.java:74)<br />
at oracle.apps.fnd.cp.request.Run.main(Run.java:157)</span></div>
</blockquote>
<div>
<h4>Problem</h4>
<ul>
<li>Oracle XML files are saved in ASNI text encoding even though the XML header specifies UTF-8</li>
<li>Oracle iSetup expects ASNI encoded XML files contained within uploaded ZIP file</li>
<li>Microsoft XML Notepad 2007 saves XML files in UTF-8 encoding</li>
</ul>
</div>
<h4>Solution</h4>
<p><img class="size-full wp-image-826 aligncenter" style="border-color:black;border-style:solid;border-width:1px;" title="Save As ASNI" src="http://edhayes3.files.wordpress.com/2011/05/save-as-asni.png?w=600" alt=""   /></p>
<ol>
<li>Download extraction ZIP file generated by Oracle iSetup</li>
<li>Extract ZIP file to your computer</li>
<li>Edit and save extracted XML file in Microsoft XML Notepad</li>
<li>Open saved file in Notepad (Text Editor)</li>
<li>Save As ASNI encoding</li>
<li>Replace existing file within original ZIP file
<ol>
<li>ZIP file compression levels and algorithms must reamin intact</li>
<li><a href="http://www.7-zip.org/">7-ZIP</a> supports replacing files within an existing file using drag and drop functionality</li>
</ol>
</li>
<li>Upload updated ZIP file to Oracle iSetup as a new extraction.</li>
<li>Load extraction into source instance</li>
</ol>
<h4>Conclusion</h4>
<div>It may seem like this is backwards, but from few hours of troubleshooting, this is what I concluded, and this is working for us. I may open a TAR with Oracle to get this bug fixed.  Before it is, however, this is how we are proceeding with our iSetup configurations.</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/edhayes3.wordpress.com/824/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/edhayes3.wordpress.com/824/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/edhayes3.wordpress.com/824/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/edhayes3.wordpress.com/824/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/edhayes3.wordpress.com/824/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/edhayes3.wordpress.com/824/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/edhayes3.wordpress.com/824/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/edhayes3.wordpress.com/824/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/edhayes3.wordpress.com/824/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/edhayes3.wordpress.com/824/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/edhayes3.wordpress.com/824/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/edhayes3.wordpress.com/824/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/edhayes3.wordpress.com/824/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/edhayes3.wordpress.com/824/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.edhayes.us&amp;blog=7273967&amp;post=824&amp;subd=edhayes3&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.edhayes.us/2011/05/21/fixed-oracle-isetup-xml-uploading-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d466f200f383f8282232d0159ff260fa?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Ed Hayes</media:title>
		</media:content>

		<media:content url="http://edhayes3.files.wordpress.com/2011/05/save-as-asni.png" medium="image">
			<media:title type="html">Save As ASNI</media:title>
		</media:content>
	</item>
		<item>
		<title>The Cost of Promotional Sales</title>
		<link>http://blog.edhayes.us/2010/02/04/the-cost-of-promotional-sales/</link>
		<comments>http://blog.edhayes.us/2010/02/04/the-cost-of-promotional-sales/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 17:33:38 +0000</pubDate>
		<dc:creator>Ed Hayes</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Cost Reduction]]></category>
		<category><![CDATA[ERP]]></category>
		<category><![CDATA[Process Improvement]]></category>
		<category><![CDATA[Supply Chain]]></category>
		<category><![CDATA[Communications]]></category>
		<category><![CDATA[Data Entry]]></category>
		<category><![CDATA[Direct Cost]]></category>
		<category><![CDATA[Dominicks]]></category>
		<category><![CDATA[EDLP]]></category>
		<category><![CDATA[Everyday Low Prices]]></category>
		<category><![CDATA[Forecast Accuracy]]></category>
		<category><![CDATA[Grocery]]></category>
		<category><![CDATA[Indirect Costs]]></category>
		<category><![CDATA[Inventory Builds]]></category>
		<category><![CDATA[Inventory Swings]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Planning]]></category>
		<category><![CDATA[Pricing]]></category>
		<category><![CDATA[Promotional Sale]]></category>
		<category><![CDATA[Purchase Order]]></category>
		<category><![CDATA[Recommendations]]></category>
		<category><![CDATA[Retail]]></category>
		<category><![CDATA[Safeway]]></category>
		<category><![CDATA[Store Preparations]]></category>
		<category><![CDATA[Strategy]]></category>
		<category><![CDATA[Supervalu]]></category>

		<guid isPermaLink="false">http://blog.edhayes.us/?p=531</guid>
		<description><![CDATA[Grocery retailers frequently use promotional sales to lure customers into stores.  Retailers hope customers will purchase higher margin products while they shop for the promoted items.  Chicago grocers Jewel-Osco, subsidiary of SUPERVALU, and Dominick’s, subsidiary of Safeway, both follow use this marketing strategy, changing promotions twice a week.  The promotional sales may increase customer traffic, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.edhayes.us&amp;blog=7273967&amp;post=531&amp;subd=edhayes3&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><img class="size-medium wp-image-618 aligncenter" style="border:1px solid black;" title="JewelAd" src="http://edhayes3.files.wordpress.com/2010/02/jewelad.gif?w=206&#038;h=240" alt="" width="206" height="240" /></p>
<p>Grocery retailers frequently use promotional sales to lure customers into stores.  Retailers hope customers will purchase higher margin products while they shop for the promoted items.  Chicago grocers <a href="http://www.Jewel-Osco.com">Jewel-Osco</a>, subsidiary of <a href="http://www.supervalu.com">SUPERVALU</a>, and <a href="http://www.dominicks.com">Dominick’s</a>, subsidiary of <a href="http://www.safeway.com">Safeway</a>, both follow use this marketing strategy, changing promotions twice a week.  The promotional sales may increase customer traffic, but they may also lead to the demise of the store.  I suspect, retailers that use promotional sales, on every day products sold year round, increase the cost of doing business and decrease supply chain efficiency.</p>
<p>Used by many grocers, promotional sales are the activities, materials, devices, and techniques used in the advertising and marketing of products.  I separated their cost into two different categories; direct costs and indirect costs.  I see the money spent on the processes and material to implement the promotional sale as direct costs, and the money lost due of the effects of the promotional sales are considered indirect costs.  From my point of view, both of these costs are significantly high, high enough to possibly outweigh any benefit of the promotional sales.  If I were managing a retail grocery operation, these are the items I would consider when deciding whether or not to continue utilizing promotional sales.</p>
<p><span id="more-531"></span></p>
<h4>Direct Costs</h4>
<p>Promotional sales have many components, each having a cost associated with it. Planning, marketing, inventory builds, and store preparations all take time to complete and consume valuable company resources.</p>
<h5 style="padding-left:30px;">Planning</h5>
<p style="padding-left:30px;">Planning a promotional sale must be time consuming and costly.  Stores need to decide what products to put on sale, when to put them on sale, and at which price to sell them during the sale.  They must also decide how they will market the promotion, design the promotion, and distribute the promotion. It takes time for the retailer to manage, and it takes time for suppliers to manage.  That being said, it is possible that retailers who promote frequently can manage this process relatively efficiently.  However, managing a promotional sales still requires resources; resources that do nothing other than manage and execute promotions. The planning process is only the beginning.</p>
<h5 style="padding-left:30px;">Marketing</h5>
<p style="padding-left:30px;">Promotions need to be communicated to the public, using any number of methods, all of which cost money.  From my experience, grocers seem to prefer some form of print media, like news papers or local ad circulars. Designing, printing, and delivering these advertisements must add significantly to a retailers cost. Some grocers even compliment the print media with radio and TV commercials, all of which take additional resources to produce and distribute.</p>
<h5 style="padding-left:30px;">Inventory Builds</h5>
<p style="padding-left:30px;">Before the promotional sale starts, retailers must increase inventory of the items being promoted. Vendors, transporters, distribution centers, and storefronts all need to take special measures to guarantee extra inventory is delivered, on time.  Not only on time, but just in time; fresh produce spoils quickly and it’s vital the delivery process be planned and executed without error.  Early or late delivery can lead to costly spoiled inventory. In addition to any spoiled inventory losses; inventory builds take significant amounts of working capital.</p>
<h5 style="padding-left:30px;">Store Preparations</h5>
<p style="padding-left:30px;">At the start of the promotional sale, costly store preparations must occur.  I have witnessed employees rearranging store shelving to accommodate shifts in inventory in anticipation of an increase in demand for some products, and decrease in demand for others.  Price tags throughout the store need to be updated, reprinted, and reapplied.  Finally, if displays are being used, they must be built and placed.</p>
<p>Each activity and consumable is temporary.  As promotions end and new ones begin, I expect these four processes repeat endlessly, adding cost during each cycle.</p>
<h4>Indirect Costs</h4>
<p>Along with any direct costs mentioned above, I predict promotional sales also have indirect costs aswell. Indirect costs caused by poor forecast accuracy, inadequate supply chain communication, and large inventory swings.</p>
<h5 style="padding-left:30px;">Forecast Accuracy</h5>
<p style="padding-left:30px;">As part the planning and execution phases, I suspect most vendors and retailers use Enterprise Resource Planning systems, or ERP systems, to manage the supply chain.  ERP systems use a multitude of variables, including, but not limited to forecasts, past orders, current orders, and current inventory levels, to track, plan, and manage inventory.  Recommendations to create purchase orders or manufacturing requirements are created on a regular basis. Recommendations may be edited manually and released by planners, or  they may be released automatically as purchase orders to suppliers.</p>
<p style="padding-left:30px;">Because forecasts are the foundation of ERP system demand calculations, I know the data must be clean and accurate for the systems to operate efficiently.  But, from my point of view, promotional sales cause forecast data to be dirty or inaccurate for two reasons: lack of predictability, and manual data entry.</p>
<p style="padding-left:30px;">I assume it is nearly impossible to precisely predict how inventory will move during and after a promotional sale.  The incredibly high quantity of variables makes it close to impossible to accurately forecast purchasing. Even the most nimble and elaborate forecasting software will likely have difficulty analyzing uneven sales data, not knowing what impact each dip or spike had, or if the dip or spike will happen again. During a promotion, inventory could be wiped out completely or may not be sold at all.  After the promotion, purchasing may likely decrease but it may, instead, increase.  The dip or spike in demand will last an unknown period of time.  I suspect competitors may possibly have a promotion on the same or competing products.  The promotion price may or may not impact purchasing.  Finally, it is also likely a naturally occurring or unpredicted event may also affect demand.</p>
<p style="padding-left:30px;">Even if all the variables are correct and accounted for, and the company has perfect knowledge of consumers’ thoughts and competitors’ marketing, forecasts may still be entered or edited incorrectly.  The manual data entry processes is far from six-sigma levels of accuracy and, from my experience in analyzing forecast data, will most likely have errors.  Incorrectly entered or edited data points could flow automatically from the retailer’s ERP system to the vendor’s ERP system without notice.  It is likely systems would be in place to detect erroneous data, but because the data nature of highly volatile forecasts, I would expect the detection systems would miss many errors.</p>
<h5 style="padding-left:30px;">Supply Chain Communications</h5>
<p style="padding-left:30px;">The ramifications of incorrectly generated and/or entered forecasts could be huge and expensive.  Data often trickles down from retailers to distributors and from distributors to suppliers; Most likely traveling automatically by way of automatic releases of ERP generated purchase order recommendations.  An invalid forecast could be transfered from the retailer to distributor to vendor without anyone knowing its inaccuracy.</p>
<p style="padding-left:30px;">Correct, but changed forecasts, could also cause problems.  I expect promotion plans change all the time.  They may get canceled, dates may move, or anticipated purchasing may change.   Regardless of the change, corrections or non-standard changes could get lost, miss communicated, or miss translated when being sent from retailers to vendors.  In some cases, they may not be communicated at all.</p>
<p style="padding-left:30px;">The farther away in the supply chain a company is from the retailer, the more difficult planning and communication becomes.  At the front of the chain, retailers have direct knowledge of a promotion, and have the ability to add or edit the details in their ERP system.  As promotions are developed, retailers communicate information to suppliers.  But, as mentioned before, if a promotion changes, it may not be fully communicated to all suppliers.  To add to the confusion, suppliers have suppliers, and those suppliers also have suppliers.  The farther down the chain, the less promotion visibility is seen.</p>
<p style="padding-left:30px;">The entire chain is only as good as the weakest link.  If not handled quickly and efficiently, at all levels of the supply chain, one invalid or missed forecast entry, or forecast change, has the ability to trigger massive product spoilage.</p>
<h5 style="padding-left:30px;">Inventory Swings</h5>
<p style="padding-left:30px;">From my experience at a manufacturing company, huge swings in inventory are nightmares for suppliers.  Inventory builds require increased production, which may require overtime pay and/or auxiliary temporary warehouse space; both impacting the supplier’s profitability.  On the other hand, purchasing reductions that occur after a promotion ends may lead to vast amounts of unused warehouse space, non-moving inventory, or unutilized resources or personnel.  These swings are not only problems for suppliers, they are disruptive to transporters as well.</p>
<p style="padding-left:30px;">Trucking is the predominant type of food transportation in the United States.  Trucking is a tough business; just like empty planes, empty or unused trucks are not profitable. To be profitable, trucking companies need to haul loads to <em>and</em> from sources and destinations.  And inventory swings spurred by promotion sales create irregular shipments and increase the possibility of empty trailers for flatbed trucks.  Fortunately, third party logistics companies have become a popular way to mitigate the cost of empty trucks, but I still don&#8217;t believe they are still not a perfect solution, nor do they provide free services.</p>
<p style="padding-left:30px;">The least tangible costs of inventory swings are their affect on data mining and forecast generation.  As previously discussed, forecast accuracy is crucial.  From my experience as a Supply Planner, large swings in inventory make it very difficult to produce an accurate forecast. Standard deviations for products that regularly go on sale are extremely high, and systematically generated forecasts can be incredibly inaccurate.</p>
<p>Any losses or costs incurred at any point in the supply chain will be passed on to the retailer by way of higher wholesale prices, regardless who is at fault.  The retailer will then pass that cost increase to the consumer via higher retail prices throughout the store, not necessarily on the product being promoted.   Keep in mind, all of these additional costs are being incurred to sell an item at a reduced price, likely a price below wholesale cost.</p>
<p>I believe retailers that use promotional sales as part of their marketing strategy are pregnant with cost saving opportunities.  It only requires retailers to realize how many costs are likely associated with their promotional sales in order for them to analyze their promotional sales strategy.  In a retail world ruled by everyday low prices, the analysis will hopefully come soon.  If not, retailers selling everyday products will likely fail because their promotional sales have a high probability of increasing their cost of doing business and decreasing their supply chain efficiency.</p>
<hr />
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/edhayes3.wordpress.com/531/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/edhayes3.wordpress.com/531/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/edhayes3.wordpress.com/531/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/edhayes3.wordpress.com/531/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/edhayes3.wordpress.com/531/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/edhayes3.wordpress.com/531/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/edhayes3.wordpress.com/531/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/edhayes3.wordpress.com/531/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/edhayes3.wordpress.com/531/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/edhayes3.wordpress.com/531/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/edhayes3.wordpress.com/531/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/edhayes3.wordpress.com/531/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/edhayes3.wordpress.com/531/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/edhayes3.wordpress.com/531/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.edhayes.us&amp;blog=7273967&amp;post=531&amp;subd=edhayes3&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.edhayes.us/2010/02/04/the-cost-of-promotional-sales/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d466f200f383f8282232d0159ff260fa?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Ed Hayes</media:title>
		</media:content>

		<media:content url="http://edhayes3.files.wordpress.com/2010/02/jewelad.gif?w=257" medium="image">
			<media:title type="html">JewelAd</media:title>
		</media:content>
	</item>
		<item>
		<title>ERP and the Business of Change</title>
		<link>http://blog.edhayes.us/2009/07/20/erp-and-the-business-of-change/</link>
		<comments>http://blog.edhayes.us/2009/07/20/erp-and-the-business-of-change/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 17:31:58 +0000</pubDate>
		<dc:creator>Ed Hayes</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[ERP]]></category>
		<category><![CDATA[Manufacturing]]></category>
		<category><![CDATA[Process Improvement]]></category>
		<category><![CDATA[Supply Chain]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Change]]></category>
		<category><![CDATA[Transaction]]></category>

		<guid isPermaLink="false">http://blog.edhayes.us/?p=250</guid>
		<description><![CDATA[I saw an article over at SmartChange™ about ERP and the Business of Change. It got me thinking of the culture and business practices I witnessed at my last job at USG.  All three main points Marcelino Sanchez reviewed hit very close to home. Individual Change&#8230; An individual may be confronted with a new user [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.edhayes.us&amp;blog=7273967&amp;post=250&amp;subd=edhayes3&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I saw an article over at SmartChange™ about <a href="http://smartchangesolutions.blogspot.com/2009/07/erp-and-business-of-change.html">ERP and the Business of Change</a>. It got me thinking of the culture and business practices I witnessed at my last job at USG.  All three main points Marcelino Sanchez reviewed hit very close to home.</p>
<blockquote><p><span><span class="Apple-style-span" style="font-size:medium;"><strong>Individual Change</strong>&#8230; An individual may be confronted with a new user interface, a new “best practice”, a different way to make decisions, or any number of new requirements. When this is the case, individuals will tend to experience one or more of the following five key factors: fear, anxiety, confusion, loss of control, or erosion of power or influence in the organization. The more an individual feels any of these emotions, the less likely they are to accept the new way of doing things. Lack of acceptance will diminish or delay the benefits of the ERP effort&#8230;</span></span></p></blockquote>
<p><span id="more-250"></span></p>
<p>Individual Change was something I dealt with on a daily basis during the implementation at each of the plants I was involved with.  To overcome the fears, anxiety, confusion, and loss of control or power, one of the things I stressed during my training sessions was how much impact the employee had during the process.  I made them aware of the many things that occurred in the background when they processed a transaction; including raw material consumption and inventory movement.  I also explained how that transaction impacted the rest of the business processes such as costing and planning.</p>
<p>This additional, non essential, information, made the employee realize not only how powerful the system was, the but the importance of completing the transaction accurately and in timely manner.  A side benefit of knowing what happened as the transaction processed and what impact a transaction had on other business processes,  was the ability to think, on the fly, of how to correct a problem that occurred outside of the typical business process.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/edhayes3.wordpress.com/250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/edhayes3.wordpress.com/250/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/edhayes3.wordpress.com/250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/edhayes3.wordpress.com/250/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/edhayes3.wordpress.com/250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/edhayes3.wordpress.com/250/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/edhayes3.wordpress.com/250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/edhayes3.wordpress.com/250/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/edhayes3.wordpress.com/250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/edhayes3.wordpress.com/250/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/edhayes3.wordpress.com/250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/edhayes3.wordpress.com/250/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/edhayes3.wordpress.com/250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/edhayes3.wordpress.com/250/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.edhayes.us&amp;blog=7273967&amp;post=250&amp;subd=edhayes3&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.edhayes.us/2009/07/20/erp-and-the-business-of-change/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d466f200f383f8282232d0159ff260fa?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Ed Hayes</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing Oracle r12: On To Linux!</title>
		<link>http://blog.edhayes.us/2009/07/07/installing-oracle-r12-on-to-linux/</link>
		<comments>http://blog.edhayes.us/2009/07/07/installing-oracle-r12-on-to-linux/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 22:35:33 +0000</pubDate>
		<dc:creator>Ed Hayes</dc:creator>
				<category><![CDATA[ERP]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Bootable Partition Partition Manager]]></category>
		<category><![CDATA[Jump Drive]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mount]]></category>
		<category><![CDATA[Network Interface Card]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Oracle Enterprise Linux]]></category>
		<category><![CDATA[Oracle r12]]></category>
		<category><![CDATA[rapidwiz]]></category>
		<category><![CDATA[USB Hard Drive]]></category>
		<category><![CDATA[Windows Vista]]></category>

		<guid isPermaLink="false">http://blog.edhayes.us/?p=208</guid>
		<description><![CDATA[I downloaded the Oracle Enterprise Linux distribution, and Linux E-Business r12 installer from Oracle.  I am sure RCN Cable loves that I have now downloaded over 100 GB in the last 4 days.   After my Windows Server 2003 debacle, I decided to run the Windows Vista recovery CDs I made to reinstall Vista the way [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.edhayes.us&amp;blog=7273967&amp;post=208&amp;subd=edhayes3&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I downloaded the <a href="http://edelivery.oracle.com/linux">Oracle Enterprise Linux</a> distribution, and <a href="http://edelivery.oracle.com/">Linux E-Business r12</a> installer from Oracle.  I am sure RCN Cable loves that I have now downloaded over 100 GB in the last 4 days.   After my Windows Server 2003 debacle, I decided to run the Windows Vista recovery CDs I made to reinstall Vista the way it came from Gateway.  That way I would know the exact network drivers and such.</p>
<p><span id="more-208"></span></p>
<h3>Hard Drive Imaging</h3>
<p>Before I installed Linux I wanted to make an image of my hard drive so that I wouldn&#8217;t have to go through the painful Vista setup again.  That was a process in itself.  My final solution was getting <a href="http://gparted.sourceforge.net/index.php">GPart</a>, a bootable partition manager, and running it on a USB Jump Drive.  What a wondrous solution!  By far the best experience I have had during my Oracle Instillation process.  I was able to copy my Windows Vista partition from my internal hard disk to my external USB hard disk rather simply.</p>
<h3>Linux and USB Hard Drives</h3>
<p>I was a bit confused when installing Linux, but I was able to get through it.  And it booted and worked without any problems.  It even found my wired network interface card (NIC) *GASP*!  So far so good!</p>
<p>This is where the pain started.  Oracle was on a USB drive!  At first I connected it and nothing happened.  I tried searching the net and doing the whole mount thing, and I pretty much gave up after looking at this guide on <a href="http://www.jarrodgoddard.com/linux-web-hosting/mounting-an-external-usb-drive-in-linux">mounting a USB drive in Linux</a> and having zero luck. I tried getting the data through &#8220;Windows Networking&#8221; on my iMac.  It worked at first, but then something happened, and it stopped?  I still don&#8217;t know how to get it working again. BUT I found the solution to my USB drive problem!</p>
<p>First, I don&#8217;t know why it didn&#8217;t mount before, but it mounted after a reboot, and I could see all the files I had stored on the external USB hard drive.  But, as I should expect at this point, I had a problem.  I could not execute any files on the drive for some reason.  I am not a Linux expert, I wouldn&#8217;t even say I am a novice at this point. So I copied all my files over to my system disk and started the instillation from there. To get the Oracle E-business installer going I had to use terminal to launch it.  I browsed to the path the Oracle installer was at and used this command to launch the installer once I was in the rapidwiz folder.:</p>
<blockquote><p>./rapidwiz</p></blockquote>
<p>Wouldn&#8217;t you know it, I failed a test!  The storage space test!  I continued anyway; failed instillation of coarse.  I reinstalled Linux to start from scratch.  I also found a solution to my problem of executing from a USB drive!</p>
<p>The external file system was only half mounted or something.  I went back to my <a href="http://www.jarrodgoddard.com/linux-web-hosting/mounting-an-external-usb-drive-in-linux">mounting a USB drive in Linux</a> guide and figured out my problem!  I was using /sda1, /sda2, or /sda3.  Those are the partitions 1, 2, and 3 on storage device A!  I wanted partition 2 on storage device B.  So I tried:</p>
<blockquote><p>mkdir /mnt/usbdrive<br />
mount /dev/sdb2 /mnt/usbdrive</p></blockquote>
<p>My command processed  with out an error!  I felt invincible at this point!  I launched rapidwiz and started the instillation once again.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/edhayes3.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/edhayes3.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/edhayes3.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/edhayes3.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/edhayes3.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/edhayes3.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/edhayes3.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/edhayes3.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/edhayes3.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/edhayes3.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/edhayes3.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/edhayes3.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/edhayes3.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/edhayes3.wordpress.com/208/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.edhayes.us&amp;blog=7273967&amp;post=208&amp;subd=edhayes3&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.edhayes.us/2009/07/07/installing-oracle-r12-on-to-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d466f200f383f8282232d0159ff260fa?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Ed Hayes</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing Oracle r12: Oracle is CRAZY!</title>
		<link>http://blog.edhayes.us/2009/07/06/installing-oracle-r12-oracle-is-crazy/</link>
		<comments>http://blog.edhayes.us/2009/07/06/installing-oracle-r12-oracle-is-crazy/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 20:33:51 +0000</pubDate>
		<dc:creator>Ed Hayes</dc:creator>
				<category><![CDATA[ERP]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Oracle Enterprise Linux]]></category>
		<category><![CDATA[Windows Server 2003]]></category>

		<guid isPermaLink="false">http://blog.edhayes.us/?p=200</guid>
		<description><![CDATA[Installing Oracle in Windows Server 2003 has not been easy thus far. After all my tests passed last time, I started the instillation. To my udder shock, and amazement, the install FAILED again! Actually I was not too terribly shocked. I expected it really. This time the failure was rather quick. I figured this had [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.edhayes.us&amp;blog=7273967&amp;post=200&amp;subd=edhayes3&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Installing Oracle in Windows Server 2003 has not been easy thus far.  After all my tests passed last time, I started the instillation.  To my udder shock, and amazement, the install FAILED again!  Actually I was not too terribly shocked.  I expected it really.</p>
<p><span id="more-200"></span></p>
<p>This time the failure was rather quick.  I figured this had to do with the fact that I had already attempted an instillation.  I began deleting registry entries, and Oracle created files.  It was really a pain.  I thought I had everything solved, and I started the instillation again! And surprise surprise; another failure.</p>
<p>Installing Oracle in Windows Server 2003 was not something meant for me.  I think it actually had something to do with the Microsoft Visual Studio I had used in the first place, the lack of initial host/domain configurations, and the prior install.  Regardless of the actual problem.  I thought it may be ideal to use Oracle&#8217;s Linux OS since that is what Oracle was made for.  So on to installing Oracle Enterprise Linux!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/edhayes3.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/edhayes3.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/edhayes3.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/edhayes3.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/edhayes3.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/edhayes3.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/edhayes3.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/edhayes3.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/edhayes3.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/edhayes3.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/edhayes3.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/edhayes3.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/edhayes3.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/edhayes3.wordpress.com/200/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.edhayes.us&amp;blog=7273967&amp;post=200&amp;subd=edhayes3&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.edhayes.us/2009/07/06/installing-oracle-r12-oracle-is-crazy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d466f200f383f8282232d0159ff260fa?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Ed Hayes</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing Oracle r12: Third Party Software</title>
		<link>http://blog.edhayes.us/2009/07/05/installing-oracle-r12-third-party-software/</link>
		<comments>http://blog.edhayes.us/2009/07/05/installing-oracle-r12-third-party-software/#comments</comments>
		<pubDate>Sun, 05 Jul 2009 19:55:45 +0000</pubDate>
		<dc:creator>Ed Hayes</dc:creator>
				<category><![CDATA[ERP]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[CL.exe]]></category>
		<category><![CDATA[Cygwin]]></category>
		<category><![CDATA[DMZ]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[Domain]]></category>
		<category><![CDATA[Host/Domain]]></category>
		<category><![CDATA[Install]]></category>
		<category><![CDATA[Metalink]]></category>
		<category><![CDATA[Microsfot]]></category>
		<category><![CDATA[My Oracle Support]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Redistributable]]></category>
		<category><![CDATA[Router]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://blog.edhayes.us/?p=198</guid>
		<description><![CDATA[Now that Windows 2003 is installed, and has at least one network device working, It is time to install all my third party software packages that Oracle requires. These are not easy folks! Cygwin For Cygwin, follow Metalink Note # 414992.1. If you don&#8217;t have access to Metalink (actually they changed the name to &#8220;My [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.edhayes.us&amp;blog=7273967&amp;post=198&amp;subd=edhayes3&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Now that Windows 2003 is installed, and has at least one network device working, It is time to install all my third party software packages that Oracle requires.  These are not easy folks!</p>
<p><span id="more-198"></span></p>
<h3>Cygwin</h3>
<p>For Cygwin, follow  Metalink Note # 414992.1.  If you don&#8217;t have access to Metalink (actually they changed the name to &#8220;My Oracle Support&#8221;, Oracle likes to confuse people as much as they can), just search the internet, and you can find a copy of the details somewhere.  Oracle sure didn&#8217;t make this process easy!  Cygwin can&#8217;t simply be installed with default settings; many additional items have to be selected and installed.  Some of the server mirrors don&#8217;t have necessary files, so you have to try different ones.  Additionally,  there are additional steps after the Cygwin install that must be followed in order to get Oracle to accept the Linux like environment.</p>
<h3>Microsoft Visual Studio</h3>
<p>One of the hardest problems to solve was getting Microsoft Visual Studio installed, or at least the components that I needed. I thought I had it covered by following the guide and installing the Visual Studio 2005 redistributable file.</p>
<p>I thought everything was complete, so I started the Oracle installer.  I followed all the directions and got to the &#8220;testing&#8221; phase where the Oracle Installer makes sure everything is in order and working correctly.  Unsurprisingly, many things failed.</p>
<p>The first was the tools test, which I narrowed down to Visual Studio!  I looked through the errors and found some information on the internet.  I ended up installing Microsoft Visual C++ 2008 Express Edition.  I had to do this in order to get the &#8220;CL.exe&#8221; file that was needed later in the Oracle Instillation (as mentioned in the error log). I also had to add the folder path to  the &#8220;Environment Variables&#8221; and I copied the CL.exe to the System32 directory.  I don&#8217;t know if all of those were necessary, but Oracle seemed to be happy once I did that.</p>
<h3>Host/DNS</h3>
<p>The next thing that failed was the &#8220;host/domain&#8221; test.  I tried for an hour to get that to work.  I thought editing my domain&#8217;s DNS settings would solve the problem, and It never did.  I figured I wasn&#8217;t going to use a domain name with my install anyway, so I continued the instillation an hour or so after I changed the DNS settings and with the test continually failing.</p>
<p>Two hours or so into the instillation, it failed.  I looked up many different things on the internet, and found the problem could be caused by my lack of correct host/domain.  To fix the problem I went back and verified my A Name was &#8220;oracle.edhayes.us&#8221; in my domain names DNS settings.  I also verified it  resolved to my real world IP address.  After an hour or so more of Internet server prorogation,  I tried the Oracle instillation test again, and still no success with the host/domain portion.</p>
<p>I did some more searching on the internet and found some more information.  I went to system properties, computer name,  more, and filled in the Domain prefix (I used oracle.edhayes.us).  I tried doing some pinging in the command window, and it was pulling up the correct IP address, but the test was still failing.  At this point I think the domain settings had propagated.   I set my DMZ on my router to my laptop&#8217;s IP address.  I dont know what combination of tricks did it, but all of the DMZ, DNS, and computer&#8217;s domain prefix got the Oracle installer host/domain test to successfully complete.  Lets start the install again!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/edhayes3.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/edhayes3.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/edhayes3.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/edhayes3.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/edhayes3.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/edhayes3.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/edhayes3.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/edhayes3.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/edhayes3.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/edhayes3.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/edhayes3.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/edhayes3.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/edhayes3.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/edhayes3.wordpress.com/198/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.edhayes.us&amp;blog=7273967&amp;post=198&amp;subd=edhayes3&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.edhayes.us/2009/07/05/installing-oracle-r12-third-party-software/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d466f200f383f8282232d0159ff260fa?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Ed Hayes</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing Oracle r12: Windows Server 2003</title>
		<link>http://blog.edhayes.us/2009/07/04/installing-oracle-r12-windows-server-2003/</link>
		<comments>http://blog.edhayes.us/2009/07/04/installing-oracle-r12-windows-server-2003/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 00:51:43 +0000</pubDate>
		<dc:creator>Ed Hayes</dc:creator>
				<category><![CDATA[ERP]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Gateway]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://blog.edhayes.us/?p=186</guid>
		<description><![CDATA[The laptop I purchased gave me some trouble.  Most likely because it is substantially newer than the release of Windows Server 2003. Laptop I am using a Gateway NV5214u I purchased at Best Buy for $479 before tax. Warranty: 1 year limited Product Weight: 6.8 lbs. Processor: AMD Athlon™ X2 at 2.1 GHz Screen: 15.6&#8243; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.edhayes.us&amp;blog=7273967&amp;post=186&amp;subd=edhayes3&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The laptop I purchased gave me some trouble.  Most likely because it is substantially newer than the release of Windows Server 2003.</p>
<div id="attachment_215" class="wp-caption aligncenter" style="width: 325px"><a href="http://edhayes3.files.wordpress.com/2009/07/gateway-nv5214u.jpg"><img class="size-full wp-image-215" title="Gateway NV5214u" src="http://edhayes3.files.wordpress.com/2009/07/gateway-nv5214u.jpg?w=600" alt="Gateway NV5214u"   /></a><p class="wp-caption-text">Gateway NV5214u</p></div>
<h3><span id="more-186"></span>Laptop</h3>
<p>I am using a Gateway NV5214u I purchased at Best Buy for $479 before tax.</p>
<ul>
<li>Warranty: 1 year limited</li>
<li>Product Weight: 6.8 lbs.</li>
<li>Processor: AMD Athlon™ X2 at 2.1 GHz</li>
<li>Screen: 15.6&#8243; WXGA (1366 x 768)</li>
<li>Memory (RAM): 4GB DDR2 SDRAM</li>
<li>Hard Drive: 320GB SATA</li>
<li>Optical Drive: Double-layer DVD±RW/CD-RW</li>
<li>Digital Reader</li>
<li>Webcam</li>
<li>Gigabit Ethernet (RJ-45 connector)</li>
<li>Wireless Networking (B+G+N)</li>
<li>HDMI</li>
<li>USB 2.0 Ports: 4</li>
<li>Battery Life: Up to 3 hours</li>
<li>ENERGY STAR Qualified</li>
</ul>
<p>When Installing the Windows Server 2003, I would continually get the Blue Screen of Death with these codes:</p>
<blockquote><p>STOP: <span>0x0000007B</span> (<span>0xF789EA94</span>, 0xC0000034, 0&#215;00000000, 0&#215;00000000).</p></blockquote>
<p>I solved the problem by setting the SATA Mode to &#8220;IDE Mode&#8221; in the bios (F2 on startup).</p>
<h3>Network Drivers</h3>
<p>After the instillation, I found that nearly all of my drivers were not found.  I called Gateway to locate the network drivers, but Gateway does not have my model in their support system yet!  Shame on them!</p>
<p>Knowing that Acer now owns Gateway, I headed over to their site and found a laptop similar to mine.  I then located that laptop&#8217;s drivers in their support section.  They had several drivers listed, so I downloaded them all and used a USB drive to copy them from my Mac to the laptop. After testing each driver, I found one that worked on one of the two network devices!</p>
<p>The Gateway NV5214u &#8220;Network Adapter&#8221; in Device Manager is the &#8220;Ralink 802.11N Wireless LAN Card&#8221;.  Head over to Acer&#8217;s <a href="http://us.acer.com/acer-v2/service.do?LanguageISOCtxParam=en&amp;miu10einu24.current.attN2B2F2EEF=3750&amp;sp=page15e&amp;ctx2.c2att1=25&amp;miu10ekcond13.attN2B2F2EEF=3750&amp;CountryISOCtxParam=US&amp;ctx1g.c2att92=453&amp;ctx1.att21k=1&amp;CRC=2054404012">website</a> and select an Acer Aspire 6530 Notebook. Get the Windows XP Pro 32 bit Ralink Wireless LAN Driver Version 1.1.5.0.</p>
<p>On to Oracle!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/edhayes3.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/edhayes3.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/edhayes3.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/edhayes3.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/edhayes3.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/edhayes3.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/edhayes3.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/edhayes3.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/edhayes3.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/edhayes3.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/edhayes3.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/edhayes3.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/edhayes3.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/edhayes3.wordpress.com/186/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.edhayes.us&amp;blog=7273967&amp;post=186&amp;subd=edhayes3&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.edhayes.us/2009/07/04/installing-oracle-r12-windows-server-2003/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d466f200f383f8282232d0159ff260fa?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Ed Hayes</media:title>
		</media:content>

		<media:content url="http://edhayes3.files.wordpress.com/2009/07/gateway-nv5214u.jpg" medium="image">
			<media:title type="html">Gateway NV5214u</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing Oracle r12: The Beginning</title>
		<link>http://blog.edhayes.us/2009/07/03/installing-oracle-r12-the-beginning/</link>
		<comments>http://blog.edhayes.us/2009/07/03/installing-oracle-r12-the-beginning/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 01:21:51 +0000</pubDate>
		<dc:creator>Ed Hayes</dc:creator>
				<category><![CDATA[ERP]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Cygwin]]></category>
		<category><![CDATA[DownThemAll!]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Oracle r12]]></category>
		<category><![CDATA[Visual C++]]></category>
		<category><![CDATA[Windows Server 2003]]></category>

		<guid isPermaLink="false">http://blog.edhayes.us/?p=183</guid>
		<description><![CDATA[Many of my potential clients are looking for consultants that have experience implementing Oracle r12, and therefore I decided to install Oracle r12 to learn all of its new features.  I will have to buy a PC, download Oracle and Windows Server 2003, and install them both.  Then, who knows what I will need to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.edhayes.us&amp;blog=7273967&amp;post=183&amp;subd=edhayes3&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Many of my potential clients are looking for consultants that have experience implementing Oracle r12, and therefore I decided to install Oracle r12 to learn all of its new features.  I will have to buy a PC, download Oracle and Windows Server 2003, and install them both.  Then, who knows what I will need to learn to start using Oracle r12.  This task is daunting, but I know I will learn a lot!</p>
<p>I will be using <a href="http://onlineappsdba.com/index.php/2008/07/02/install-oracle-apps-r1212i-on-windows/">this website</a> as my guide.</p>
<p><span id="more-183"></span></p>
<p>Here is the list of things that I have downloaded and stored on an external drive.  I suggest using a download manager; I am using <a href="http://www.downthemall.net/">DownThemAll!</a>.  Oracle is 39 files, totaling around 40 GB</p>
<ul>
<li>Windows Server 2003 R2  Enterprise Edition with SP2 (32-BIT)
<ul>
<li><a href="http://technet.microsoft.com/en-us/windowsserver/bb430831.aspx">Trial registration</a></li>
<li><a href="http://www.microsoft.com/windowsserver2003/r2/trial/installinstruct.mspx">Image download</a></li>
</ul>
</li>
<li>Visual C++ 2005 Redistributable Package
<ul>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=32BC1BEE-A3F9-4C13-9C99-220B62A191EE&amp;displaylang=en">Download Page</a></li>
</ul>
</li>
<li>Cygwin (Linux Like Environment)
<ul>
<li><a href="http://www.cygwin.com">Home Page</a></li>
<li><a href="http://www.cygwin.com/setup.exe">Download File</a></li>
</ul>
</li>
<li>Oracle r12
<ul>
<li><a href="http://edelivery.oracle.com">Oracle Download Site</a></li>
<li>Select E-Business Suite for Microsoft Windows 32-bit</li>
<li>Choose Oracle E-Business Suite Applications Release 12.1.1 Media Pack for Microsoft Windows (32-bit)</li>
<li>Download All Files</li>
</ul>
</li>
</ul>
<p>Off to buy a computer!  To Be Continued&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/edhayes3.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/edhayes3.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/edhayes3.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/edhayes3.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/edhayes3.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/edhayes3.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/edhayes3.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/edhayes3.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/edhayes3.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/edhayes3.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/edhayes3.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/edhayes3.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/edhayes3.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/edhayes3.wordpress.com/183/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.edhayes.us&amp;blog=7273967&amp;post=183&amp;subd=edhayes3&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.edhayes.us/2009/07/03/installing-oracle-r12-the-beginning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d466f200f383f8282232d0159ff260fa?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Ed Hayes</media:title>
		</media:content>
	</item>
		<item>
		<title>Question on Demand Planning &amp; Forecasting</title>
		<link>http://blog.edhayes.us/2009/01/26/question-on-demand-planning-forecasting/</link>
		<comments>http://blog.edhayes.us/2009/01/26/question-on-demand-planning-forecasting/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 22:03:24 +0000</pubDate>
		<dc:creator>Ed Hayes</dc:creator>
				<category><![CDATA[ERP]]></category>
		<category><![CDATA[Supply Chain]]></category>
		<category><![CDATA[ASCP]]></category>
		<category><![CDATA[Demantra]]></category>
		<category><![CDATA[Fixed Days Supply]]></category>
		<category><![CDATA[Forecasting]]></category>
		<category><![CDATA[Inventory Targets]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[Manufacturing Plan]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Safety Stocks]]></category>
		<category><![CDATA[Supply Planning]]></category>

		<guid isPermaLink="false">http://blog.edhayes.us/?p=19</guid>
		<description><![CDATA[I was sent a message on LinkedIn from a gentleman requesting my input on their planning methods. As I was writing my response, I thought that it would be of benefit to other people, so I am posting the question and response here. Click “read more” below to read the entire question and response. Question: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.edhayes.us&amp;blog=7273967&amp;post=19&amp;subd=edhayes3&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-100" title="linkedin_logo" src="http://edhayes3.files.wordpress.com/2009/04/linkedin_logo.png?w=600" alt="linkedin_logo"   /></p>
<p>I was sent a message on LinkedIn from a gentleman requesting my input on their planning methods. As I was writing my response, I thought that it would be of benefit to other people, so I am posting the question and response here. Click “read more” below to read the entire question and response.</p>
<p>Question:</p>
<blockquote><p>We both share the Supply Chain group on linkedin.I understand you have experience in Demand Planning &amp; Forecasting. We at the IBF &#8211; Institute of Business Forecasting &amp; Planning are currently researching what companies are doing to manage their inventory, reduce operating costs, improve customer retention &amp; fulfillment in this volatile market? Especially, when history can no longer be an indication of future outcome. It would be great if you could share some thoughts on what your company is doing to remain competitive and preserve cash. Furthermore, do you feel executives are recognizing the important of demand planning &amp; forecasting, more so now than ever before? And if so, are they only looking for technology as the quick fix, or improving processes from your viewpoint? Of course, we see pursuing technology without having proper processes in place to be dangerous.</p>
<p>So far, we’re seeing companies paying more attention to forecasting for items with higher value only, and doing it at shorter interval. We’re also seeing companies truly leveraging their S&amp;OP processes, as well as their POS and Syndicated data to make better planning decisions from having a clearer picture of consumer behavior at any given time.</p></blockquote>
<p><span id="more-19"></span>Response:</p>
<blockquote><p>Thanks for the message. I was unfortunately laid off in December. However, I can tell you that we had a similar problem, and when I left we were working on reducing working capital. The problem we had was that the production planners at the plants were all trying to fill their production schedule so that the production line was utilized when there were crews there to staff it. As a result, inventory was extremely high and all of our plants.</p>
<p>We did a few things to try to solve this. First, I created a tool to analyze safety stocks using data from our order history and item level fixed days supply. Second, we would discuss the new safety stock recommendations, by item, with the plants before adding the new data to our Oracle Item setups. Finally, there was a push to drive production solely off of our manufacturing plan recommendations. Recommendations were driven off of daily customer orders, forecast, and safety stock demand.</p>
<p>Oracle adoption was pushed from very high up in the company. The one pending item that we were working on when I left was our legacy way of thinking of inventory targets. Prior to our Oracle implementation, we had inventory targets as a metric. These targets were Monday Morning levels of inventory. We assuming production seven days a week and shipping five days a week. So these levels were historically the highest point of our inventory and were the metric at which plants were gauged.</p>
<p>Post oracle, this economy, and staffing changes all impacted changes to actual inventories at plants, and it was apparent that a heuristic or best judgment way of creating these targets would not work. It was also apparent, in my mind, that it was a poor metric to use. Plants should not be graded on their levels of inventory as compared to one target: temporary order surges or lulls could make a plant look poor, when in fact it was producing perfectly against the manufacturing plan.</p>
<p>As I was leaving, I was in the process of creating a method of calculating inventory targets using the fore mentioned safety stocks, fixed days supply, and average daily shipments. Where the total volume of safety stock would be a “minimum” inventory, and a calculation based on fixed days supply and average daily shipments added to the safety stock would be the peak of inventory. Of coarse the peak may or may not land on a Monday like our prior metrics assumed; that was a change management issue that had yet to be discussed or resolved.</p>
<p>When it comes to forecasting, we were in the process of upgrading to Oracle Demantra when I left. Oracle Demantra would greatly improve our forecasting methods, and accuracy. And yes, It was apparent that accurate forecasts were an important part of our planning process. But, an accurate forecast is meaningless if you do not produce exactly what you are recommended to based off all of the data inputs including, but limited to, forecasts, safety stocks, and orders.</p>
<p>Hope that helps.</p></blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/edhayes3.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/edhayes3.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/edhayes3.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/edhayes3.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/edhayes3.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/edhayes3.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/edhayes3.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/edhayes3.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/edhayes3.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/edhayes3.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/edhayes3.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/edhayes3.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/edhayes3.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/edhayes3.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.edhayes.us&amp;blog=7273967&amp;post=19&amp;subd=edhayes3&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.edhayes.us/2009/01/26/question-on-demand-planning-forecasting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d466f200f383f8282232d0159ff260fa?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Ed Hayes</media:title>
		</media:content>

		<media:content url="http://edhayes3.files.wordpress.com/2009/04/linkedin_logo.png" medium="image">
			<media:title type="html">linkedin_logo</media:title>
		</media:content>
	</item>
	</channel>
</rss>
