<?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 Apps</title>
	<atom:link href="http://creativeslab.net/tag/oracle-apps/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 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>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>
		<item>
		<title>About Oracle Applications Receiving Transaction Processor</title>
		<link>http://creativeslab.net/about-oracle-receiving-transaction-processor</link>
		<comments>http://creativeslab.net/about-oracle-receiving-transaction-processor#comments</comments>
		<pubDate>Mon, 15 Dec 2008 04:42:53 +0000</pubDate>
		<dc:creator>chetanz</dc:creator>
				<category><![CDATA[Oracle Applications]]></category>
		<category><![CDATA[Oracle Purchasing]]></category>
		<category><![CDATA[E-Business Suite]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Oracle Apps]]></category>
		<category><![CDATA[Oracle EBS]]></category>
		<category><![CDATA[Oracle ERP]]></category>
		<category><![CDATA[Purchasing]]></category>
		<category><![CDATA[Purchasing Super User]]></category>
		<category><![CDATA[Purchasing User]]></category>
		<category><![CDATA[Receiving]]></category>
		<category><![CDATA[Receiving Interface Errors Report]]></category>
		<category><![CDATA[Receiving Transaction Processor]]></category>
		<category><![CDATA[ROI]]></category>

		<guid isPermaLink="false">http://creativeslab.net/?p=3</guid>
		<description><![CDATA[Receiving Transaction Processor will be used to process pending or unprocessed Receiving Transactions.
Receiving Interface Errors Report will be used to know, what are the errors encountered while running Receiving Transaction Processor, which failed processing of pending transactions.
To Run Receiving Transaction Processor
1) Goto Purchasing Super User Responsibility
2) Click on Reports &#8211;&#62; Run
3) Submit New Request window [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Receiving Transaction Processor</strong> will be used to process pending or unprocessed Receiving Transactions.</p>
<p><strong>Receiving Interface Errors Report</strong> will be used to know, what are the errors encountered while running Receiving Transaction Processor, which failed processing of pending transactions.</p>
<h3><span style="color: #3366ff">To Run Receiving Transaction Processor</span></h3>
<p>1) Goto Purchasing Super User Responsibility</p>
<p>2) Click on Reports &#8211;&gt; Run</p>
<p>3) Submit New Request window will appear.</p>
<p>4) Select Single Request and Click on OK.</p>
<p>5) Submit Request window will appear.</p>
<p><img src="http://professionalinn.files.wordpress.com/2008/05/rtp.jpg" alt="" /></p>
<p>6) In the Name field , Enter &#8216;Receiving Transaction Processor&#8217; and Click Tab, it will display a parameters tab, for entering group id.</p>
<p>7) If you know group id enter it, otherwise leave it. It will process in BATCH mode.</p>
<p> <img src='http://creativeslab.net/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> Click on submit button.</p>
<p>Now Receiving Transaction Processor will process all your pending receiving Transactions.</p>
<h3><span style="color: #3366ff">To run Receiving Interface Errors Report</span></h3>
<p>1) Goto Purchasing Super User Responsibility</p>
<p>2) Click on Reports &#8211;&gt; Run</p>
<p>3) Submit New Request window will appear.</p>
<p>4) Select Single Request and Click on OK.</p>
<p>5) Submit Request window will appear.</p>
<p><img src="http://professionalinn.files.wordpress.com/2008/05/rier.jpg" alt="" /><br />
6) In the name field enter, &#8216;Receiving Interface Errors Report&#8217;, it will show parameters dialog asking for the dates to give error report.</p>
<p>Note:: Enter dates in MM-DD-YYYY HH:MM:SS format.</p>
<p>7) after entering dates click on Ok in dialog, and click on submit button.</p>
<p>Goto View-&gt; Requests to find out the output given by Receiving Interface Errors Report.</p>
]]></content:encoded>
			<wfw:commentRss>http://creativeslab.net/about-oracle-receiving-transaction-processor/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
