<?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"
	>

<channel>
	<title>oraclehelps.com</title>
	<atom:link href="http://oraclehelps.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://oraclehelps.com/blog</link>
	<description></description>
	<pubDate>Thu, 09 Apr 2009 05:36:21 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>Query for audit changes in Profile Option</title>
		<link>http://oraclehelps.com/blog/?p=23</link>
		<comments>http://oraclehelps.com/blog/?p=23#comments</comments>
		<pubDate>Thu, 09 Apr 2009 05:36:21 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Oracle Application Objects (AOL)]]></category>

		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://oraclehelps.com/blog/?p=23</guid>
		<description><![CDATA[
By using the following query we can get number of profile option changed along with new values in given number of days
Connect as apps user to instance
SELECT ‘***Profile Option Name ***’
&#124;&#124; a.user_profile_option_name
&#124;&#124; ‘*** Was Updated with value ‘
&#124;&#124; ‘”‘
&#124;&#124; b.profile_option_value
&#124;&#124; ‘”‘
&#124;&#124; ‘ In The Last ‘
&#124;&#124; &#38;p_no_of_days
&#124;&#124; ‘ days’
&#124;&#124; ‘ by ‘
&#124;&#124; (SELECT user_name
FROM apps.fnd_user [...]]]></description>
			<content:encoded><![CDATA[<div class="snap_preview">
<p>By using the following query we can get number of profile option changed along with new values in given number of days</p>
<p>Connect as apps user to instance</p>
<p>SELECT ‘***Profile Option Name ***’<br />
|| a.user_profile_option_name<br />
|| ‘*** Was Updated with value ‘<br />
|| ‘”‘<br />
|| b.profile_option_value<br />
|| ‘”‘<br />
|| ‘ In The Last ‘<br />
|| &amp;p_no_of_days<br />
|| ‘ days’<br />
|| ‘ by ‘<br />
|| (SELECT user_name<br />
FROM apps.fnd_user u<br />
WHERE u.user_id = b.last_updated_by) mesg<br />
FROM apps.fnd_profile_options_vl a,<br />
apps.fnd_profile_option_values b,<br />
apps.fnd_user c<br />
WHERE a.profile_option_id = b.profile_option_id<br />
AND b.last_updated_by = c.user_id<br />
AND ( b.last_update_date &gt; SYSDATE - <span>&amp;p_no_of_days</span><br />
OR b.creation_date &gt; SYSDATE - <span style="font-weight: bold;">&amp;p_no_of_days</span><br />
)</div>
]]></content:encoded>
			<wfw:commentRss>http://oraclehelps.com/blog/?feed=rss2&amp;p=23</wfw:commentRss>
		</item>
		<item>
		<title>Get JV more than Specified Amount</title>
		<link>http://oraclehelps.com/blog/?p=21</link>
		<comments>http://oraclehelps.com/blog/?p=21#comments</comments>
		<pubDate>Thu, 09 Apr 2009 05:34:08 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Oracle General Ledger]]></category>

		<guid isPermaLink="false">http://oraclehelps.com/blog/?p=21</guid>
		<description><![CDATA[
Connect by Apps user name and just enter Amount when Prompted.We can use this query in Oracle Alerts to Notify GL Manager
SELECT gjh.NAME, gjh.running_total_cr, gjh.running_total_dr,
gjh.currency_code, gjlv.description, gsnv.NAME,
DECODE (NVL (gjlv.entered_dr, 1),
1, ‘CREDIT’,
gjlv.entered_dr, gjlv.entered_dr
) debit,
DECODE (NVL (gjlv.entered_cr, 1),
1, ‘DEBIT’,
gjlv.entered_cr, gjlv.entered_cr
) credit,
gjlv.period_name,
( gccv.segment1
&#124;&#124; ‘ ‘
&#124;&#124; gccv.segment2
&#124;&#124; ‘ ‘
&#124;&#124; gccv.segment3
&#124;&#124; ‘ ‘
&#124;&#124; gccv.segment4
&#124;&#124; ‘ ‘
&#124;&#124; gccv.segment5
&#124;&#124; ‘ ‘
&#124;&#124; gccv.segment6
&#124;&#124; [...]]]></description>
			<content:encoded><![CDATA[<div class="snap_preview">
<p>Connect by Apps user name and just enter Amount when Prompted.We can use this query in Oracle Alerts to Notify GL Manager</p>
<p>SELECT gjh.NAME, gjh.running_total_cr, gjh.running_total_dr,<br />
gjh.currency_code, gjlv.description, gsnv.NAME,<br />
DECODE (NVL (gjlv.entered_dr, 1),<br />
1, ‘CREDIT’,<br />
gjlv.entered_dr, gjlv.entered_dr<br />
) debit,<br />
DECODE (NVL (gjlv.entered_cr, 1),<br />
1, ‘DEBIT’,<br />
gjlv.entered_cr, gjlv.entered_cr<br />
) credit,<br />
gjlv.period_name,<br />
( gccv.segment1<br />
|| ‘ ‘<br />
|| gccv.segment2<br />
|| ‘ ‘<br />
|| gccv.segment3<br />
|| ‘ ‘<br />
|| gccv.segment4<br />
|| ‘ ‘<br />
|| gccv.segment5<br />
|| ‘ ‘<br />
|| gccv.segment6<br />
|| ‘ ‘<br />
|| gccv.segment7<br />
|| ‘ ‘<br />
|| gccv.segment8<br />
) ACCOUNT,<br />
gjlv.entered_cr, gjlv.entered_dr<br />
FROM gl_je_headers gjh,<br />
gl_je_lines_v gjlv,<br />
gl_sob_names_v gsnv,<br />
gl_code_combinations_v gccv<br />
WHERE ( (gjlv.je_header_id = gjh.je_header_id)<br />
AND (gsnv.set_of_books_id = gjlv.set_of_books_id)<br />
AND (gjlv.code_combination_id = gccv.code_combination_id)<br />
)<br />
<span style="font-weight: bold;">AND (gjh.running_total_dr &gt; :amount OR gjh.running_total_cr &gt; :amount</span>)</div>
]]></content:encoded>
			<wfw:commentRss>http://oraclehelps.com/blog/?feed=rss2&amp;p=21</wfw:commentRss>
		</item>
		<item>
		<title>Need of Oracle Credit Management</title>
		<link>http://oraclehelps.com/blog/?p=18</link>
		<comments>http://oraclehelps.com/blog/?p=18#comments</comments>
		<pubDate>Thu, 09 Apr 2009 05:32:34 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Oracle Credit Management]]></category>

		<guid isPermaLink="false">http://oraclehelps.com/blog/?p=18</guid>
		<description><![CDATA[
Good customer scoring strategies will have better visibility, quicker decision making, reduces manual efforts and increase in the profitability
It can be easily configured on top of an existing 11i implementation 
Easy configuration depending on requirements.
On line credit application and approval process will eliminate many home grown systems
Controls escalating and higher incidences of bad debts
Reduces collection [...]]]></description>
			<content:encoded><![CDATA[<div class="snap_preview">
<p class="MsoNormal" style="margin-left: 0.25in;"><span style="font-size: 9pt; line-height: 115%; font-family: ';">Good customer scoring strategies will have better visibility, quicker decision making, reduces manual efforts and increase in the profitability</span></p>
<p class="MsoNormal" style="margin-left: 0.25in;"><span style="font-size: 9pt; line-height: 115%; font-family: ';">It can be easily configured on top of an existing 11i implementation </span></p>
<p class="MsoNormal" style="margin-left: 0.25in;"><span style="font-size: 9pt; line-height: 115%; font-family: ';">Easy configuration depending on requirements.</span></p>
<p class="MsoNormal" style="margin-left: 0.25in;"><span style="font-size: 9pt; line-height: 115%; font-family: ';">On line credit application and approval process will eliminate many home grown systems</span></p>
<p class="MsoNormal" style="margin-left: 0.25in;"><span style="font-size: 9pt; line-height: 115%; font-family: ';">Controls escalating and higher incidences of bad debts</span></p>
<p class="MsoNormal" style="margin-left: 0.25in;"><span style="font-size: 9pt; line-height: 115%; font-family: ';">Reduces collection cost and diminishing returns</span></p>
<p class="MsoNormal" style="margin-left: 0.25in;"><span style="font-size: 9pt; line-height: 115%; font-family: ';">Reduces the credit-to-cash life cycle</span></p>
<p class="MsoNormal" style="margin-left: 0.25in;"><span style="font-size: 9pt; line-height: 115%; font-family: ';">We can have aggressive and/or conservative credit policies based on customer classes</span></p>
<p class="MsoNormal" style="margin-left: 0.25in;"><span style="font-size: 9pt; line-height: 115%; font-family: ';">Track credit performances and history of credit decisions and run reports as needed</span></p>
<p class="MsoNormal" style="margin-left: 0.25in;"><span style="font-size: 9pt; line-height: 115%; font-family: ';">Continuous and scheduled periodic credit evaluations for high risk customers or for all customers</span></p>
<p class="MsoNormal" style="margin-left: 0.25in;"><span style="font-size: 9pt; line-height: 115%; font-family: ';">Matches global credit policies ( In MNC Scenario)</span></p>
<p class="MsoNormal" style="margin-left: 0.25in;"><span style="font-size: 9pt; line-height: 115%; font-family: ';">Strong internal controls </span></p>
<p> </p>
<p class="MsoNormal" style="margin-left: 0.25in;"><span style="font-size: 9pt; line-height: 115%; font-family: ';">Lack of visibility in International Credit. Can handle financial risks in global market</span></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://oraclehelps.com/blog/?feed=rss2&amp;p=18</wfw:commentRss>
		</item>
		<item>
		<title>Bind Referencing / Parameter</title>
		<link>http://oraclehelps.com/blog/?p=13</link>
		<comments>http://oraclehelps.com/blog/?p=13#comments</comments>
		<pubDate>Thu, 09 Apr 2009 05:10:33 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Oracle Report]]></category>

		<guid isPermaLink="false">http://oraclehelps.com/blog/?p=13</guid>
		<description><![CDATA[Bind references are used to replace a single value in SQL or PL/SQL, such as a character string, number, or date. Use bind reference when you want the parameter to substitute only one value at runtime. Specifically, bind references may be used to replace expressions in SELECT, WHERE, GROUP BY, ORDER BY, HAVING, CONNECT BY, [...]]]></description>
			<content:encoded><![CDATA[<p>Bind references are used to replace a single value in SQL or PL/SQL, such as a character string, number, or date. Use bind reference when you want the parameter to substitute only one value at runtime. Specifically, bind references may be used to replace expressions in SELECT, WHERE, GROUP BY, ORDER BY, HAVING, CONNECT BY, and START WITH clauses of queries.</p>
<div class="snap_preview">
<p style="line-height: 150%;"><span style="line-height: 150%; font-family: 'font-size;">Bind parameters are used to substitute single value at runtime for evaluation and are identified by a preceding &#8216;:&#8217; .<br />
</span></p>
<p style="line-height: 150%;"><span style="line-height: 150%; font-family: 'font-size;">An example of a bind parameter in a select statement is provided below, where <strong>:</strong>P_Name is the bind parameter reference.</span></p>
<p style="line-height: 150%;"><span style="line-height: 150%; font-family: 'font-size;">Select Name,Department,Position</span></p>
<p style="line-height: 150%;"><span style="line-height: 150%; font-family: 'font-size;">From my_Table </span></p>
<p style="line-height: 150%;"><span style="line-height: 150%; font-family: 'font-size;">Where Dept = :P_Dept</span></p>
<p class="MsoNormal" style="margin: 6pt 0px; line-height: 150%;"><span style="font-family: 'font-size;">These are used as tokens while registering concurrent program</span></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://oraclehelps.com/blog/?feed=rss2&amp;p=13</wfw:commentRss>
		</item>
		<item>
		<title>Lexical Parameter</title>
		<link>http://oraclehelps.com/blog/?p=10</link>
		<comments>http://oraclehelps.com/blog/?p=10#comments</comments>
		<pubDate>Thu, 09 Apr 2009 05:06:52 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Oracle Report]]></category>

		<guid isPermaLink="false">http://oraclehelps.com/blog/?p=10</guid>
		<description><![CDATA[Lexical references are placeholders for text that you embed in a SELECT statement. Use Lexical reference when you want the parameter to substitute multiple values at runtime. You can use lexical references to replace the clauses appearing after SELECT, FROM, WHERE, GROUP BY, ORDER BY, HAVING, CONNECT BY, and START WITH.
Lexical parameters are used to [...]]]></description>
			<content:encoded><![CDATA[<p>Lexical references are placeholders for text that you embed in a SELECT statement. Use Lexical reference when you want the parameter to substitute multiple values at runtime. You can use lexical references to replace the clauses appearing after SELECT, FROM, WHERE, GROUP BY, ORDER BY, HAVING, CONNECT BY, and START WITH.</p>
<p class="MsoNormal" style="margin: 6pt 0px; line-height: 150%;"><span style="line-height: 150%; font-family: 'font-size;">Lexical parameters are used to substitute multiple values at runtime and are identified by a preceding ‘&amp;’. Lexical s can consist of as little a one line where clause to an entire select statement</span></p>
<p class="MsoNormal" style="margin: 6pt 0px; line-height: 150%;"><span style="line-height: 150%; font-family: 'font-size;">Lexical Parameters are used to execute query dynamically.</span></p>
<p class="MsoNormal" style="margin: 6pt 0px; line-height: 150%;"><span style="line-height: 150%; font-family: 'font-size;">Example: </span></p>
<p><span style="font-family: 'font-size;">Select * from my_table </span><span style="font-family: 'font-size;">&amp;where. </span></p>
]]></content:encoded>
			<wfw:commentRss>http://oraclehelps.com/blog/?feed=rss2&amp;p=10</wfw:commentRss>
		</item>
		<item>
		<title>Reporting Tools in Oracle Application</title>
		<link>http://oraclehelps.com/blog/?p=7</link>
		<comments>http://oraclehelps.com/blog/?p=7#comments</comments>
		<pubDate>Thu, 09 Apr 2009 04:25:31 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Oracle Report]]></category>

		<guid isPermaLink="false">http://oraclehelps.com/blog/?p=7</guid>
		<description><![CDATA[
Oracle Reports: Fixed format reports delivered with the 11i release were built on this tool. This is the most used tool for reporting on Oracle Applications. Most of reports customizations are built with this tool. Once customized the output of the report can be in Excel (Not group By Report), word, Acrobat documents or text [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li class="MsoNormal"><span><span style="font-weight: bold;">Oracle Reports</span>: Fixed format reports delivered with the 11i release were built on this tool. This is the most used tool for reporting on Oracle Applications. Most of reports customizations are built with this tool. Once customized the output of the report can be in Excel (Not group By Report), word, Acrobat documents or text format.</span></li>
</ul>
<ul>
<li class="MsoNormal"><span><span style="font-weight: bold;">Oracle Discoverer</span>: is an intuitive tool for creating reports and performing on-line analysis. Discoverer uses the EUL (End User Layer), a meta data definition, which hides the complexity of the database from the end user and provides easy to use wizards for creating reports to suit individual needs. The flexibility of this tool allows the user to create cross tab reports that perform like pivot tables in Excel.</span></li>
</ul>
<ul>
<li><span><span style="font-weight: bold;">Oracle XML Publisher</span>: is a new Oracle tool for reporting. It enables users to utilize a familiar desktop tool, like MS Word or MS Excel, to create and maintain their own report. At runtime, XML Publisher merges the custom templates with the concurrent request extracts data to generate output in RTF, </span><span>PDF, HTML </span><span>and EXCEL.</span></li>
</ul>
<ul>
<li><span><span style="font-weight: bold;">RXi Report:</span> (Variable reports) – variable format reports delivered with the E-Business 11i. With this tool a user has the ability to print the same report with multiple layouts. The user can also choose which columns he requires on a particular report. This tool is most used on Oracle Financials Applications</span></li>
</ul>
<ul>
<li><span><span style="font-weight: bold;">FSG Reports </span>(Financial Statement Generator): is a powerful report building tool for Oracle General Ledger. Some of benefits of using this tool are that a user can generate financial reports, and schedule reports to run automatically. The only drawback of this tool is that it is only available for the general ledger responsibility and can be used to see only financial account balances.</span></li>
</ul>
<ul>
<li><span><span style="font-weight: bold;">Business Intelligence System (BI</span>): is a set of tools to provide high level information for the managers (decision makers) to run their business such as the profitability of a particular business unit. The information this tool provides helps managers to take the right decision with the daily data that is uploaded on their systems.</span></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://oraclehelps.com/blog/?feed=rss2&amp;p=7</wfw:commentRss>
		</item>
		<item>
		<title>Welcome to The Oraclehelps.com Blog&#8230;.</title>
		<link>http://oraclehelps.com/blog/?p=1</link>
		<comments>http://oraclehelps.com/blog/?p=1#comments</comments>
		<pubDate>Sun, 31 Aug 2008 05:28:00 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Home]]></category>

		<guid isPermaLink="false">http://oraclehelps.com/blog/?p=1</guid>
		<description><![CDATA[The OracleHelps.Com is NOT an official Oracle Support site, but it helps to the People who is working with Oracle. You can learn about Oracle, share knowledge and try to help others solve their problems. Through this sites, you can get a wealth of information at the fingertips of Oracle professionals all over the world.
 
The information [...]]]></description>
			<content:encoded><![CDATA[<p>The OracleHelps.Com is NOT an official Oracle Support site, but it helps to the People who is working with Oracle. You can learn about Oracle, share knowledge and try to help others solve their problems. Through this sites, you can get a wealth of information at the fingertips of Oracle professionals all over the world.</p>
<p> </p>
<p>The information presented here is suitable for all programmers from beginner to expert. We hope you find this information useful and return to our site, as we expand our information base.</p>
]]></content:encoded>
			<wfw:commentRss>http://oraclehelps.com/blog/?feed=rss2&amp;p=1</wfw:commentRss>
		</item>
	</channel>
</rss>
