<?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>KentW Limited &#187; R12</title>
	<atom:link href="http://ltd.kentw.co.uk/tag/r12/feed/" rel="self" type="application/rss+xml" />
	<link>http://ltd.kentw.co.uk</link>
	<description>Appsblog 2.1</description>
	<lastBuildDate>Sat, 10 Sep 2011 11:34:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>R12 FND User password lock down</title>
		<link>http://ltd.kentw.co.uk/technical/r12-installation/r12-fnd-user-password-lock-down/</link>
		<comments>http://ltd.kentw.co.uk/technical/r12-installation/r12-fnd-user-password-lock-down/#comments</comments>
		<pubDate>Sat, 26 Feb 2011 10:48:10 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
				<category><![CDATA[R12 Installation]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[R12]]></category>

		<guid isPermaLink="false">http://ltd.kentw.co.uk/technical/r12-installation/r12-fnd-user-password-lock-down/</guid>
		<description><![CDATA[When making your R12 server available on-line you need to protect your FND user password.
This assumes that you have ONLY opened port 8000 for APPS login access.
For any other access I can only recommend to use VPN as a full OEL and RDBMS lock down is very complex.
I used the following script (use at your [...]]]></description>
			<content:encoded><![CDATA[<p>When making your R12 server available on-line you need to protect your FND user password.</p>
<p>This assumes that you have ONLY opened port 8000 for APPS login access.</p>
<p>For any other access I can only recommend to use VPN as a full OEL and RDBMS lock down is very complex.</p>
<p>I used the following script (use at your own risk):</p>
<blockquote><p><font size="1"><em>begin         <br />&#160;&#160;&#160; /* lock ALL seeded accounts first */          <br />&#160;&#160;&#160; update fnd_user set end_date=sysdate;          <br />&#160;&#160;&#160; commit;          <br />&#160;&#160;&#160; /* then unlock the necessary ones */          <br />&#160;&#160;&#160; update fnd_user set end_date=null where user_name in (          <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#8216;ANONYMOUS&#8217;,          <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#8216;APPSMGR&#8217;,          <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#8216;AUTOINSTALL&#8217;,          <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#8216;CONCURRENT MANAGER&#8217;,          <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#8216;FEEDER SYSTEM&#8217;,          <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#8216;GUEST&#8217;, /* NEVER touch this account as this enables APPS login */          <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#8216;INITIAL SETUP&#8217;,          <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#8216;ORACLE&#8217;, /* my demo account */&#160; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#8216;SYSADMIN&#8217;          <br />&#160;&#160;&#160; );          <br />&#160;&#160;&#160; commit;          <br />&#160;&#160;&#160; /* set password – but NOT for GUEST */          <br />&#160;&#160;&#160; fnd_user_pkg.updateuser(&#8216;ANONYMOUS&#8217;,null,&#8217;password&#8217;);          <br />&#160;&#160;&#160; fnd_user_pkg.updateuser(&#8216;APPSMGR&#8217;,null,&#8217;password&#8217;);          <br />&#160;&#160;&#160; fnd_user_pkg.updateuser(&#8216;AUTOINSTALL&#8217;,null,&#8217;password&#8217;);          <br />&#160;&#160;&#160; fnd_user_pkg.updateuser(&#8216;CONCURRENT MANAGER&#8217;,null,&#8217;password&#8217;);          <br />&#160;&#160;&#160; fnd_user_pkg.updateuser(&#8216;FEEDER SYSTEM&#8217;,null,&#8217;password&#8217;);          <br />&#160;&#160;&#160; fnd_user_pkg.updateuser(&#8216;INITIAL SETUP&#8217;,null,&#8217;password&#8217;);          <br />&#160;&#160;&#160; fnd_user_pkg.updateuser(&#8216;SYSADMIN&#8217;,null,&#8217;password&#8217;);          <br />&#160;&#160;&#160; fnd_user_pkg.updateuser(&#8216;ORACLE&#8217;,null,&#8217;password&#8217;);          <br />&#160;&#160;&#160; commit;          <br />end;          <br />/          <br />exit;</em></font></p>
</blockquote>
<p>Note: Do NOT to touch the GUEST user.</p>
]]></content:encoded>
			<wfw:commentRss>http://ltd.kentw.co.uk/technical/r12-installation/r12-fnd-user-password-lock-down/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>R12 on a HTPC</title>
		<link>http://ltd.kentw.co.uk/technical/r12-installation/r12-on-a-htpc/</link>
		<comments>http://ltd.kentw.co.uk/technical/r12-installation/r12-on-a-htpc/#comments</comments>
		<pubDate>Sat, 26 Feb 2011 10:10:44 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
				<category><![CDATA[R12 Installation]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[R12]]></category>

		<guid isPermaLink="false">http://ltd.kentw.co.uk/technical/r12-installation/r12-on-a-htpc/</guid>
		<description><![CDATA[Want to access your R12 installation from a client site?
No problem – pick up the R12 installation described earlier and install the hard disk in a HTPC!
For the purpose I bought a Acer AspireRevo R3700 with the following relevant specifications:

Processor Intel® Atom D525 processor 1.8GHz
Memory 2GB DDR3 800MHz
Graphics NVIDIA ION graphics solution
Networking Gigabit Ethernet, Wake-on-LAN [...]]]></description>
			<content:encoded><![CDATA[<p>Want to access your R12 installation from a client site?</p>
<p>No problem – pick up the R12 installation described <a href="http://ltd.kentw.co.uk/technical/r12-installation/r12-vis-installation/" target="_blank">earlier</a> and install the hard disk in a HTPC!<a href="http://ltd.kentw.co.uk/wp-content/uploads/2011/02/image.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 10px 5px 10px 0px; padding-left: 0px; padding-right: 0px; display: inline; float: left; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" align="left" src="http://ltd.kentw.co.uk/wp-content/uploads/2011/02/image_thumb.png" width="199" height="243" /></a></p>
<p>For the purpose I bought a Acer AspireRevo R3700 with the following relevant specifications:</p>
<ul>
<li>Processor Intel® Atom D525 processor 1.8GHz</li>
<li>Memory 2GB DDR3 800MHz</li>
<li>Graphics NVIDIA ION graphics solution</li>
<li>Networking Gigabit Ethernet, Wake-on-LAN ready and WLAN: 802.11b/g/n</li>
</ul>
<p>Replace the built-in harddisk with the R12 harddisk and boot the machine.</p>
<p>The machine can be accessed from your network using <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/" target="_blank">Putty</a> or <a href="http://sourceforge.net/projects/xming/" target="_blank">Xming</a>.</p>
<p>The only problem experienced was to fix the Realtek LAN networking.</p>
<p>A Linux driver is needed for the network card <a href="http://218.210.127.131/downloads/" target="_blank">Realtek R8168</a>. </p>
<p>Unpack the file and follow the instructions in the readme file.</p>
<p>Don’t forget to open port 8000 in your firewall and <a href="http://ltd.kentw.co.uk/technical/r12-installation/r12-fnd-user-password-lock-down/" target="_blank">lock down your FND USER passwords</a>.</p>
<h3>Conclusion</h3>
<p>Performance is good and rather improved thanks to the internal SATA connection which is much faster than using an external USB 2.0 connection. </p>
<p>The dual core Intel Atom D525 netbook CPU seems unimpressed with the R12 technical stack and performs well.</p>
<p>Running one Java client and a concurrent manager report does not stress the CPU.</p>
<p>The R12 system with a single user logged on tops out around 1.7Gb RAM so the built-in 2Gb RAM is plenty.</p>
<p>Note the hyper threading shows as additional CPU’s:</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2011/02/image1.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2011/02/image_thumb1.png" width="644" height="416" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://ltd.kentw.co.uk/technical/r12-installation/r12-on-a-htpc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>R12 &#8211; XML Publisher &#8211; XDO</title>
		<link>http://ltd.kentw.co.uk/functional/xml-publisher/r12-xml-publisher-xdo/</link>
		<comments>http://ltd.kentw.co.uk/functional/xml-publisher/r12-xml-publisher-xdo/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 14:59:57 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
				<category><![CDATA[XML Publisher]]></category>
		<category><![CDATA[R12]]></category>
		<category><![CDATA[XDO]]></category>

		<guid isPermaLink="false">http://ltd.kentw.co.uk/functional/xml-publisher/r12-xml-publisher-xdo/</guid>
		<description><![CDATA[Back to R12 – Upgrade Overview
Placeholder for XML Publisher
]]></description>
			<content:encoded><![CDATA[<p>Back to <a href="http://ltd.kentw.co.uk/functional/r12-upgrade/">R12 – Upgrade Overview</a></p>
<p>Placeholder for XML Publisher</p>
]]></content:encoded>
			<wfw:commentRss>http://ltd.kentw.co.uk/functional/xml-publisher/r12-xml-publisher-xdo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>R12 &#8211; MOAC Security</title>
		<link>http://ltd.kentw.co.uk/technical/security-technical/r12-moac-security/</link>
		<comments>http://ltd.kentw.co.uk/technical/security-technical/r12-moac-security/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 11:14:59 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[MOAC]]></category>
		<category><![CDATA[R12]]></category>

		<guid isPermaLink="false">http://ltd.kentw.co.uk/technical/security-technical/r12-moac-security/</guid>
		<description><![CDATA[Multiple Organizations Access Control (MOAC) security give the possibility of querying or seeing transactions of one or more Operating Units (OU) without changing responsibility.
In 11i we were securing transactions by Operating Unit (OU) only and we would have to choose a corresponding responsibility to see the transactions:

OU1 &#8211; Receivables Manager 
OU2 &#8211; Receivables Manager 
OU3 [...]]]></description>
			<content:encoded><![CDATA[<p>Multiple Organizations Access Control (MOAC) security give the possibility of querying or seeing transactions of one or more Operating Units (OU) without changing responsibility.</p>
<p>In 11i we were securing transactions by Operating Unit (OU) only and we would have to choose a corresponding responsibility to see the transactions:</p>
<ul>
<li>OU1 &#8211; Receivables Manager </li>
<li>OU2 &#8211; Receivables Manager </li>
<li>OU3 &#8211; Receivables Manager </li>
</ul>
<p>In R12 it is now possible to have a shared services responsibility like:</p>
<ul>
<li>ALL – Receivables Manager </li>
</ul>
<p>This new kind of security is based on Security Profiles which is a hierarchy of operating units.</p>
<p>So best practice in R12 is now to secure all responsibilities by Security Profile rather than by Operating Unit.</p>
<p><strong>11i non-MOAC setup:</strong></p>
<table border="1" cellspacing="0" cellpadding="2" width="486">
<tbody>
<tr>
<td valign="top" width="197"><strong></strong></td>
<td valign="top" width="126"><strong>Site Level</strong></td>
<td valign="top" width="161"><strong>Receivables (Vision)</strong></td>
</tr>
<tr>
<td valign="top" width="196"><strong>MO: Default Operating Unit</strong></td>
<td valign="top" width="128"><strong></strong></td>
<td valign="top" width="160">&nbsp;</td>
</tr>
<tr>
<td valign="top" width="195"><strong>MO: Operating Unit</strong></td>
<td valign="top" width="129">Vision Operations</td>
<td valign="top" width="160">Vision Operations</td>
</tr>
<tr>
<td valign="top" width="194"><strong>MO: Security Profile</strong></td>
<td valign="top" width="130">&nbsp;</td>
<td valign="top" width="159">&nbsp;</td>
</tr>
<tr>
<td valign="top" width="194"><strong>GL Set of Books Name</strong></td>
<td valign="top" width="131">&nbsp;</td>
<td valign="top" width="160">Vision Operations</td>
</tr>
</tbody>
</table>
<p>So a global shared service responsibility was not possible in 11i so some companies had very long lists of responsibilities.</p>
<p>Also note in R11i site level setting takes precedence at lower levels so the responsibility level setting in this case is not needed – only if the OU had been different.</p>
<p><strong>R12 MOAC setup:</strong></p>
<table border="1" cellspacing="0" cellpadding="2" width="628">
<tbody>
<tr>
<td valign="top" width="198">&nbsp;</td>
<td valign="top" width="121"><strong>Site Level</strong></td>
<td valign="top" width="163"><strong>Receivables (Vision)</strong></td>
<td valign="top" width="144"><strong>Receivables (Global)</strong></td>
</tr>
<tr>
<td valign="top" width="197"><strong>MO: Default Operating Unit</strong></td>
<td valign="top" width="121">&nbsp;</td>
<td valign="top" width="163">Vision Operations</td>
<td valign="top" width="145">Vision Services</td>
</tr>
<tr>
<td valign="top" width="197"><strong>MO: Operating Unit</strong></td>
<td valign="top" width="121">&nbsp;</td>
<td valign="top" width="163">&nbsp;</td>
<td valign="top" width="146">&nbsp;</td>
</tr>
<tr>
<td valign="top" width="197"><strong>MO: Security Profile</strong></td>
<td valign="top" width="121">Vision Global</td>
<td valign="top" width="162">Vision Operations</td>
<td valign="top" width="147">Vision Global</td>
</tr>
<tr>
<td valign="top" width="196">&nbsp;</td>
<td valign="top" width="121">&nbsp;</td>
<td valign="top" width="163">&nbsp;</td>
<td valign="top" width="148">&nbsp;</td>
</tr>
</tbody>
</table>
<p>Assuming we have a hierarchy like this where OU and security profiles have same names:</p>
<p>&gt; Vision Global    <br />&gt;&gt; Vision US     <br />&gt;&gt;&gt; Vision Operations (OU)     <br />&gt;&gt;&gt; Vision Services (OU)     <br />&gt;&gt; Vision Europe (OU)</p>
<p>We do not need to have a security profile for all branches in the hierarchy above but it is best practice to do so.</p>
<p>So in R12 GL Set of Books Name is gone and you leave <strong>MO: Operating Unit</strong> empty and leave it to the Security Profile.</p>
<p>Note: <strong>MO: Default Operating Unit</strong> is not required and can be left empty however I have had several bugs in R12.1.1 and R12.1.2 related to missing default operating unit in IEX so try leaving it empty first and if you get problems put a default value in this and try again.</p>
<p>So Oracle has created MOAC but forgot a few details here and there.</p>
<p><strong>Mixed R11i/R12 MOAC setup:</strong></p>
<p>Some modules in R12 does not yet fully support MOAC so a mixed setup may be needed.</p>
<p>Luckily Oracle changed the MO profile settings inheritance so the site level setting does NOT override at responsibility level as in R11i – well at least this setup worked in R12.1.1.</p>
<table border="1" cellspacing="0" cellpadding="2" width="628">
<tbody>
<tr>
<td valign="top" width="198">&nbsp;</td>
<td valign="top" width="121"><strong>Site Level</strong></td>
<td valign="top" width="163"><strong>Receivables (Vision)</strong></td>
<td valign="top" width="144"><strong>Receivables (Global)</strong></td>
</tr>
<tr>
<td valign="top" width="197"><strong>MO: Default Operating Unit</strong></td>
<td valign="top" width="121">&nbsp;</td>
<td valign="top" width="163">&nbsp;</td>
<td valign="top" width="145">Vision Operations</td>
</tr>
<tr>
<td valign="top" width="197"><strong>MO: Operating Unit</strong></td>
<td valign="top" width="121">Vision Operations</td>
<td valign="top" width="163">&nbsp;</td>
<td valign="top" width="146">&nbsp;</td>
</tr>
<tr>
<td valign="top" width="197"><strong>MO: Security Profile</strong></td>
<td valign="top" width="121">Vision Global</td>
<td valign="top" width="162">Vision Operations</td>
<td valign="top" width="147">Vision Global</td>
</tr>
<tr>
<td valign="top" width="196">&nbsp;</td>
<td valign="top" width="121">&nbsp;</td>
<td valign="top" width="163">&nbsp;</td>
<td valign="top" width="148">&nbsp;</td>
</tr>
</tbody>
</table>
<p>Using the setup above you will get a site level default OU of “Vision Operations” however at responsibility level the security profile takes precedence so Receivables (Global) will be able to see all OU’s within “Vision Global”. In 11i you would have been locked down to “Vision Operations”.</p>
<h3>Technical</h3>
<h4>11i – View Based Security</h4>
<p>11i used views to secure transactions in individual schemas:</p>
<p>APPS.AR_PAYMENT_SCHEDULES on AR.AR_PAYMENT_SCHEDULES_ALL</p>
<p>With where clause using CLIENT_INFO set from the responsibility context.</p>
<p>In PL/SQL programs you would set:</p>
<ul>
<li>fnd_global.apps_initialize( var_user_id, var_resp_id, var_application_id); </li>
</ul>
<p>and:</p>
<ul>
<li>dbms_application_info.set_client_info(var_organization_id); </li>
</ul>
<h4>R12 – VPD Based Security</h4>
<p>R12 uses the Virtual Private Database (VPD) technology for MOAC security.</p>
<p>Synonym APPS.AR_PAYMENT_SCHEDULES on AR.AR_PAYMENT_SCHEDULES_ALL</p>
<p>With a policy attached to synonym APPS.AR_PAYMENT_SCHEDULES.</p>
<p>In PL/SQL program you <strong>still</strong> need to set:</p>
<ul>
<li>fnd_global.apps_initialize( var_user_id, var_resp_id, var_application_id); </li>
</ul>
<p>and for single OU access:</p>
<ul>
<li>mo_global.set_policy_context(&#8216;S&#8217;,var_organization_id); </li>
</ul>
<p>or for multi OU access:</p>
<ul>
<li>mo_global.set_policy_context(&#8216;M&#8217;,null); </li>
</ul>
<h4>Accessible Organisation Units</h4>
<p>In 11i it was easy to see what access you had:</p>
<ul>
<li>dbms_application_info.read_client_info(var_organization_id); </li>
</ul>
<p>Which would return your current org_id however in R12 you need to do the following:</p>
<ul>
<li>select organization_id      <br />from HR_ORGANIZATION_UNITS       <br />where MO_GLOBAL.CHECK_ACCESS(organization_id)=&#8217;Y&#8217;       <br />; </li>
</ul>
<p>I usually use the following script:</p>
<div id="codeSnippetWrapper">
<div style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px" id="codeSnippet">
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #0000ff">declare</span></pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">  l_user_id number;</pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">  l_responsibility_id number;</pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">  l_application_id number;</pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">  l_organization_id number;</pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #0000ff">begin</span></pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #008000">--  dbms_output.enable;</span></pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">  <span style="color: #0000ff">select</span> application_id,responsibility_id</pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">    <span style="color: #0000ff">into</span> l_application_id,l_responsibility_id</pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">    <span style="color: #0000ff">from</span> fnd_responsibility_tl</pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">    <span style="color: #0000ff">where</span> responsibility_name = <span style="color: #006080">'General Ledger Super User'</span>;</pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">  <span style="color: #0000ff">select</span> user_id</pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">    <span style="color: #0000ff">into</span> l_user_id</pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">    <span style="color: #0000ff">from</span> fnd_user <span style="color: #0000ff">where</span> user_name=<span style="color: #006080">'ORACLE'</span>;</pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">  <span style="color: #0000ff">select</span> organization_id</pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">    <span style="color: #0000ff">into</span> l_organization_id</pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">    <span style="color: #0000ff">from</span> hr_all_organization_units</pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">    <span style="color: #0000ff">where</span> name=<span style="color: #006080">'Vision Operations'</span>;</pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">  fnd_global.apps_initialize(l_user_id,l_responsibility_id,l_application_id);  </pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">  --mo_global.set_policy_context(<span style="color: #006080">'S'</span>,l_organization_id);</pre>
<p><!--CRLF--><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">  mo_global.set_policy_context(<span style="color: #006080">'M'</span>,l_organization_id);</pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #008000">--  dbms_output.put_line('Done...');</span></pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #0000ff">end</span>;</pre>
<p><!--CRLF--></p>
</p></div>
</div>
<h3>Concurrent Requests</h3>
<p>Concurrent request can now be setup to run as in 11i (default) or as MOAC compliant programs.</p>
<p>Use the “System Administrator” OAF screen “Concurrent Program” to set Operating Unit Mode to Single (OU) or Multi (MOAC compliant):</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image15.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb15.png" width="484" height="259" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://ltd.kentw.co.uk/technical/security-technical/r12-moac-security/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>R12 &#8211; Territory Manager &#8211; JTY</title>
		<link>http://ltd.kentw.co.uk/functional/territory-manager/r12-territory-manager-jty/</link>
		<comments>http://ltd.kentw.co.uk/functional/territory-manager/r12-territory-manager-jty/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 18:05:03 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
				<category><![CDATA[Territory Manager]]></category>
		<category><![CDATA[JTY]]></category>
		<category><![CDATA[R12]]></category>
		<category><![CDATA[Upgrade]]></category>

		<guid isPermaLink="false">http://ltd.kentw.co.uk/functional/territory-manager/r12-territory-manager-jty/</guid>
		<description><![CDATA[Back to R12 – Upgrade Overview
In 11i we assign collectors using the profile options and optionally manually override this at account level if needed.
This gets rather hard to manage in large departments especially when people leaves or joins.
However in R12 you have the ability to use Territory Manager which originally is a sales tool for [...]]]></description>
			<content:encoded><![CDATA[<p>Back to <a href="http://ltd.kentw.co.uk/functional/r12-upgrade/">R12 – Upgrade Overview</a></p>
<p>In 11i we assign collectors using the profile options and optionally manually override this at account level if needed.</p>
<p>This gets rather hard to manage in large departments especially when people leaves or joins.</p>
<p>However in R12 you have the ability to use Territory Manager which originally is a sales tool for sales territory administration.</p>
<p>You can now also assign collectors at Customer/Party level however this easily cannot be seen as the collector cannot be stored at this level but is stored in an internal table instead.</p>
<p>The Territory Manager will assign collectors to delinquent customers automatically hence removing the need to manage customer profile class plus account and bill to level overrides. When assigning collectors to customer profile class just use the “Default Collector” – this value will be overridden by the Territory Manager if the customer becomes delinquent.</p>
<p>The article below will mainly concentrate on the use of Territory Manager with <a href="http://ltd.kentw.co.uk/functional/advanced-collections/r12-advanced-collections-iex/" target="_blank">Advanced Collections</a>.</p>
<h3>Overview</h3>
<ul>
<li>Implementing </li>
<li>Territories &#8211; Intro </li>
<li>Resources </li>
<li>Matching Attributes </li>
<li>Territories – Defining </li>
<li>Concurrent Programs </li>
</ul>
<h3>Implementing</h3>
<p>JTY is a bit tricky to get started with in form of an extra layer of role based access control (RBAC).</p>
<p>In order to setup JTY you need to following:</p>
<ul>
<li>Login as user SYSADMIN </li>
<li>Using responsibility “User Management” grant role to yourself: “Security Administrator”      <br />or if not allowed then just grant roles to yourself:       <br />”Collections Territory Administrator”       <br />”Territory Manager Application Administrator” </li>
<li>Also assign yourself responsibilities “User Management” and “Territory Management” </li>
<li>Login as yourself </li>
<li>Using responsibility “User Management” grant roles to yourself (if not done above):      <br />”Collections Territory Administrator”       <br />”Territory Manager Application Administrator” </li>
</ul>
<p>Also be aware that JTY uses full <a href="http://ltd.kentw.co.uk/technical/security-technical/r12-moac-security/" target="_blank">MOAC</a> control so be sure to set correct Security Profile.</p>
<p>Note: You must set the profile option “MO: Default Operating Unit” due to an error in the 12.1.2 Territory Definition form. You should however leave “MO: Operating Unit” blank.</p>
<h3>Territories &#8211; Intro</h3>
<p>Territories in Advanced Collections are used to distribute the UWQ workload amongst collectors in large departments.</p>
<p>A single territory has one or more resources assigned and matching attributes that applies to customer attributes.</p>
<p>Territories can form a hierarchy where we have the following territory types:</p>
<ul>
<li>Child Territory – Contains resources and matching attributes </li>
<li>Parent Territory – Contains one or more child territories </li>
<li>Catch-All Territory – A parent territory containing rules not covered by child territories below </li>
<li>Placeholder Territory – A parent territory not containing rules but only child territories </li>
<li>OU Territory – The top level owning parent territory. There is one per OU accessible</li>
</ul>
<p>All territories can be defined using OAF forms or by using WebADI except for the OU territory which cannot download to Excel. Therefore it is a good idea to have a placeholder territory just below the OU territory.</p>
<p>Territories have the additional following attributes:</p>
<ul>
<li>Effective Date Range – Value inherited from parent territory </li>
<li>Rank – a number where lowest rank wins if customer matches more than one territory.      <br />Normally just assign value: 1       <br />This value is inherited from parent territory </li>
<li>Winners – number of territories a customer can match at any one time.      <br />Default to 1 when left empty. 2 or higher can cause overlapping territories</li>
</ul>
<h3>Resources</h3>
<p>In order to define resources you need to have access to the responsibility “CRM Resource Manager”.</p>
<p>Resources can be any one of:</p>
<ul>
<li>Individual – CRM resource </li>
<li>Group – CRM defined group. Groups can be assigned to multiple individuals </li>
<li>Team – Similar to group but normally used in lead management </li>
</ul>
<p>Groups can be a handy way of managing customers so instead of reassigning individuals to customers you assign groups to customers. This enables you to manage your resources by reassigning individuals between groups rather than between specific customers.</p>
<h3>Matching Attributes</h3>
<p>Matching Attributes are building blocks for creating rules for assigning customers to territories.</p>
<p>Advanced Collections only supports custom made or Customer based matching attributes which is the following:</p>
<ul>
<li>Account Classification (this is actually a sales lead item and does not really work with Collections)</li>
<li>Area Code </li>
<li>City </li>
<li>Country </li>
<li>County </li>
<li>Customer Category </li>
<li>Customer Name </li>
<li>Customer Name Range </li>
<li>Customer Name Range Group </li>
<li>D-U-N-S </li>
<li>Number of Employees </li>
<li>Party Hierarchy </li>
<li>Postal Code </li>
<li>Province </li>
<li>Registry ID </li>
<li>SIC Code </li>
<li>Site Number </li>
<li>State </li>
</ul>
<p>So if there is a need to allocate collectors based on something different than the list above you will need to create a custom matching attribute.</p>
<p>In order to use a matching attribute it must be enabled first:</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image47.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb47.png" width="644" height="405" /></a> </p>
<p>In the above I will be enabling Customer Category and Customer Name Range.</p>
<p>Next step is to define a Territory Type in order to use the enabled attributes above:</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image48.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb48.png" width="644" height="343" /></a>&#160;</p>
<p>So now we have created a territory type allowing the use of Customer Category and Customer Name Range.</p>
<h3>Territory – Defining</h3>
<p>You start from the OU territory and work your way down:</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image49.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb49.png" width="644" height="222" /></a> </p>
<p>Note the search default to what you have in your profile options “MO: Default Operating Unit” however if another OU is desired just change the value in “Operating Unit” and click GO. Do not leave “Operating Unit” blank as that may cause problems in pre-R12.1.4 versions.</p>
<p>Select the operating unit “Vision Operations” and click “Create”:</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image50.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb50.png" width="644" height="72" /></a> </p>
<p>Pick the Territory Type we created earlier and click continue:</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image51.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb51.png" width="644" height="198" /></a> </p>
<p>Lets create the following hierarchy:</p>
<p>Vision Operations – OU Territory    <br />&gt; Top – Placeholder Territory     <br />&gt;&gt; Other     <br />&gt;&gt;&gt; Commercial – Parent     <br />&gt;&gt;&gt;&gt; NameRange1 &#8211; Child     <br />&gt;&gt;&gt;&gt; NameRange2 &#8211; Child     <br />&gt;&gt;&gt; Federal &#8211; Child</p>
</p>
<p>So we want a catch all if a customer has not been assigned to a customer category and we split the commercial customers into two name ranges to level the volume.</p>
<p>So first we create Top:</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image35.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb35.png" width="324" height="213" /></a> </p>
<p>No resources and matching attributes – so just click Finish:</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image52.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb52.png" width="644" height="56" /></a> </p>
<p>Lets create the Other territory:</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image37.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb37.png" width="324" height="208" /></a> </p>
<p>Click Next and add resource:</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image53.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb53.png" width="644" height="118" /></a> </p>
<p>Assigned just one resource as this is the resource for an exception – the catch all.</p>
<p>I will not show how to add resources to the remaining territories…</p>
<p>Click next:</p>
</p>
</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image39.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb39.png" width="324" height="169" /></a> </p>
<p>In spite of what the manual says you need to add a matching attribute for a catch-all territory. To ensure we catch all customers we use name range of 0% to Z%. </p>
<p>To define ranges like the one above you need to follow some basic rules:</p>
<ul>
<li>Always use wildcard “%” so A to Z becomes A% to Z% </li>
<li>Single wildcard range will not work like A% to A% </li>
<li>If range for one letter is needed use: A0% to AZ% </li>
</ul>
<p>Next we define Commercial and Federal territories…</p>
<p>Commercial matching attribute:</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image40.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb40.png" width="322" height="230" /></a></p>
<p>Federal matching attribute: </p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image41.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb41.png" width="324" height="228" /></a> </p>
<p>The we add another two Commercial child territories…</p>
<p>Name range 1:</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image42.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb42.png" width="324" height="169" /></a> </p>
<p>and name range 2:</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image43.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb43.png" width="324" height="168" /></a> </p>
<p>So now we have:</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image45.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb45.png" width="261" height="217" /></a> </p>
<p>Nice and easy…</p>
<h3>Concurrent Programs</h3>
<p>When you have finished creating your territory hierarchy you need to run the following in JTY:</p>
<ul>
<li>Synchronize Territory Assignment Rules </li>
</ul>
<p>This is one of these programs with no real purpose except for if you don’t run it – it will not work.</p>
<p>When you want to assign territories to collectors and customers you must run the following in IEX:</p>
<ul>
<li>IEX: Territory Assignment </li>
</ul>
<p>But ONLY after you have run the IEX: Scoring Engine Harness with Delinquencies Management otherwise you may miss any newly delinquent customers.</p>
]]></content:encoded>
			<wfw:commentRss>http://ltd.kentw.co.uk/functional/territory-manager/r12-territory-manager-jty/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>R12 on two Laptops</title>
		<link>http://ltd.kentw.co.uk/technical/r12-installation/r12-on-two-laptops/</link>
		<comments>http://ltd.kentw.co.uk/technical/r12-installation/r12-on-two-laptops/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 14:41:21 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
				<category><![CDATA[R12 Installation]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[R12]]></category>

		<guid isPermaLink="false">http://ltd.kentw.co.uk/uncategorized/r12-on-two-laptops/</guid>
		<description><![CDATA[So we have installed R12 on a external USB hard disk according to my instructions but now we want more performance and flexibility?
You can either run out and buy a huge server and re-install on that or try to use two laptops instead of one?
Equipment used:

Router – Draytek 2820 
Laptop 1 – R12 server: Lenovo [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image8.png"><img style="border-right-width: 0px; margin: 0px 0px 5px 10px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" align="right" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb8.png" width="324" height="159" /></a>So we have installed R12 on a external USB hard disk according to my <a href="http://ltd.kentw.co.uk/technical/r12-installation/r12-vis-installation/" target="_blank">instructions</a> but now we want more performance and flexibility?</p>
<p>You can either run out and buy a huge server and re-install on that or try to use two laptops instead of one?</p>
<p><strong>Equipment used:</strong></p>
<ul>
<li>Router – Draytek 2820 </li>
<li>Laptop 1 – R12 server: Lenovo Edge 13 with AMD Turion Neo X2 CPU and 4Gb RAM </li>
<li>Laptop 2 – Client: Dell XPS M1530 with Intel T8300 CPU and 6Gb RAM </li>
<li>Hard disk – R12 disk: Akasa eSata/USB2.0 case with Seagate 500Gb 7200RPM </li>
</ul>
<p><strong>Follow this to make it work:</strong></p>
<ol>
<li>In the router set a static IP address for laptop 1 – I use 192.168.1.4 </li>
<li>Connect the hard disk to laptop 1 and boot </li>
<li>So laptop 1 still thinks it is 127.0.0.1 but router makes it 192.168.1.4 for other computers </li>
<li>Start R12 on laptop 1 and ensure everything is up and running nicely </li>
<li>Update hosts file on laptop 2:      <br />192.168.1.4 localhost.localdomain       <br />Localhost is normally the loopback but as the R12 server is using this name we must do the same </li>
<li>In the browser on laptop 2 connect to <a href="http://localhost.localdomain:8000">http://localhost.localdomain:8000</a> </li>
<li>Login and go! </li>
</ol>
<p><strong>Conclusion</strong></p>
<p>R12 Performance is fine only taking 1.7Gb RAM on Laptop 1. </p>
<p>Cpu level is very low as well &lt; 25% overall. </p>
<p>I/O could be better as the USB2 is not that fast.</p>
<p>Fitting the R12 hard disk inside Laptop 1 may boot performance thanks to Sata being 10+ times faster than USB2.</p>
]]></content:encoded>
			<wfw:commentRss>http://ltd.kentw.co.uk/technical/r12-installation/r12-on-two-laptops/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>R12 &#8211; Advanced Collections &#8211; IEX</title>
		<link>http://ltd.kentw.co.uk/functional/advanced-collections/r12-advanced-collections-iex/</link>
		<comments>http://ltd.kentw.co.uk/functional/advanced-collections/r12-advanced-collections-iex/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 10:03:46 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
				<category><![CDATA[Advanced Collections]]></category>
		<category><![CDATA[IEX]]></category>
		<category><![CDATA[R12]]></category>
		<category><![CDATA[Upgrade]]></category>

		<guid isPermaLink="false">http://ltd.kentw.co.uk/functional/advanced-collections/r12-advanced-collections-iex/</guid>
		<description><![CDATA[Back to R12 – Upgrade Overview
This article will however not provide a full overview of IEX but only explain some of the basics to get you started with IEX after moving to R12. Beyond that &#8211; dig into the manual.
News

Bulk XML Delivery per default in R12.1.2
Staged Dunning to be introduced (again) in R12.1.3

11i –&#62; R12 [...]]]></description>
			<content:encoded><![CDATA[<p>Back to <a href="http://ltd.kentw.co.uk/functional/r12-upgrade/">R12 – Upgrade Overview</a></p>
<p>This article will however not provide a full overview of IEX but only explain some of the basics to get you started with IEX after moving to R12. Beyond that &#8211; dig into the manual.</p>
<h3>News</h3>
<ul>
<li>Bulk XML Delivery per default in R12.1.2</li>
<li>Staged Dunning to be introduced (again) in R12.1.3</li>
</ul>
<h3>11i –&gt; R12 Crash Info</h3>
<p>In R12 &#8211; Oracle have removed all collections functionality from AR and thereby forced an upgrade to IEX hence this article will cover both existing and new IEX functionality.</p>
<p>First lesson is – it is near impossible to mimic the 11i functionality so there is no easy upgrade path from 11i to R12.</p>
<p>Second lesson is – IEX uses <a href="http://ltd.kentw.co.uk/technical/security-technical/r12-moac-security/" target="_blank">MOAC</a> security so most IEX settings are global and at site level. Transaction security is then handled by MOAC using security profiles.</p>
<h3>General Need to Know</h3>
<p>A small warning – with R12 the UI is now all over the place:</p>
<ul>
<li>Implementation and super user: Mixed old forms, CRM screens and OAF </li>
<li>User: Forms and CRM screens. CRM screens are made with forms but have a different look and feel </li>
</ul>
<p>So be sure to plan for loads of user training and testing in addition to the implementation effort.</p>
<p>Another warning – setting up Advanced Collections will need a hybrid consultant &#8211; as many areas need both SQL and XML knowledge:</p>
<ul>
<li>Scoring Components contains SQL select statements </li>
<li>Scoring Engine use views to limit transaction scope </li>
<li>Correspondence Template Query is using SQL select statements to create XML tags </li>
<li>Correspondence Templates use XML to produce output </li>
<li>Most output in Advanced Collections uses XML Publisher </li>
<li>Advanced letters may need both XML and XSL-TEXT knowledge </li>
</ul>
<h3>Overview:</h3>
<p>The chapters listed below will give you an overview of the configuration and integration points.</p>
<ul>
<li>New Concepts </li>
<li>Collectors Management (HR and Sales integration) </li>
<li>Collectors Assignment (<a href="http://ltd.kentw.co.uk/functional/territory-manager/r12-territory-manager-jty/" target="_blank">Territory Management</a> Integration) </li>
<li>Collectors Work Queue (Universal Work Queue – UWQ) </li>
<li>Collections Window (eBusiness Center) </li>
<li>Aging (<a href="http://ltd.kentw.co.uk/functional/receivables/r12-receivables-ar/" target="_blank">AR Integration</a>) </li>
<li>Activities (Payments,Promise to Pay,Disputes) </li>
</ul>
<h3>New Concepts</h3>
<p>First of all the word “delinquency” is new to most 11i users and this means an overdue item. </p>
<p>Advanced Collections introduces many new concepts where the main ones are:</p>
<ul>
<li>Operational Level – item level for collections including delinquency determination and correspondence </li>
<li>Scoring – points system calculated by a scoring engine</li>
<li>Delinquency Status – status is one of: Current, Pre-delinquent or Delinquent </li>
<li>Strategies – Handling of delinquencies based on multiple scoring engines</li>
<li>Dunning Plans – Handling of delinquencies using a single scoring engine with associated aging buckets </li>
</ul>
<p>During first setup you will have to make the following main decisions:</p>
<ol>
<li>Operational Level which must be one of: customer, account, bill-to or delinquency (overdue transaction) </li>
<li>Collections method which must be either Strategies or Dunning Plans </li>
</ol>
<h4><strong>Operational Level</strong></h4>
<p>Level defines the operational data level for collection items which includes:</p>
<ul>
<li>Delinquency determination </li>
<li>Work queue items </li>
<li>Correspondence </li>
</ul>
<p>The following operational data level can be chosen:</p>
<ul>
<li>Customer: Party/customer level </li>
<li>Account: Account level </li>
<li>Bill To: Bill To level </li>
<li>Delinquency: Transaction level </li>
</ul>
<p>So if your level is <em>account</em> the customer could have one account being marked as delinquent and one being non-delinquent. Also correspondence will be made at this level including details of transactions by account.</p>
<p>So if you use delinquency level then if a customer has two concurrent delinquencies this customer will receive two separate dunning letters even if overdue on the same day.</p>
<p>In 11i delinquency management was normally conducted at account level thanks to the Account Details screen in the old collections workbench and staged dunning.</p>
<p>The operational data level is set when you setup IEX using the Collections Questionnaire.</p>
<h4><strong>Scoring</strong></h4>
<p>Scoring is a new concept of rating a delinquency based on various factors. The scoring is done by the scoring engine which is run from the concurrent program:</p>
<p><em>IEX: Scoring Engine Harness</em></p>
<p>The scoring engine use scoring components for generating score amounts. </p>
<p>Typical score components could be:</p>
<ul>
<li>Amount due </li>
<li>Days overdue </li>
<li>Time as customer </li>
<li>Number of delinquent transactions </li>
<li>Annual sales amount </li>
</ul>
<p>Example of a scoring component definition:</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image9.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb9.png" width="484" height="290" /></a> </p>
<p>Each score amount is mapped to a score value as the score amount can vary depending on its source and if it is comparable. If you want to score based on transaction amount and days overdue then those two amount will vary and would not be directly comparable however by mapping them into score values they become comparable.</p>
<p>The score engine values are normally within 0 to 100 and when using multiple scoring components these values will be summarised. The score values can be used with weighting &#8211; if enabled – however sum of weights must be 1:</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image10.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb10.png" width="484" height="83" /></a> </p>
<p>For example if you have a score component returning the amount outstanding you would map this to a score value:</p>
<table border="1" cellspacing="0" cellpadding="2" width="299">
<tbody>
<tr>
<td valign="top" width="99"><strong>From</strong></td>
<td valign="top" width="101"><strong>To</strong></td>
<td valign="top" width="97"><strong>Score Value</strong></td>
</tr>
<tr>
<td valign="top" width="98">-999999999</td>
<td valign="top" width="102">100</td>
<td valign="top" width="97">0</td>
</tr>
<tr>
<td valign="top" width="98">100.01</td>
<td valign="top" width="103">10000</td>
<td valign="top" width="97">10</td>
</tr>
<tr>
<td valign="top" width="98">10000.01</td>
<td valign="top" width="104">999999999</td>
<td valign="top" width="97">20</td>
</tr>
</tbody>
</table>
<p>So if you a score component yielding amount due 5000 the score value would be 10 which would be added to any other score value.</p>
<p>&#160;</p>
<p>If additional score components are used this would result in score values being added up.</p>
<p>The score component must always return a number within the range –999999999 to 999999999 and use 2 decimals precision – see example from a seeded setup:</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image11.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb11.png" width="186" height="244" /></a> </p>
<p>The score component uses either an SQL select statement or a PL/SQL function. </p>
<p>Using PL/SQL function enables you to use parameters. </p>
<p>The SQL statement is easier to maintain if used with a custom database view.</p>
<p>Segments &#8211; which is a database view assigned to the scoring engine &#8211; can limit the transactions targeted by the scoring engine:</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image12.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb12.png" width="324" height="125" /></a> </p>
<p>One one segment can be assigned per scoring engine.</p>
<p>The combination of multiple scoring components and multiple scoring engines with different segment assignments gives endless possibilities to meet business requirements.</p>
<h4><strong>Delinquency Status</strong></h4>
<p>Delinquency Status indicates if there is a delinquency for the current score value.</p>
<p>The status is determined by mapping score values to statuses.</p>
<p>Status is one of:</p>
<ul>
<li>Current </li>
<li>Pre-Delinquent </li>
<li>Delinquent </li>
</ul>
<p>One delinquent transactions are scored so the current status will not yield delinquencies.</p>
<p>So using the example above we could do the following mapping of score values:</p>
<table border="1" cellspacing="0" cellpadding="2" width="314">
<tbody>
<tr>
<td valign="top" width="99"><strong>From</strong></td>
<td valign="top" width="101"><strong>To</strong></td>
<td valign="top" width="112"><strong>Score Value</strong></td>
</tr>
<tr>
<td valign="top" width="98">0</td>
<td valign="top" width="102">9.99</td>
<td valign="top" width="112">Current</td>
</tr>
<tr>
<td valign="top" width="98">10</td>
<td valign="top" width="103">19.99</td>
<td valign="top" width="112">Pre-delinquent</td>
</tr>
<tr>
<td valign="top" width="98">20</td>
<td valign="top" width="104">100</td>
<td valign="top" width="112">Delinquent</td>
</tr>
</tbody>
</table>
<p>Example from seeded data:</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image13.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb13.png" width="484" height="263" /></a> </p>
<p>Status is updated when a scoring engine run as long as “Used to determine status” check box is set and “concurrent program” is set to:</p>
<p><em>IEX: Delinquencies Management</em></p>
<h4><strong>Strategies</strong></h4>
<p>Strategies works with two scoring engines:</p>
<ol>
<li>Delinquency determination </li>
<li>Strategy determination </li>
</ol>
<p>A strategy is similar to a 11i dunning set but with the difference that a strategy is based on score values and the outcome is a work item which can be one of:</p>
<ul>
<li>Manual: phone call or review. This is visible as a task in the collectors work queue </li>
<li>Automatic: sending of email, fax or letter. Any sent correspondence is recorded in the transaction history </li>
<li>Workflow: automated customised task </li>
</ul>
<p>The score values is generated by the score engine for strategies defined in similar way as the score engine for delinquency status determination.</p>
<p>The score value is mapped to a strategy:</p>
<table border="1" cellspacing="0" cellpadding="2" width="314">
<tbody>
<tr>
<td valign="top" width="99"><strong>From</strong></td>
<td valign="top" width="101"><strong>To</strong></td>
<td valign="top" width="112"><strong>Score Value</strong></td>
</tr>
<tr>
<td valign="top" width="98">1</td>
<td valign="top" width="102">49.99</td>
<td valign="top" width="112">Hard Strategy</td>
</tr>
<tr>
<td valign="top" width="98">50</td>
<td valign="top" width="103">100</td>
<td valign="top" width="112">Soft Strategy</td>
</tr>
</tbody>
</table>
<p>The strategy will then map to a number of work items:</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image14.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb14.png" width="484" height="260" /></a> </p>
<p>So a typical strategy concurrent run is:</p>
<p><em>IEX: Scoring Engine Harness</em> – for delinquency determination</p>
<p><em>(IEX: Delinquencies Management</em> – run as part of delinquency determination)</p>
<p><em>IEX: Scoring Engine Harness</em> – for strategy determination and work item creation</p>
<p><em>(IEX: Strategy Management</em> – run as part of delinquency determination)</p>
<p><em>IEX: Create Dunning And Broken Promise Call Backs</em> – to create UWQ actions</p>
<p>So Strategies are very flexible and versatile however keep in mind a very open ended module is also harder to configure and test.</p>
<h4><strong>Dunning Plans</strong></h4>
<p>Dunning plans is Oracle’s solution for customers upgrading to 11i without having a license for Advanced Collections.</p>
<p>Dunning plans use only one scoring engine and ties delinquency determination and aging buckets together in one.</p>
<p>Dunning plans has the following limitations (quite a few I would say):</p>
<ul>
<li>Delinquency scoring engine and dunning plan scoring engine is one and same </li>
<li>Scoring engine values are used both for delinquency status determination and aging bucket line determination so it can be tricky to obtain desired functionality </li>
<li>A transaction can <em>only</em> be scored using one scoring engine &#8211; if you add a new scoring engine only new transactions will be scored with this (ouch – this is bad during test) </li>
<li>AR Aging Buckets are used for days overdue determination only &#8211; unless you customise scoring components </li>
<li>Correspondence are assigned to an aging bucket line so every time the aging bucket line are in the score range a letter will be sent – so beware you might want to ensure lines with correspondence only range one day to avoid duplicate letters </li>
<li>Only one aging bucket can be used per dunning plan </li>
<li>Each mapped Aging Bucket Line must yield correspondence and optionally a call – so you cannot have a call-only line unless you use a dummy letter or similar </li>
</ul>
<p>So a typical dunning plan concurrent run is:</p>
<p><em>IEX: Scoring Engine Harness</em> – for delinquency determination</p>
<p><em>IEX: Send Dunnings for delinquent customers</em> – to send correspondence</p>
<p><em>IEX: Create Dunning And Broken Promise Call Backs</em> – to create UWQ actions</p>
<h3>Collectors Management (HRMS and CRM integration)</h3>
<p>In 11i you just needed to have a normal apps user and a collections use &#8211; now in R12 it has become a bit more complicated.</p>
<p>So the Collectors setup in AR is still there to do…</p>
<p>Now you also need to do the following:</p>
<ul>
<li>HR: Create HRMS Employee and assignment </li>
<li>SYS: Assign the HRMS Employee to your apps user </li>
<li>CRM: Create CRM resource by importing the employee into CRM </li>
<li>CRM: Assign collections roles and groups to the CRM resource</li>
<li>CRM: For Territory Management assign Telesales Agent as well</li>
</ul>
<p>For migrating from 11i to R12 you can create a resource for each collector defined in AR:</p>
<p><em>IEX: AR Collectors to Resource Collectors </em></p>
<p>That should help a little bit…</p>
<p>Also collectors can be generated by Collectors Assignment when running:</p>
<p><em>IEX: Territory Assignment</em></p>
<h3>Collectors Assignment (Territory Management Integration)</h3>
<p>In order to assign collectors you can still do as you did in 11i – using collectors at profile class level &#8211; however in R12 you have the additional option of using:</p>
<p><a href="http://ltd.kentw.co.uk/functional/territory-manager/r12-territory-manager-jty/" target="_blank">JTY: Territory Manager</a></p>
<p>This enables you to automatically assign collectors to delinquencies based on rules.</p>
<p>This is actually a sales tool but follow the link and it will explain how to use it for IEX.</p>
<p>To create the assignments run the following concurrent program:</p>
<p><em>IEX: Territory Assignment</em></p>
<h3>Collectors Work Queue (Universal Work Queue – UWQ)</h3>
<p>The UWQ is the collectors work-list which shows delinquencies, calls as tasks to be made and broken promises:</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image16.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb16.png" width="484" height="139" /></a> </p>
<p>The collectors works queue is essentially the Universal Work Queue used by the CRM modules.</p>
<p>Strategy manual work items and dunning plan calls will show up i the collectors work queue as tasks.</p>
<p>The collectors work queue can be customised using EIU% profile options – see a few below:</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image17.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb17.png" width="317" height="244" /></a> </p>
<p>By clicking an item on the work-list the Collections Window opens up…</p>
<h3>Collections Window (eBusiness Center)</h3>
<p>The collections window is essentially the CRM eBusiness Center.</p>
<p>This window shows the customer with tabs showing details:</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image18.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb18.png" width="484" height="300" /></a> </p>
<p>The following tabs are displayed:</p>
<ul>
<li>Profile – Credit overview and metrics     <br /><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image19.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb19.png" width="324" height="123" /></a> </li>
<li>History – Correspondence, adjustments, calls and other interactions     <br /><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image20.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb20.png" width="324" height="122" /></a> </li>
<li>Accounts – Accounts and their details     <br /><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image21.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb21.png" width="324" height="122" /></a> </li>
<li>Transactions – List of delinquent transactions but can also include current and closed transactions     <br /><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image22.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb22.png" width="324" height="122" /></a> </li>
<li>Lifecycle – List of delinquent transactions and their current collection status     <br /><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image23.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb23.png" width="324" height="122" /></a> </li>
<li>Strategy – Current assigned strategy and work items pending or completed     <br /><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image24.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb24.png" width="324" height="122" /></a> </li>
<li>Aging – Delinquent transactions summarised by aging buckets     <br /><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image25.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb25.png" width="324" height="122" /></a> </li>
<li>Notes – Notes can be taken here and can optionally be visible to other collectors     <br /><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image26.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb26.png" width="324" height="122" /></a> </li>
<li>Tasks – List of tasks     <br /><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image27.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb27.png" width="324" height="122" /></a> </li>
</ul>
<h3>Aging</h3>
<p>A familiar term from 11i however yet so different.</p>
<p>Aging and aging buckets as we know them from 11i are still used for displaying or reporting on aging in the following places:</p>
<ul>
<li>Collections Windows – Aging Tab</li>
<li>AR Aging Reports</li>
</ul>
<p>But then the similarities stop.</p>
<p>For Strategies and Dunning Plans aging buckets are sometimes used in Score Components:</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image28.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb28.png" width="484" height="250" /></a> </p>
<p>And also used in Dunning Plans for correspondence assignment:</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image29.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2010/08/image_thumb29.png" width="484" height="128" /></a> </p>
<p>But in very different way than in 11i.</p>
<h3>Activities</h3>
<p>In the Collections Window you can do the following activities:</p>
<ul>
<li>Take Payments or promise to pay </li>
<li>Make adjustments and credit notes</li>
<li>Send correspondence </li>
</ul>
<p>The following payments can be accepted in IEX:</p>
<ul>
<li>Credit Card </li>
<li>Bank Transfer (direct debit) </li>
</ul>
<p>So no debit card payments.</p>
<p>Also bank transfer requires in most countries a signed agreement at beforehand so&#160; this really narrow it down to credit card payment only.</p>
<p>The credit card payment method must be setup in <a href="http://ltd.kentw.co.uk/functional/payments/r12-payments-upgrade/">Payments – IBY</a>.</p>
<p>Activities send confirmation letters automatically:</p>
<ul>
<li>Payment Confirmation</li>
<li>Promise Confirmation</li>
<li>Dispute Confirmation</li>
<li>Adjustment Confirmation<img src="http://localhost.localdomain:8000/OA_HTML/cabo/images/swan/t.gif" width="12" /></li>
<li>Reversal Confirmation</li>
<li>Leasing Invoice Confirmation</li>
<li>Invoice Copy<img src="http://localhost.localdomain:8000/OA_HTML/cabo/images/swan/t.gif" width="12" /></li>
</ul>
<p>All correspondence is created and sent using <a href="http://ltd.kentw.co.uk/functional/xml-publisher/r12-xml-publisher-xdo/" target="_blank">XML Publisher</a>.</p>
<p>The promise to pay will create an event in the UWQ then you run the following concurrent program:</p>
<p><em>IEX: Promise Reconciliation</em></p>
]]></content:encoded>
			<wfw:commentRss>http://ltd.kentw.co.uk/functional/advanced-collections/r12-advanced-collections-iex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>R12 &#8211; General Ledger &#8211; GL</title>
		<link>http://ltd.kentw.co.uk/functional/generalledger/r12-general-ledger-gl/</link>
		<comments>http://ltd.kentw.co.uk/functional/generalledger/r12-general-ledger-gl/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 14:43:15 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
				<category><![CDATA[General Ledger]]></category>
		<category><![CDATA[R12]]></category>
		<category><![CDATA[Upgrade]]></category>

		<guid isPermaLink="false">http://ltd.kentw.co.uk/functional/generalledger/r12-general-ledger-gl/</guid>
		<description><![CDATA[Back to R12 – Upgrade Overview
Overview
In GL there has been a number of changes:

Terminology Changes

Set of Books (SOB) is now Ledgers 
Multiple Reporting Currencies (MRC) is now Reporting Currencies 
Global Intercompany System (GIS) is now Advanced Global Intercompany System (AGIS) 


Obsolete

Global Accounting Engine (AX) replaced by Subledger Accounting 
MRC as a workaround – now fully [...]]]></description>
			<content:encoded><![CDATA[<p>Back to <a href="http://ltd.kentw.co.uk/functional/r12-upgrade/">R12 – Upgrade Overview</a></p>
<h3>Overview</h3>
<p>In GL there has been a number of changes:</p>
<ul>
<li>Terminology Changes
<ul>
<li>Set of Books (SOB) is now Ledgers </li>
<li>Multiple Reporting Currencies (MRC) is now Reporting Currencies </li>
<li>Global Intercompany System (GIS) is now Advanced Global Intercompany System (AGIS) </li>
</ul>
</li>
<li>Obsolete
<ul>
<li>Global Accounting Engine (AX) replaced by <a href="http://ltd.kentw.co.uk/functional/subledger-accounting/r12-subledger-accounting/">Subledger Accounting</a> </li>
<li>MRC as a workaround – now fully integrated as Reporting Currencies </li>
</ul>
</li>
<li>Accounting Setup manager – New central management of legal entities and legers </li>
<li>Legal Entities – now really used </li>
<li>Ledgers – new name and setup for SOBs </li>
<li>Ledger sets – ledger grouping and security feature </li>
<li>Reporting Currencies – MRC has now been cleaned up and is better integrated</li>
<li>Period rates – now all daily rates and managed in same way</li>
<li>Revaluation and Translation – changed functionality </li>
<li>Journal Reconciliation </li>
<li>Advanced Global Intercompany System (AGIS) – changed functionality </li>
</ul>
<h3>Accounting Setup Manager</h3>
<p>The new Accounting Setup Manager simplifies and centralizes accounting-related setup for common financial components that are shared across financial applications. From a central location, you can define your legal entities and their accounting context, such as the ledgers and reporting currencies that perform the accounting for your legal entities.</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2009/10/image25.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2009/10/image_thumb25.png" width="644" height="470" /></a> </p>
<p>The setup steps are:</p>
<ul>
<li>Legal Entity </li>
<li>Primary Ledger </li>
<li>Reporting Currencies </li>
<li>Balancing Segment Value Assignments </li>
<li>Subledger Accounting Options </li>
<li>Operating Units </li>
<li>Intercompany Accounts </li>
<li>Intercompany Balancing Rules </li>
<li>Sequencing </li>
<li>Secondary Ledgers </li>
</ul>
<p>Each of the setup steps is a number of sub screens where some are described later.</p>
<h3>Legal Entities</h3>
<p>Legal Entities part of Accounting Setup Manager now holds important information for both tax and VAT reporting.</p>
<h4>General</h4>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2009/10/image29.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2009/10/image_thumb29.png" width="644" height="367" /></a> </p>
<h4>Registrations</h4>
<h4></h4>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2009/10/image30.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2009/10/image_thumb30.png" width="644" height="367" /></a> </p>
<p>This is where you would put in information for the Corporations Office</p>
<h4>Establishments</h4>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2009/10/image31.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2009/10/image_thumb31.png" width="644" height="354" /></a> </p>
<p>List of all locations</p>
<h4>Balancing Segments</h4>
<p>This is a new important feature that the balancing segment now relates to the legal entity.</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2009/10/image32.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2009/10/image_thumb32.png" width="644" height="354" /></a> </p>
<h3>Primary Ledger</h3>
<p>Ledgers are mostly the same as the old Set Of Books however the setup screens has changed a bit.</p>
<h4>Definition</h4>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2009/10/image26.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2009/10/image_thumb26.png" width="644" height="469" /></a> </p>
<p>Nothing really new here except for the OFA screen.</p>
<h4>Options</h4>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2009/10/image27.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2009/10/image_thumb27.png" width="644" height="469" /></a> </p>
<p>Similar to the old screens in a new wrapping.</p>
<p>Advanced Options</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2009/10/image28.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2009/10/image_thumb28.png" width="644" height="327" /></a> </p>
<p>Again similar to old days except for the new Journal Reconciliation option.</p>
<h3>Ledger Sets and Data Access Sets</h3>
<p>The <strong>Ledger Set</strong> is a great new feature which lets you manage multiple ledgers as one – a especially useful feature for faster closing. However the ledgers must share the following information:</p>
<ul>
<li>Chart of accounts </li>
<li>Calendar/period type combination </li>
</ul>
<p>You can open/close periods for multiple ledgers at once, run recurring journals that update balances for multiple ledgers. So it goes way beyond report sets or cross COA FSG reports.</p>
<h4>Ledger Set</h4>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2009/10/image33.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2009/10/image_thumb33.png" width="644" height="331" /></a> </p>
<p>Strange though – this is a non-OFA screen…having thought that all new features was pushed to OFA.</p>
<p>Similar to the Ledger Set the <strong>Data Access Set</strong> provides security at same level so ledgers must still share the following information:</p>
<ul>
<li>Chart of accounts </li>
<li>Calendar/period type combination </li>
</ul>
<p>The security can be at the following levels:</p>
<ul>
<li>Full Ledger – access to the whole COA </li>
<li>Balancing Segment Value – access to specific balancing segment values </li>
<li>Management Segment Value – access to specific management segment values </li>
</ul>
<p>Note the Management Segment is a new segment qualifier. If you what your cost centre to be secured and used in Data Access sets enable the Cost Centre segment as a Management Segment. Remember if your COA has been used there is a specific procedure for doing this to avoid corruption.</p>
<h4>Data Access Set</h4>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2009/10/image34.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2009/10/image_thumb34.png" width="644" height="374" /></a> </p>
<p>The system always generate a Data Access Set with same name and full access for each:</p>
<ul>
<li>Primary Ledger </li>
<li>Secondary ledger </li>
<li>Ledger Set </li>
<li>Reporting Currency (also creates a Reporting Currency + Source Ledger Data Access Set) </li>
</ul>
<p>Data Access Set security can be combined with Segment Value Security Rules and will work as a logical AND so only where the two overlaps access will be allowed.</p>
<h3>Reporting Currencies</h3>
<p>The reporting currency definition is now comprised from the R11i options for reporting sets of books and the MRC profile options.</p>
<h3>Period Rates</h3>
<p>Period Rates Replaced by Daily Rates and all new OAF screens.</p>
<h4>Currency Rates Manager:</h4>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2009/11/image.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2009/11/image_thumb.png" width="644" height="367" /></a> </p>
<h3>Revaluation and Translation</h3>
<p>Revaluation sets are now usable across ledgers that share a common chart of accounts. In some cases, you may need to enter the secondary tracking segment for revaluation sets involving a secondary tracking segment before running revaluations with upgraded templates.</p>
<p>General Ledger modifies revaluation templates to use corresponding daily rates for those that used period rates prior to the upgrade.</p>
<h3>Journal Reconciliation </h3>
<p>Journals can now be reconciled if an account has been marked as such.</p>
<p>The is a useful feature for clearing accounts or tax accounts which should balance to zero.</p>
<h4>Account Setup</h4>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2009/10/image38.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2009/10/image_thumb38.png" width="644" height="430" /></a> </p>
<p>Note this is a cash clearing account which is a good candidate for journal reconciliation.</p>
<p>So in this case you would enable the segment qualifier “Reconcile” to “Yes”.</p>
<h4>Journal Entry</h4>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2009/10/image35.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2009/10/image_thumb35.png" width="644" height="389" /></a> </p>
<p>Note the new “Reconciliation Reference” field. This is used both for automatic and manual reconciliation.</p>
<h4>Unreconciled Lines</h4>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2009/10/image36.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2009/10/image_thumb36.png" width="644" height="444" /></a> </p>
<p>Search for unreconciled journal lines using the parameters above.</p>
<h4>Reconcile Journal</h4>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2009/10/image37.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2009/10/image_thumb37.png" width="644" height="349" /></a> </p>
<p>No journals to reconcile here &#8211; but you see the point?</p>
]]></content:encoded>
			<wfw:commentRss>http://ltd.kentw.co.uk/functional/generalledger/r12-general-ledger-gl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>R12 &#8211; Receivables &#8211; AR</title>
		<link>http://ltd.kentw.co.uk/functional/receivables/r12-receivables-ar/</link>
		<comments>http://ltd.kentw.co.uk/functional/receivables/r12-receivables-ar/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 14:55:24 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
				<category><![CDATA[Receivables]]></category>
		<category><![CDATA[R12]]></category>
		<category><![CDATA[Upgrade]]></category>

		<guid isPermaLink="false">http://ltd.kentw.co.uk/uncategorized/r12-receivables-ar/</guid>
		<description><![CDATA[Back to R12 – Upgrade Overview
AR are now fully support new modules like E-Business Tax and Subledger Accounting.
Overview:

Integration with E-Business Tax 
Integration with Subledger Accounting 
Centralized Banks and Bank Accounts Definitions 
Integration with Payments for Funds Capture 
Balance Forward Billing 
Late Charges Enhancements 
Customer UI Redesign 
Process Changes 

Integration with E-Business Tax

Release 12 introduces Oracle [...]]]></description>
			<content:encoded><![CDATA[<p>Back to <a href="http://ltd.kentw.co.uk/functional/r12-upgrade/">R12 – Upgrade Overview</a></p>
<p>AR are now fully support new modules like E-Business Tax and Subledger Accounting.</p>
<h3>Overview:</h3>
<ul>
<li>Integration with E-Business Tax </li>
<li>Integration with Subledger Accounting </li>
<li>Centralized Banks and Bank Accounts Definitions </li>
<li>Integration with Payments for Funds Capture </li>
<li>Balance Forward Billing </li>
<li>Late Charges Enhancements </li>
<li>Customer UI Redesign </li>
<li>Process Changes </li>
</ul>
<h3>Integration with E-Business Tax</h3>
<ul>
<p>Release 12 introduces Oracle E-Business Tax to manage tax across the E-Business Suite. During the upgrade, system and customer options used to control tax calculation and tax code defaulting are migrated from Oracle Receivables into Oracle E-Business Tax entities. See E-Business Tax in this appendix for further details.</p>
</ul>
<h3>Integration with Subledger Accounting</h3>
<ul>
<p>Release 12 introduces Subledger Accounting for managing accounting across subledger transactions. Receivables no longer creates any accounting entries. Existing Receivables accounting options and setups remain and affect the generation of accounting distributions in the Receivables data model. However, the accounting distributions are now simply one of many sources for generation of final accounting in the Subledger Accounting module.</p>
</ul>
<h3>Centralized Banks and Bank Accounts Definitions</h3>
<ul>
<p>In Release 12, all internal banks and bank accounts you had defined for your operations are automatically migrated to the central Cash Management entities. Remittance bank accounts are owned by a legal entity rather than by an operating unit.</p>
</ul>
<h3>Integration with Payments for Funds Capture</h3>
<ul>
<p>Release 12 introduces Oracle Payments, which is used by Oracle Receivables for processing funds capture. See Payments in this appendix for further details.</p>
</ul>
<h3>Balance Forward Billing</h3>
<ul>
<p>Release 12 enhances the Release 11i Consolidated Billing Invoices functionality to include more flexible billing cycles, to consolidate invoices at site or account level, and to present Balance Forward Bills using the user-configurable Bill Presentment Architecture.</p>
</ul>
<h3>Late Charges Enhancements</h3>
<ul>
<p>Release 12 enhances the Receivables Late Charges feature to incorporate the Global Interest Invoice setups, charge calculation logic, and charge generation processes. Charges for delinquent payments can now be generated as adjustments, debit memos, or interest invoices. The Interest Invoice Global Descriptive Flexfield is obsolete.</p>
</ul>
<h3>Customer UI Redesign</h3>
<ul>
<p>Release 12 introduces a new HTML user interface for entering and maintaining customer data. See the Oracle Receivables User Guide for further details.</p>
</ul>
<h3>Process Changes</h3>
<ul>
<p>The following features are obsolete in Release 12:</p>
<p>Collections Workbench – The Oracle Advanced Collections module delivers similar functionality. See the Collections Migration white paper and the Oracle Advanced Collections User Guide for further details.</p>
<p>Trade Accounting – Similar functionality is delivered by integration with the Oracle Trade Management module. Trade Management integration is available in Release 11i.</p>
<p>Bill of Exchange – This functionality has been replaced with the Bills Receivable feature. Bills Receivables is available in Release 11i.</p>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://ltd.kentw.co.uk/functional/receivables/r12-receivables-ar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet Explorer 8</title>
		<link>http://ltd.kentw.co.uk/technical/internet-explorer-8/</link>
		<comments>http://ltd.kentw.co.uk/technical/internet-explorer-8/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 11:16:52 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[e-Business Suite]]></category>
		<category><![CDATA[Internet Explorer 8]]></category>
		<category><![CDATA[R12]]></category>

		<guid isPermaLink="false">http://ltd.kentw.co.uk/technical/internet-explorer-8/</guid>
		<description><![CDATA[First Install Java JRE 1.5.0.13 as usual as the download from the Apps server to IE8 would not work – and just install the version required by default so you might need a different version
Then add your Apps server to IE8 security settings:
 
Lower the security setting to medium-low for Trusted Sites:
 

Allow pop-ups from [...]]]></description>
			<content:encoded><![CDATA[<p>First Install Java JRE 1.5.0.13 as usual as the download from the Apps server to IE8 would not work – and just install the version required by default so you might need a different version</p>
<p>Then add your Apps server to IE8 security settings:</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2009/09/image33.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2009/09/image_thumb36.png" width="393" height="346" /></a> </p>
<p>Lower the security setting to medium-low for Trusted Sites:</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2009/09/image34.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2009/09/image_thumb37.png" width="393" height="503" /></a> </p>
</p>
<p>Allow pop-ups from the Apps server:</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2009/09/image35.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2009/09/image_thumb38.png" width="394" height="428" /></a> </p>
<p>When you start the application for the first time you may get one or more warnings like this:</p>
<p><a href="http://ltd.kentw.co.uk/wp-content/uploads/2009/09/image36.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://ltd.kentw.co.uk/wp-content/uploads/2009/09/image_thumb39.png" width="398" height="201" /></a> </p>
<p>Just keep clicking run and it should work.</p>
<p>Note IE8 is not yet supported by Oracle.</p>
]]></content:encoded>
			<wfw:commentRss>http://ltd.kentw.co.uk/technical/internet-explorer-8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

