<?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>Creativz Lab &#187; Oracle Applications</title>
	<atom:link href="http://creativeslab.net/category/oracle-applications/feed" rel="self" type="application/rss+xml" />
	<link>http://creativeslab.net</link>
	<description>weblog for Developers &#38; Designers</description>
	<lastBuildDate>Sun, 18 Jul 2010 16:37:15 +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>Retrieve active users in Oracle Applications</title>
		<link>http://creativeslab.net/retrieve-active-users-in-oracle-applications</link>
		<comments>http://creativeslab.net/retrieve-active-users-in-oracle-applications#comments</comments>
		<pubDate>Fri, 26 Jun 2009 04:19:43 +0000</pubDate>
		<dc:creator>chetanz</dc:creator>
				<category><![CDATA[Oracle Applications]]></category>
		<category><![CDATA[Oracle Database]]></category>
		<category><![CDATA[PL/SQL]]></category>
		<category><![CDATA[active oracle user]]></category>
		<category><![CDATA[Fnd user]]></category>
		<category><![CDATA[Oracle Apps]]></category>
		<category><![CDATA[oracle user]]></category>

		<guid isPermaLink="false">http://creativeslab.net/?p=49</guid>
		<description><![CDATA[retrieve currently active and valid fnd user from oracle applications]]></description>
			<content:encoded><![CDATA[<p>If you want to retrieve only active users from fnd_user table in Oracle Applications, i.e, discarding users who have end_date greater than today&#8217;s date, you can use following query.</p>
<p>SELECT *<br />
      FROM apps.fnd_user<br />
      WHERE trunc(SYSDATE) BETWEEN trunc(start_date) AND<br />
            nvl(end_date,trunc(SYSDATE));</p>
]]></content:encoded>
			<wfw:commentRss>http://creativeslab.net/retrieve-active-users-in-oracle-applications/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to know Request Group name of Concurrent Programs in Oracle Applications</title>
		<link>http://creativeslab.net/how-to-know-request-group-name-of-concurrent-programs-oracle-applications</link>
		<comments>http://creativeslab.net/how-to-know-request-group-name-of-concurrent-programs-oracle-applications#comments</comments>
		<pubDate>Wed, 27 May 2009 13:15:20 +0000</pubDate>
		<dc:creator>chetanz</dc:creator>
				<category><![CDATA[Oracle Applications]]></category>
		<category><![CDATA[Oracle Database]]></category>
		<category><![CDATA[PL/SQL]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software Programming]]></category>
		<category><![CDATA[concurrent program]]></category>
		<category><![CDATA[Oracle Apps]]></category>
		<category><![CDATA[Oracle EBS]]></category>
		<category><![CDATA[Oracle ERP]]></category>
		<category><![CDATA[request group]]></category>

		<guid isPermaLink="false">http://creativeslab.net/?p=30</guid>
		<description><![CDATA[knowing request group name to which a concurrent program is associated helps in oracle apps.....]]></description>
			<content:encoded><![CDATA[<p>To know request group name, to which a concurrent program is associated and also executable name of the concurrent program, following query will be useful. For seeded concurrent programs it is known to everybody, but for custom concurrent programs it will be very difficult to memorize.</p>
<p>select<br />
fg.request_group_name,e.executable_name,responsibility_key,user_concurrent_program_name<br />
from fnd_responsibility r,<br />
fnd_concurrent_programs_tl p,<br />
fnd_request_group_units u,<br />
fnd_request_groups fg,<br />
fnd_executables e,<br />
fnd_concurrent_programs fcp<br />
where r.request_group_id=u.request_group_id<br />
and u.request_group_id = fg.request_group_id<br />
and u.request_unit_id = p.concurrent_program_id<br />
and fcp.executable_id = e.executable_id<br />
and user_concurrent_program_name like &#8216;%Period close value summary%&#8217;<br />
and fcp.concurrent_program_id = p.concurrent_program_id</p>
]]></content:encoded>
			<wfw:commentRss>http://creativeslab.net/how-to-know-request-group-name-of-concurrent-programs-oracle-applications/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Find concurrent programs associated with responsibility in Oracle Applications</title>
		<link>http://creativeslab.net/how-to-find-concurrent-programs-associated-with-responsibility-in-oracle-applications</link>
		<comments>http://creativeslab.net/how-to-find-concurrent-programs-associated-with-responsibility-in-oracle-applications#comments</comments>
		<pubDate>Wed, 27 May 2009 10:46:03 +0000</pubDate>
		<dc:creator>chetanz</dc:creator>
				<category><![CDATA[Oracle Applications]]></category>
		<category><![CDATA[Oracle Database]]></category>
		<category><![CDATA[Oracle Inventory]]></category>
		<category><![CDATA[PL/SQL]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[concurrent program]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Oracle EBS]]></category>
		<category><![CDATA[Oracle ERP]]></category>
		<category><![CDATA[responsibility]]></category>

		<guid isPermaLink="false">http://creativeslab.net/?p=28</guid>
		<description><![CDATA[Know concurrent programs associated with responsibility using responsiblity key]]></description>
			<content:encoded><![CDATA[<p>Oracle ERP system has n number of seeded concurrent programs and while implementation custom concurrent programs may come.</p>
<p>To find out various concurrent programs associated with certain responsibility, following query will be useful.</p>
<p>select user_concurrent_program_name  from fnd_concurrent_programs_tl<br />
where concurrent_program_id in (<br />
select request_unit_id from fnd_request_group_units<br />
where request_group_id in (<br />
select request_group_id from fnd_request_groups where request_group_id in (<br />
select request_group_id from fnd_responsibility where responsibility_key like &#8216;%ORACLE_INVENTORY%&#8217;)<br />
));</p>
]]></content:encoded>
			<wfw:commentRss>http://creativeslab.net/how-to-find-concurrent-programs-associated-with-responsibility-in-oracle-applications/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to find Scheduled Concurrent Programs in Oracle Applications</title>
		<link>http://creativeslab.net/how-to-find-scheduled-concurrent-programs-oracle-applications</link>
		<comments>http://creativeslab.net/how-to-find-scheduled-concurrent-programs-oracle-applications#comments</comments>
		<pubDate>Wed, 27 May 2009 06:45:51 +0000</pubDate>
		<dc:creator>chetanz</dc:creator>
				<category><![CDATA[Oracle Applications]]></category>
		<category><![CDATA[Oracle Inventory]]></category>
		<category><![CDATA[Oracle Purchasing]]></category>
		<category><![CDATA[concurrent programs]]></category>
		<category><![CDATA[erp]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Oracle Apps]]></category>
		<category><![CDATA[Oracle ERP]]></category>
		<category><![CDATA[schedules]]></category>
		<category><![CDATA[scheduling]]></category>

		<guid isPermaLink="false">http://creativeslab.net/?p=23</guid>
		<description><![CDATA[Know when a concurrent program is scheduled in Oracle Apps]]></description>
			<content:encoded><![CDATA[<p>There will be so many concurrent programs in Oracle Apps, that are scheduled to perform various tasks. Sometimes it will be very difficult to memorize concurrent programs scheduled in various modules of Oracle Apps unless a proper documentation is maintained.</p>
<p>To find out concurrent programs scheduled go to &#8216;Find Requests&#8217; window using &#8216;System Administrator&#8217; responsibility.</p>
<p>a) Click on &#8216;Specific Requests&#8217; radio button.</p>
<p>b) select &#8216;Scheduled&#8217; in Status drop-down as shown in following screen shot.</p>
<p><img class="alignnone size-medium wp-image-24" src="http://creativeslab.net/wp-content/uploads/2009/05/concscree1-300x232.gif" alt="concscree1" width="300" height="232" /></p>
<p>c) Click on &#8216;Find&#8217; button.</p>
<p>All scheduled requests will be shown as in following screen shot.<img class="alignnone size-medium wp-image-25" src="http://creativeslab.net/wp-content/uploads/2009/05/concscreen2-300x191.gif" alt="concscreen2" width="300" height="191" /></p>
<p>d) Select any concurrent program and click on &#8216;View Details&#8217; button, and you can seen concurrent program schedule details as follows.</p>
<p><img class="alignnone size-medium wp-image-26" src="http://creativeslab.net/wp-content/uploads/2009/05/concscreen3-300x192.gif" alt="concscreen3" width="300" height="192" /></p>
<p>Similary using &#8216;Phase&#8217; drop down in &#8216;Find Requests&#8217; window, you can find out all concurrent programs which are either in &#8216;Running&#8217;, &#8216;Completed&#8217;, &#8216;Inactive&#8217; or &#8216;Pending&#8217; state.</p>
]]></content:encoded>
			<wfw:commentRss>http://creativeslab.net/how-to-find-scheduled-concurrent-programs-oracle-applications/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>File contents into BLOB in Oracle Database, using PL/SQL</title>
		<link>http://creativeslab.net/file-contents-into-blob-in-oracle-database-using-plsql</link>
		<comments>http://creativeslab.net/file-contents-into-blob-in-oracle-database-using-plsql#comments</comments>
		<pubDate>Tue, 16 Dec 2008 00:19:54 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Oracle Applications]]></category>
		<category><![CDATA[Oracle Database]]></category>
		<category><![CDATA[PL/SQL]]></category>
		<category><![CDATA[BLOB]]></category>
		<category><![CDATA[file BLOB]]></category>
		<category><![CDATA[Oracle Applicaions]]></category>
		<category><![CDATA[Oracle Technical]]></category>
		<category><![CDATA[pl/sql procedure]]></category>
		<category><![CDATA[PL/SQL. file reading]]></category>

		<guid isPermaLink="false">http://creativeslab.net/?p=15</guid>
		<description><![CDATA[Often there will be a requirement for reading .out files generated by Oracle Applications and converting into pdf files and send as mail attachment.
 
Here is a sample PL/SQL procedure which can read a file from a specified location, into a BLOB and returns it.
 
The calling program can convert this blob data into any form.
 
Calling program [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small;font-family: Times New Roman">Often there will be a requirement for reading .out files generated by Oracle Applications and converting into pdf files and send as mail attachment.</span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small;font-family: Times New Roman"> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small;font-family: Times New Roman">Here is a sample PL/SQL procedure which can read a file from a specified location, into a BLOB and returns it.</span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small;font-family: Times New Roman"> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small;font-family: Times New Roman">The calling program can convert this blob data into any form.</span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small;font-family: Times New Roman"> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small;font-family: Times New Roman">Calling program can be another PL/SQL procedure or a Java Program or some other language program.</span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small;font-family: Times New Roman"> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small;font-family: Times New Roman">Note: following procedure works only on Oracle Database.</span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small;font-family: Times New Roman"> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small;font-family: Times New Roman">=============================================================</span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small;font-family: Times New Roman"> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small;font-family: Times New Roman">create or replace procedure READ_FILE_TO_BLOB(</span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt 1.5in"><span style="font-size: small;font-family: Times New Roman">dest_lob_return OUT BLOB, </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt 1.5in"><span style="font-size: small"><span style="font-family: Times New Roman">file_name IN VARCHAR2)</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small"><span style="font-family: Times New Roman">is</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span><span style="font-size: small;font-family: Times New Roman">   </span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small"><span style="font-family: Times New Roman"><span>   </span><span> </span>&#8211; BFILE_LOC is the directory created, with help of </span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small"><span style="font-family: Times New Roman"><span>    </span>&#8211;create directory BFILE_LOC as &#8216;/export/home/test/d01/oratst/testcomn/admin/out/TEST_xxxxxxr06/&#8217;;</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small"><span style="font-family: Times New Roman"><span>    </span>src_lob<span>  </span>BFILE := BFILENAME(‘BFILE_LOC’, file_name);<span>  </span></span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small"><span style="font-family: Times New Roman"><span>    </span>dest_lob BLOB;</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small"><span style="font-family: Times New Roman"><span>    </span>v_lob_len INTEGER;</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small"><span style="font-family: Times New Roman"><span>    </span>v_offset NUMBER := 1; </span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small"><span style="font-family: Times New Roman"><span>    </span>v_buffer<span>       </span>RAW(20);</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small"><span style="font-family: Times New Roman"><span>    </span>v_buffer_size<span>  </span>BINARY_INTEGER := 20;</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small;font-family: Times New Roman"> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small"><span style="font-family: Times New Roman">BEGIN</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small"><span style="font-family: Times New Roman"><span>   </span></span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small"><span style="font-family: Times New Roman"><span>   </span>DBMS_LOB.CREATETEMPORARY(dest_lob, TRUE, DBMS_LOB.SESSION); </span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small"><span style="font-family: Times New Roman"><span>   </span>DBMS_LOB.OPEN(src_lob, DBMS_LOB.LOB_READONLY);</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small"><span style="font-family: Times New Roman"><span>   </span>DBMS_LOB.LoadFromFile( DEST_LOB =&gt; dest_lob,</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small"><span style="font-family: Times New Roman"><span>     </span><span>                     </span>SRC_LOB<span>  </span>=&gt; src_lob,</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small"><span style="font-family: Times New Roman"><span>                          </span>AMOUNT<span>   </span>=&gt; DBMS_LOB.GETLENGTH(src_lob) );</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small"><span style="font-family: Times New Roman"><span>   </span>DBMS_LOB.CLOSE(src_lob);</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small"><span style="font-family: Times New Roman"><span>   </span>dest_lob_return := dest_lob;</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small"><span style="font-family: Times New Roman"><span>   </span></span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small;font-family: Times New Roman">end READ_FILE_TO_BLOB;</span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small;font-family: Times New Roman"> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-size: small;font-family: Times New Roman">===============================================================</span></p>
]]></content:encoded>
			<wfw:commentRss>http://creativeslab.net/file-contents-into-blob-in-oracle-database-using-plsql/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What If Receiving Trasaction Processor Fails in Oracle Applications</title>
		<link>http://creativeslab.net/if-receiving-trasaction-processor-fails</link>
		<comments>http://creativeslab.net/if-receiving-trasaction-processor-fails#comments</comments>
		<pubDate>Tue, 16 Dec 2008 05:00:59 +0000</pubDate>
		<dc:creator>chetanz</dc:creator>
				<category><![CDATA[Oracle Applications]]></category>
		<category><![CDATA[Oracle Purchasing]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[PO interface]]></category>
		<category><![CDATA[Purchasing]]></category>
		<category><![CDATA[Receiving Interface Errors Report]]></category>
		<category><![CDATA[Receiving Open Interface]]></category>
		<category><![CDATA[Receiving Transaction Processor]]></category>
		<category><![CDATA[receving transactions]]></category>
		<category><![CDATA[ROI]]></category>

		<guid isPermaLink="false">http://creativeslab.net/2008/12/16/if-receiving-trasaction-processor-fails/</guid>
		<description><![CDATA[If receiving transaction processor fails to receive, inspect or deliver lines in Receiving Open Interface. You can run Receiving Interface Errors Report to know the exact error.
Instead of running Receiving Interface Errors Report concurrent Program, you can simply query the error from Oracle Database in po_interface_errors table.
Use following query:
select * from apps.po_interface_errors where request_id = 1192033 [...]]]></description>
			<content:encoded><![CDATA[<p>If receiving transaction processor fails to receive, inspect or deliver lines in Receiving Open Interface. You can run Receiving Interface Errors Report to know the exact error.</p>
<p>Instead of running Receiving Interface Errors Report concurrent Program, you can simply query the error from Oracle Database in po_interface_errors table.</p>
<p>Use following query:</p>
<p><strong>select * from apps.po_interface_errors where request_id = 1192033 order by creation_date desc;</strong></p>
<p>where parameter request_id is , request id of concurrent program receiving transaction processor.</p>
]]></content:encoded>
			<wfw:commentRss>http://creativeslab.net/if-receiving-trasaction-processor-fails/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Subinventory creation in Oracle Applications</title>
		<link>http://creativeslab.net/subinventory-creation-in-oracle-applications</link>
		<comments>http://creativeslab.net/subinventory-creation-in-oracle-applications#comments</comments>
		<pubDate>Sun, 14 Dec 2008 23:28:18 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Oracle Applications]]></category>
		<category><![CDATA[Oracle Inventory]]></category>
		<category><![CDATA[Inventory]]></category>
		<category><![CDATA[Oracle Apps]]></category>
		<category><![CDATA[Oracle E-Business Suite]]></category>
		<category><![CDATA[Oracle Subinventory]]></category>
		<category><![CDATA[Subinventory]]></category>

		<guid isPermaLink="false">http://creativeslab.net/?p=12</guid>
		<description><![CDATA[Subinventories are logical seperations of material inventory such as raw material, finished goods and defective material. Material in an organization is held in Subinventory, so we need to define subinventories for an organization.
To Define Subinventory:
1) loginto Oracle Applications.
2) Click on path Inventory -&#62; setup: organizations -&#62; Subinventories.
3) select the organization in which you are going [...]]]></description>
			<content:encoded><![CDATA[<p>Subinventories are logical seperations of material inventory such as raw material, finished goods and defective material. Material in an organization is held in Subinventory, so we need to define subinventories for an organization.</p>
<p>To Define Subinventory:</p>
<p>1) loginto Oracle Applications.</p>
<p>2) Click on path Inventory -&gt; setup: organizations -&gt; Subinventories.</p>
<p>3) select the organization in which you are going to create subinvenotry, in organizations window displayed.</p>
<p>4) Click on New button in Subinventories Summary window displayed.</p>
<p>5) Subinventories window will appear.</p>
<p><a href="http://professionalinn.files.wordpress.com/2008/05/subinventory.jpg"><img class="alignnone size-medium wp-image-21" src="http://professionalinn.wordpress.com/files/2008/05/subinventory.jpg?w=300" alt="" width="300" height="237" /></a></p>
<p>6) Enter unique name for subinventory.</p>
<p>7) Status field: Indicate material status of this subinventory, which controls all material transactions within this subinventory.</p>
<p> <img src='http://creativeslab.net/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> Default Cost Group: Assign a default cost group value. This cost group will be there with subinventory until you change cost group. If, cost group assignement material rule fails for a received material, then this default cost group will be assigned.</p>
<p>9) Type field: Select the type of the subinventory Storage or Receiving.</p>
<p>Storage: Designates subinventory as Storage Subinventory.</p>
<p>Receiving: Designates subinventory as Receiving Subinventory, can be used for only Receiving Material. Material in this type of subinventory can&#8217;t be onhand or reserved.</p>
<p><strong>Subinventory Parameters:</strong></p>
<p><strong>Quantity Tracked: </strong>indicates whether each transaction for this subinventory updates quantity on hand for subinventory.</p>
<p><strong>Asset Subinventory: </strong>Indicates whether to maintain value of this subinventory on balance sheet. Update this value only if there is no on hand qunatity for subinventory.</p>
<p><strong>Depriciable: </strong>Indicates whether subinventory is depriciable.</p>
<p><strong>Enable PAR Level Planning: </strong>Indicates Periodic Automatic Replenishment is enabled. If this is enabled min-max planning can&#8217;t be performed on this subinventory.</p>
<p><strong>Locator Control: </strong>Select locator control only if this organization has locator control parameter as Determined at Subinventory Level. Updates on this field are allowed only if there is no on hand quantity available.</p>
<div><span style="font-size: x-small;font-family: PalatinoLinotype-Italic-Identity-H">Locator Control Options:</span></div>
<div></div>
<div><span style="font-size: x-small;font-family: PalatinoLinotype-Italic-Identity-H"></span></div>
<p><span style="font-size: x-small;font-family: PalatinoLinotype-Italic-Identity-H"><span style="font-size: x-small;font-family: PalatinoLinotype-Italic-Identity-H"></p>
<ul>
<li>
<div><strong>None</strong></div>
</li>
</ul>
<p> </p>
<p></span></span></p>
<ul>
<li>
<div><span style="font-size: x-small;font-family: PalatinoLinotype-Roman-Identity-H">: Inventory transactions within this subinventory do not require locator information.</span></div>
</li>
<div></div>
<div></div>
<div><span style="font-size: x-small;font-family: PalatinoLinotype-Italic-Identity-H"></span></div>
<p><span style="font-size: x-small;font-family: PalatinoLinotype-Italic-Identity-H"><span style="font-size: x-small;font-family: PalatinoLinotype-Italic-Identity-H"></p>
<li>
<div><strong>Prespecified</strong></div>
</li>
<p> </p>
<p></span></span></p>
<li>
<div><span style="font-size: x-small;font-family: PalatinoLinotype-Roman-Identity-H">: Inventory transactions within this subinventory require you to enter a valid predefined locator for each item.</span></div>
</li>
<div></div>
<div></div>
<div><span style="font-size: x-small;font-family: PalatinoLinotype-Italic-Identity-H"></span></div>
<p><span style="font-size: x-small;font-family: PalatinoLinotype-Italic-Identity-H"><span style="font-size: x-small;font-family: PalatinoLinotype-Italic-Identity-H"></p>
<li>
<div><strong>Dynamic entry</strong></div>
</li>
<p> </p>
<p></span></span></p>
<li>
<div><span style="font-size: x-small;font-family: PalatinoLinotype-Roman-Identity-H"><strong>:</strong> Inventory transactions within this subinventory require you to enter a locator for each item. You may choose a valid predefined locator, or define a locator dynamically at the time of transaction.</span></div>
</li>
<div></div>
<div></div>
<div><span style="font-size: x-small;font-family: PalatinoLinotype-Italic-Identity-H"></span></div>
<p><span style="font-size: x-small;font-family: PalatinoLinotype-Italic-Identity-H"><span style="font-size: x-small;font-family: PalatinoLinotype-Italic-Identity-H"></p>
<li>
<div><strong>Item level</strong></div>
</li>
<p> </p>
<p></span></span></p>
<li>
<div><span style="font-size: x-small;font-family: PalatinoLinotype-Roman-Identity-H">: Inventory transactions use locator control information that you define at the item level.</span></div>
</li>
</ul>
<p align="left"><span style="font-size: x-small"><strong>Default Locator Status </strong>field will be available only if Warehouse Management installed.</span></p>
<p align="left"><span style="font-size: x-small"><strong>Inactive On: </strong>Optionally enter date on which subinventory goes inactive.</span></p>
<p align="left"><span style="font-size: x-small"><strong>Location: </strong>Enter location for subinventory, if it is receiving subinventory field is mandatory.</span></p>
<p align="left"><span style="font-size: x-small"><strong>Picking UOM: </strong><span style="font-size: x-small;font-family: PalatinoLinotype-Roman-Identity-H">Indicate the picking unit of measure used to store material in this subinventory.</span></span></p>
<p align="left"><span style="font-size: x-small"><span style="font-size: x-small;font-family: PalatinoLinotype-Roman-Identity-H"><strong>Picking UOM Default Replenishment: </strong><span style="font-size: x-small;font-family: PalatinoLinotype-Roman-Identity-H">Select the appropriate Default Replenishment Count Type from the drop downlist.</span></span></span></p>
<p align="left"><span style="font-size: x-small"><span style="font-size: x-small;font-family: PalatinoLinotype-Roman-Identity-H"><span style="font-size: x-small;font-family: PalatinoLinotype-Roman-Identity-H">Optionally enter all Lead Times.</span></span></span></p>
<p align="left"><span style="font-size: x-small"><span style="font-size: x-small;font-family: PalatinoLinotype-Roman-Identity-H"><span style="font-size: x-small;font-family: PalatinoLinotype-Roman-Identity-H"><strong>Sourcing Type: </strong>Select Source Type for Item Replenishment.</span></span></span></p>
<div><span style="font-size: x-small"><span style="font-size: x-small;font-family: PalatinoLinotype-Roman-Identity-H"><span style="font-size: x-small;font-family: PalatinoLinotype-Roman-Identity-H"></span></span></span></div>
<div><span style="font-size: x-small"><span style="font-size: x-small;font-family: PalatinoLinotype-Roman-Identity-H"><span style="font-size: x-small;font-family: PalatinoLinotype-Roman-Identity-H"></span></span></span></div>
<div><span style="font-size: x-small"><span style="font-size: x-small;font-family: PalatinoLinotype-Roman-Identity-H"><span style="font-size: x-small;font-family: PalatinoLinotype-Roman-Identity-H"><span style="font-size: x-small;font-family: PalatinoLinotype-Italic-Identity-H"></span></span></span></span></div>
<p><span style="font-size: x-small"><span style="font-size: x-small;font-family: PalatinoLinotype-Roman-Identity-H"><span style="font-size: x-small;font-family: PalatinoLinotype-Roman-Identity-H"><span style="font-size: x-small;font-family: PalatinoLinotype-Italic-Identity-H"><span style="font-size: x-small;font-family: PalatinoLinotype-Italic-Identity-H"></p>
<ul>
<li>
<div><strong>Inventory</strong></div>
</li>
</ul>
<p> </p>
<p></span></span></p>
<ul>
<li>
<div><span style="font-size: x-small;font-family: PalatinoLinotype-Roman-Identity-H">: Replenish items internally, from another organization.</span></div>
</li>
<div></div>
<div></div>
<div><span style="font-size: x-small;font-family: PalatinoLinotype-Italic-Identity-H"></span></div>
<p><span style="font-size: x-small;font-family: PalatinoLinotype-Italic-Identity-H"><span style="font-size: x-small;font-family: PalatinoLinotype-Italic-Identity-H"></p>
<li>
<div><strong>Supplier</strong></div>
</li>
<p> </p>
<p></span></span></p>
<li>
<div><span style="font-size: x-small;font-family: PalatinoLinotype-Roman-Identity-H">: Replenish items externally, from a supplier you specify in Oracle Purchasing.</p>
<li>
<div><span style="font-size: x-small;font-family: PalatinoLinotype-Roman-Identity-H">: Replenish items internally, from another subinventory in the same inventory organization.</span></div>
</li>
<div></div>
<div></div>
<div><span style="font-size: x-small;font-family: PalatinoLinotype-Roman-Identity-H"></span></div>
<p><span style="font-size: x-small;font-family: PalatinoLinotype-Roman-Identity-H"><span style="font-size: x-small;font-family: PalatinoLinotype-Roman-Identity-H"></p>
<p align="left"><strong>Organization: </strong>Select the organization used to replenish items in this subinventory. You must enter a value in this field if you entered</p>
<p> </p>
<p></span></span></p>
<p align="left"><span style="font-size: x-small;font-family: PalatinoLinotype-Italic-Identity-H"><strong>Inventory</strong> </span></p>
<div><span style="font-size: x-small;font-family: PalatinoLinotype-Roman-Identity-H">in the Type field. The organization you select must have a shipping network defined.</span></div>
<div></div>
<p><span style="font-size: x-small;font-family: PalatinoLinotype-Roman-Identity-H"></p>
<p align="left"><strong>SubInventory:</strong> Select the subinventory used to replenish items in this subinventory. You must enter a value in this field if you entered your current organization in the Organization field.</p>
<p> </p>
<p></span></p>
<p align="left"> </p>
<p> </p>
<p></span></div>
</li>
</ul>
<p> </p>
<p></span></span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://creativeslab.net/subinventory-creation-in-oracle-applications/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>User Creation in Oracle Applications</title>
		<link>http://creativeslab.net/user-creation-in-oracle-applications</link>
		<comments>http://creativeslab.net/user-creation-in-oracle-applications#comments</comments>
		<pubDate>Sun, 14 Dec 2008 23:25:20 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Oracle Applications]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[Fnd user]]></category>
		<category><![CDATA[Fnd User creation]]></category>
		<category><![CDATA[fnd user in apps]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Oracle Apps]]></category>
		<category><![CDATA[Oracle Apps User Creation]]></category>
		<category><![CDATA[Oracle E-Business Suite]]></category>
		<category><![CDATA[Oracle Education]]></category>

		<guid isPermaLink="false">http://creativeslab.net/?p=10</guid>
		<description><![CDATA[Pre-Requisite:
           Only users having System Administrator previliges can create new users in Oracle E-Business  Suite.
STEPS:
   1) Login to Oracle E-Business Suite using System Administrator Responsibility.
   2) Click on menu link Security: user &#8211;&#62; Define, you will be shown below screen.
 [...]]]></description>
			<content:encoded><![CDATA[<h3>Pre-Requisite:</h3>
<p>           Only users having System Administrator previliges can create new users in Oracle E-Business  Suite.</p>
<h3>STEPS:</h3>
<p>   1) Login to Oracle E-Business Suite using System Administrator Responsibility.</p>
<p>   2) Click on menu link <strong>Security: user &#8211;&gt; Define, </strong>you will be shown below screen.</p>
<p>        <img style="vertical-align:middle" src="http://professionalinn.files.wordpress.com/2008/04/user.jpg" alt="" /></p>
<p>   3) Enter UserName in <strong>User Name</strong> field.</p>
<p>  4) Enter Password in <strong>Password</strong> field.</p>
<p>      <strong>Note: Password should be entered twice, so that system will confirm it.</strong></p>
<p>  5) Associate this user to any person from <strong>Person</strong> field LOV. (Optional)</p>
<p>  6) We can set user password to be expire in certain days or never expired using <strong>&#8216;Password Expiration&#8217;</strong> Section.</p>
<p>  7) Add responsibilities for current user, in <strong>Direct Responsiblities</strong> tab.</p>
<p>  8 ) Click on <strong>Save</strong> Button.</p>
<p>  New user is created to access Oracle E-Business Suite.                             </p>
]]></content:encoded>
			<wfw:commentRss>http://creativeslab.net/user-creation-in-oracle-applications/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>About Oracle XML Publisher</title>
		<link>http://creativeslab.net/about-oracle-xml-publisher</link>
		<comments>http://creativeslab.net/about-oracle-xml-publisher#comments</comments>
		<pubDate>Sun, 14 Dec 2008 23:22:19 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Oracle Applications]]></category>
		<category><![CDATA[XML Publisher]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Oracle Apps]]></category>
		<category><![CDATA[Oracle E-Business Suite]]></category>
		<category><![CDATA[Oracle Education]]></category>
		<category><![CDATA[Oracle XML Publisher]]></category>

		<guid isPermaLink="false">http://creativeslab.net/?p=8</guid>
		<description><![CDATA[Oracle&#8217;s new approach to report design and publishing by integrating familiar desktop work processing tools with existing E-Business Suite data reporting, is Oracle XML Publisher.
It is a template based publishing solution developed with Oracle E-Business Suite.
XML Publisher leverages standard, well-known technologies and tools, so you can rapidly develop and maintain custom report formats.
The flexiblity of [...]]]></description>
			<content:encoded><![CDATA[<p>Oracle&#8217;s new approach to report design and publishing by integrating familiar desktop work processing tools with existing E-Business Suite data reporting, is Oracle XML Publisher.</p>
<p>It is a template based publishing solution developed with Oracle E-Business Suite.</p>
<p>XML Publisher leverages standard, well-known technologies and tools, so you can rapidly develop and maintain custom report formats.</p>
<p>The flexiblity of XML Publisher is seperation of presentation of the report from its data structure, data is still maintained by E-Business Suite, but now we can design and control how the report output files will be presented in seperate template files.</p>
<p><strong>How it will be done:</strong></p>
<p>At runtime XML Publisher merges designed template with report data to create variety of outputs, that business needs.</p>
]]></content:encoded>
			<wfw:commentRss>http://creativeslab.net/about-oracle-xml-publisher/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XML Publisher last page only content</title>
		<link>http://creativeslab.net/xml-publisher-last-page-only-content</link>
		<comments>http://creativeslab.net/xml-publisher-last-page-only-content#comments</comments>
		<pubDate>Sun, 14 Dec 2008 23:18:54 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Oracle Applications]]></category>
		<category><![CDATA[XML Publisher]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Oracle Apps]]></category>
		<category><![CDATA[Oracle BI]]></category>
		<category><![CDATA[Oracle Business Intelligence]]></category>
		<category><![CDATA[Oracle E-Business Suite]]></category>
		<category><![CDATA[Oracle Education]]></category>
		<category><![CDATA[Oracle Reports]]></category>
		<category><![CDATA[Oracle XML Publisher]]></category>

		<guid isPermaLink="false">http://creativeslab.net/?p=6</guid>
		<description><![CDATA[In some cases in XML publisher reports, we need to get content in only last page of the report.
This requirement may come in case of generating cheques for invoices, Signature content on each report like invoice, packslips, purchase orders.
To do this add XML publisher content tag as
&#60;?start@last-page:body?&#62; &#60;?end body?&#62;
before this line add &#8216;Continuous Section Break&#8217; [...]]]></description>
			<content:encoded><![CDATA[<p>In some cases in XML publisher reports, we need to get content in only last page of the report.</p>
<p>This requirement may come in case of generating cheques for invoices, Signature content on each report like invoice, packslips, purchase orders.</p>
<p>To do this add XML publisher content tag as</p>
<p><span style="font-size:12pt">&lt;?start@last-page:body?&gt;</span><span style="font-size: 10pt;font-family: Arial"> </span><span style="font-size:12pt">&lt;?end body?&gt;</span></p>
<p><span style="font-size:12pt">before this line add &#8216;Continuous Section Break&#8217; of MS-Word in your rtf template file.</span></p>
<p><span style="font-size:12pt">Click on Insert-&gt;Break menu in MS-Word and select &#8216;Continuous&#8217; radious button in the break dialog that comes up.</span></p>
<p><span style="font-size:12pt">Any content followed above tag line will be shown at footer part of your report.</span></p>
<p>In some cases if report fits on single page, then you can use</p>
<p><span style="font-size: 12pt;font-family: 'Times New Roman'">&lt;?start@last-page-first:body?&gt;</span><span style="font-size: 10pt;font-family: Arial"> </span><span style="font-size: 12pt;font-family: 'Times New Roman'">&lt;?end body?&gt;</span></p>
<p><span style="font-size: 12pt;font-family: 'Times New Roman'">as last page content tag.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://creativeslab.net/xml-publisher-last-page-only-content/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
