<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Oracle E-Business Suite</title>
	<atom:link href="http://oracleebusinesssuite.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://oracleebusinesssuite.wordpress.com</link>
	<description>Your Information Hub to Oracle E-Business Suite</description>
	<lastBuildDate>Mon, 19 Oct 2009 12:08:39 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='oracleebusinesssuite.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/bdefad8078dc2daeba96889a656e2891?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Oracle E-Business Suite</title>
		<link>http://oracleebusinesssuite.wordpress.com</link>
	</image>
			<item>
		<title>Extract Employee and Supervisor Based on Position Hierarchy</title>
		<link>http://oracleebusinesssuite.wordpress.com/2009/10/19/extract-employee-and-supervisor-based-on-position-hierarchy/</link>
		<comments>http://oracleebusinesssuite.wordpress.com/2009/10/19/extract-employee-and-supervisor-based-on-position-hierarchy/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 12:08:17 +0000</pubDate>
		<dc:creator>Ahmad Bilal</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[HCM]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[hr_all_positions_f_tl]]></category>
		<category><![CDATA[per_all_people_f]]></category>
		<category><![CDATA[per_pos_structure_elements]]></category>
		<category><![CDATA[Position]]></category>
		<category><![CDATA[Position Hierarchies]]></category>

		<guid isPermaLink="false">http://oracleebusinesssuite.wordpress.com/?p=428</guid>
		<description><![CDATA[This SQL will give you employee and Supervisor as per position hierarchy .
/* Formatted on 2009/10/19 15:01 (Formatter Plus v4.8.8) */
SELECT     LPAD (&#8216; &#8216;, 5 * LEVEL) &#124;&#124; has.NAME hierarchy, LEVEL,
           hap.NAME parent_name, pse.parent_position_id, has.NAME child_name,
      [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracleebusinesssuite.wordpress.com&blog=1828602&post=428&subd=oracleebusinesssuite&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This SQL will give you employee and Supervisor as per position hierarchy .</p>
<p>/* Formatted on 2009/10/19 15:01 (Formatter Plus v4.8.8) */<br />
SELECT     LPAD (&#8216; &#8216;, 5 * LEVEL) || has.NAME hierarchy, LEVEL,<br />
           hap.NAME parent_name, pse.parent_position_id, has.NAME child_name,<br />
           pse.subordinate_position_id<br />
      FROM (SELECT NAME, position_id<br />
              FROM hr_all_positions_f_tl<br />
             WHERE LANGUAGE = USERENV (&#8216;LANG&#8217;)) hap,<br />
           (SELECT NAME, position_id<br />
              FROM hr_all_positions_f_tl<br />
             WHERE LANGUAGE = USERENV (&#8216;LANG&#8217;)) has,<br />
           per_pos_structure_elements pse<br />
     WHERE pse.business_group_id = 81<br />
       AND hap.position_id = pse.parent_position_id<br />
       AND has.position_id = pse.subordinate_position_id<br />
start with pse.parent_position_id = &#8211;40979  Base Position Id (like CEO etc)<br />
CONNECT BY PRIOR pse.subordinate_position_id = pse.parent_position_id<br />
       AND PRIOR pse.pos_structure_version_id = pse.pos_structure_version_id<br />
       AND PRIOR pse.business_group_id = pse.business_group_id<br />
  ORDER BY 4</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/oracleebusinesssuite.wordpress.com/428/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/oracleebusinesssuite.wordpress.com/428/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/oracleebusinesssuite.wordpress.com/428/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/oracleebusinesssuite.wordpress.com/428/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/oracleebusinesssuite.wordpress.com/428/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/oracleebusinesssuite.wordpress.com/428/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/oracleebusinesssuite.wordpress.com/428/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/oracleebusinesssuite.wordpress.com/428/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/oracleebusinesssuite.wordpress.com/428/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/oracleebusinesssuite.wordpress.com/428/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracleebusinesssuite.wordpress.com&blog=1828602&post=428&subd=oracleebusinesssuite&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://oracleebusinesssuite.wordpress.com/2009/10/19/extract-employee-and-supervisor-based-on-position-hierarchy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3dfa9f1ba5e4ce0f4ff730a6c5e9163b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ahmad</media:title>
		</media:content>
	</item>
		<item>
		<title>Oracle Procurement Contract (a step by step user guide)</title>
		<link>http://oracleebusinesssuite.wordpress.com/2009/10/07/oracle-procurement-contract-a-step-by-step-user-guide/</link>
		<comments>http://oracleebusinesssuite.wordpress.com/2009/10/07/oracle-procurement-contract-a-step-by-step-user-guide/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 08:56:39 +0000</pubDate>
		<dc:creator>Ahmad Bilal</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Oracle Purchasing]]></category>
		<category><![CDATA[R12]]></category>
		<category><![CDATA[Oracle Procurement Contracts]]></category>

		<guid isPermaLink="false">http://oracleebusinesssuite.wordpress.com/?p=416</guid>
		<description><![CDATA[Download Word File
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracleebusinesssuite.wordpress.com&blog=1828602&post=416&subd=oracleebusinesssuite&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href='http://oracleebusinesssuite.files.wordpress.com/2009/10/oracle-procurement-contracts.docx'>Download Word File</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/oracleebusinesssuite.wordpress.com/416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/oracleebusinesssuite.wordpress.com/416/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/oracleebusinesssuite.wordpress.com/416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/oracleebusinesssuite.wordpress.com/416/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/oracleebusinesssuite.wordpress.com/416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/oracleebusinesssuite.wordpress.com/416/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/oracleebusinesssuite.wordpress.com/416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/oracleebusinesssuite.wordpress.com/416/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/oracleebusinesssuite.wordpress.com/416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/oracleebusinesssuite.wordpress.com/416/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracleebusinesssuite.wordpress.com&blog=1828602&post=416&subd=oracleebusinesssuite&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://oracleebusinesssuite.wordpress.com/2009/10/07/oracle-procurement-contract-a-step-by-step-user-guide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3dfa9f1ba5e4ce0f4ff730a6c5e9163b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ahmad</media:title>
		</media:content>
	</item>
		<item>
		<title>Oracle Business Intelligence Applications 7.9.6 step by step installation and Configuration with screen shots.</title>
		<link>http://oracleebusinesssuite.wordpress.com/2009/08/20/oracle-business-intelligence-applications-step-by-step-installation-and-configuration-with-screen-shots/</link>
		<comments>http://oracleebusinesssuite.wordpress.com/2009/08/20/oracle-business-intelligence-applications-step-by-step-installation-and-configuration-with-screen-shots/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 06:14:09 +0000</pubDate>
		<dc:creator>Ahmad Bilal</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Informatica with Oracle Business Intelligance Application]]></category>
		<category><![CDATA[OBIA]]></category>
		<category><![CDATA[OBIEE]]></category>
		<category><![CDATA[Oracle Business Intelligence Application]]></category>
		<category><![CDATA[Oracle Business Intelligence Applications 7.9.6]]></category>
		<category><![CDATA[Restore Pre Built Repository]]></category>

		<guid isPermaLink="false">http://oracleebusinesssuite.wordpress.com/?p=409</guid>
		<description><![CDATA[Visit ERPstuff.com to download Installation and configuration Guide Version 1.0
Link
Note:- you have to be a registered member and should have access to  Documents (Tutorials) Section in Forums
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracleebusinesssuite.wordpress.com&blog=1828602&post=409&subd=oracleebusinesssuite&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Visit ERPstuff.com to download Installation and configuration Guide Version 1.0</p>
<p><a href="http://www.erpstuff.com/topic.asp?TOPIC_ID=7198">Link</a></p>
<p>Note:- you have to be a registered member and should have access to  <em><strong>Documents (Tutorials)</strong></em> Section in Forums</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/oracleebusinesssuite.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/oracleebusinesssuite.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/oracleebusinesssuite.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/oracleebusinesssuite.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/oracleebusinesssuite.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/oracleebusinesssuite.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/oracleebusinesssuite.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/oracleebusinesssuite.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/oracleebusinesssuite.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/oracleebusinesssuite.wordpress.com/409/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracleebusinesssuite.wordpress.com&blog=1828602&post=409&subd=oracleebusinesssuite&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://oracleebusinesssuite.wordpress.com/2009/08/20/oracle-business-intelligence-applications-step-by-step-installation-and-configuration-with-screen-shots/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3dfa9f1ba5e4ce0f4ff730a6c5e9163b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ahmad</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL Query to Get Diffrence in Values for Profile Options assigned on USER Level</title>
		<link>http://oracleebusinesssuite.wordpress.com/2009/08/19/sql-query-to-get-diffrence-in-valuces-for-profile-options-assigned-on-user-level/</link>
		<comments>http://oracleebusinesssuite.wordpress.com/2009/08/19/sql-query-to-get-diffrence-in-valuces-for-profile-options-assigned-on-user-level/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 05:06:34 +0000</pubDate>
		<dc:creator>Ahmad Bilal</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Oracle Application]]></category>
		<category><![CDATA[Oracle Application Object]]></category>
		<category><![CDATA[R12]]></category>
		<category><![CDATA[Compare Profile Option Values at User Level]]></category>
		<category><![CDATA[fnd_profile_options]]></category>
		<category><![CDATA[fnd_profile_options_tl]]></category>
		<category><![CDATA[fnd_profile_option_values]]></category>
		<category><![CDATA[SQL Query to Get Diffrence in Valuces for Profile Options assigned on USER Level]]></category>

		<guid isPermaLink="false">http://oracleebusinesssuite.wordpress.com/?p=403</guid>
		<description><![CDATA[I got this Query from Gareth Roberts BLOG &#8230;Very Very Useful during implementation specially if there are some custom profile options . 
I used to work for a home appliances Manufacturing Organization . we  used some custom profile options to setup level of security for Sales Manage, Sales Man and Warehouse User. Some Time [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracleebusinesssuite.wordpress.com&blog=1828602&post=403&subd=oracleebusinesssuite&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I got this Query from <strong>Gareth Roberts BLOG</strong> &#8230;Very Very Useful during implementation specially if there are some custom profile options . </p>
<p>I used to work for a home appliances Manufacturing Organization . we  used some custom profile options to setup level of security for Sales Manage, Sales Man and Warehouse User. Some Time we faced issues and the and discovered that it&#8217;s wrong profile option assignment. </p>
<p>/* Formatted on 2009/08/19 08:41 (Formatter Plus v4.8.8) */<br />
SELECT *<br />
  FROM (WITH prof_di AS<br />
             (SELECT &#8216;USER&#8217; level_name, fu.user_name level_value,<br />
                     fpo.profile_option_id, fpot.user_profile_option_name,<br />
                     fpo.profile_option_name, fpov.profile_option_value<br />
                FROM fnd_user fu,<br />
                     fnd_profile_options fpo,<br />
                     fnd_profile_option_values fpov,<br />
                     fnd_profile_options_tl fpot<br />
               WHERE fu.user_id = fpov.level_value<br />
                 AND fpo.profile_option_id = fpov.profile_option_id<br />
                 AND fpo.profile_option_name = fpot.profile_option_name<br />
                 AND fpot.LANGUAGE = &#8216;US&#8217;<br />
                 AND fpov.level_id = 10004<br />
                 AND fu.user_name = &#8216;SYSADMIN&#8217;), /*User Name Working Fine*/<br />
             prof_gr AS<br />
             (SELECT &#8216;USER&#8217; level_name, fu.user_name level_value,<br />
                     fpo.profile_option_id, fpot.user_profile_option_name,<br />
                     fpo.profile_option_name, fpov.profile_option_value<br />
                FROM fnd_user fu,<br />
                     fnd_profile_options fpo,<br />
                     fnd_profile_option_values fpov,<br />
                     fnd_profile_options_tl fpot<br />
               WHERE fu.user_id = fpov.level_value<br />
                 AND fpo.profile_option_id = fpov.profile_option_id<br />
                 AND fpo.profile_option_name = fpot.profile_option_name<br />
                 AND fpot.LANGUAGE = &#8216;US&#8217;<br />
                 AND fpov.level_id = 10004<br />
                 AND fu.user_name = &#8216;AHMADBILAL&#8217;) /*User Name Where we are facing some issue*/<br />
        SELECT pd.profile_option_id, pd.user_profile_option_name,<br />
               pd.profile_option_name, pd.profile_option_value d_value,<br />
               pg.profile_option_value g_value,<br />
               DECODE (pd.profile_option_value,<br />
                       pg.profile_option_value, &#8216;EQUAL&#8217;,<br />
                       &#8216;DIFF&#8217;<br />
                      ) status<br />
          FROM prof_di pd, prof_gr pg<br />
         WHERE pd.profile_option_name = pg.profile_option_name(+)<br />
        UNION<br />
        SELECT pg.profile_option_id, pg.user_profile_option_name,<br />
               pg.profile_option_name, pd.profile_option_value d_value,<br />
               pg.profile_option_value g_value,<br />
               DECODE (pg.profile_option_value,<br />
                       pd.profile_option_value, &#8216;EQUAL&#8217;,<br />
                       &#8216;DIFF&#8217;<br />
                      ) status<br />
          FROM prof_di pd, prof_gr pg<br />
         WHERE pg.profile_option_name = pd.profile_option_name(+))<br />
 WHERE status != &#8216;EQUAL&#8217;;</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/oracleebusinesssuite.wordpress.com/403/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/oracleebusinesssuite.wordpress.com/403/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/oracleebusinesssuite.wordpress.com/403/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/oracleebusinesssuite.wordpress.com/403/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/oracleebusinesssuite.wordpress.com/403/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/oracleebusinesssuite.wordpress.com/403/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/oracleebusinesssuite.wordpress.com/403/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/oracleebusinesssuite.wordpress.com/403/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/oracleebusinesssuite.wordpress.com/403/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/oracleebusinesssuite.wordpress.com/403/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracleebusinesssuite.wordpress.com&blog=1828602&post=403&subd=oracleebusinesssuite&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://oracleebusinesssuite.wordpress.com/2009/08/19/sql-query-to-get-diffrence-in-valuces-for-profile-options-assigned-on-user-level/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3dfa9f1ba5e4ce0f4ff730a6c5e9163b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ahmad</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Migrate Forms Personalization from One Instance to Other Instance.</title>
		<link>http://oracleebusinesssuite.wordpress.com/2009/08/10/how-to-migrate-forms-personalization-from-one-instance-to-other-instance/</link>
		<comments>http://oracleebusinesssuite.wordpress.com/2009/08/10/how-to-migrate-forms-personalization-from-one-instance-to-other-instance/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 12:56:29 +0000</pubDate>
		<dc:creator>Ahmad Bilal</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Oracle Application]]></category>
		<category><![CDATA[Oracle Application Object]]></category>
		<category><![CDATA[R12]]></category>
		<category><![CDATA[FNDLOAD]]></category>
		<category><![CDATA[Forms Personalization]]></category>
		<category><![CDATA[Migrate Forms Personalization]]></category>
		<category><![CDATA[Oracle FNDLOAD]]></category>

		<guid isPermaLink="false">http://oracleebusinesssuite.wordpress.com/?p=398</guid>
		<description><![CDATA[It’s very normal during implementation that we need to move all personalization from TEST / DEVELOPMENT to PRODUCTION there are two way (best of my Knowledge)
Method 1
Open TEST instance navigate to form where you did personalization, simultaneously open PRODUCTION instance start copy pasting….. Sounds pathetic (at least to me)
Method 2
Use FNDLOAD (purely a DBA task)
Download [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracleebusinesssuite.wordpress.com&blog=1828602&post=398&subd=oracleebusinesssuite&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>It’s very normal during implementation that we need to move all personalization from TEST / DEVELOPMENT to PRODUCTION there are two way (best of my Knowledge)</p>
<p><em><strong>Method 1</strong></em><br />
Open TEST instance navigate to form where you did personalization, simultaneously open PRODUCTION instance start copy pasting….. Sounds pathetic (at least to me)<br />
<em><strong>Method 2</strong></em><br />
Use FNDLOAD (purely a DBA task)<br />
<strong>Download for a specific form</strong><br />
FNDLOAD / 0 Y DOWNLOAD<br />
$FND_TOP/patch/115/import/affrmcus.lct  FND_FORM_CUSTOM_RULES form_name=</p>
<p><strong>Download all personalization</strong><br />
FNDLOAD / 0 Y DOWNLOAD $FND_TOP/patch/115/import/affrmcus.lct  FND_FORM_CUSTOM_RULES</p>
<p><strong>Upload</strong><br />
FNDLOAD / 0 Y UPLOAD $FND_TOP/patch/115/import/affrmcus.lct </p>
<p>For more information you can visit this LINK<br />
http://oracle.anilpassi.com/oracle-fndload-script-examples.html</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/oracleebusinesssuite.wordpress.com/398/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/oracleebusinesssuite.wordpress.com/398/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/oracleebusinesssuite.wordpress.com/398/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/oracleebusinesssuite.wordpress.com/398/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/oracleebusinesssuite.wordpress.com/398/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/oracleebusinesssuite.wordpress.com/398/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/oracleebusinesssuite.wordpress.com/398/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/oracleebusinesssuite.wordpress.com/398/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/oracleebusinesssuite.wordpress.com/398/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/oracleebusinesssuite.wordpress.com/398/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracleebusinesssuite.wordpress.com&blog=1828602&post=398&subd=oracleebusinesssuite&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://oracleebusinesssuite.wordpress.com/2009/08/10/how-to-migrate-forms-personalization-from-one-instance-to-other-instance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3dfa9f1ba5e4ce0f4ff730a6c5e9163b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ahmad</media:title>
		</media:content>
	</item>
		<item>
		<title>Daily Business Intelligence Features</title>
		<link>http://oracleebusinesssuite.wordpress.com/2009/08/10/daily-business-intelligence-features/</link>
		<comments>http://oracleebusinesssuite.wordpress.com/2009/08/10/daily-business-intelligence-features/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 11:23:12 +0000</pubDate>
		<dc:creator>Ahmad Bilal</dc:creator>
				<category><![CDATA[Daily Business Intelligence]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://oracleebusinesssuite.wordpress.com/?p=366</guid>
		<description><![CDATA[Few days back for Pre sales meetings with some clients i was looking for some slides / information about Daily Business Intelligence and Oracle Business Intelligence Application and difference in both.I got some stuff related to  Daily Business Intelligence believe it&#8217;s worth sharing.
Click to Download
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracleebusinesssuite.wordpress.com&blog=1828602&post=366&subd=oracleebusinesssuite&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Few days back for Pre sales meetings with some clients i was looking for some slides / information about Daily Business Intelligence and Oracle Business Intelligence Application and difference in both.I got some stuff related to  Daily Business Intelligence believe it&#8217;s worth sharing.</p>
<p><a href='http://oracleebusinesssuite.files.wordpress.com/2009/08/daily-business-intelligence-features.docx'>Click to Download</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/oracleebusinesssuite.wordpress.com/366/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/oracleebusinesssuite.wordpress.com/366/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/oracleebusinesssuite.wordpress.com/366/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/oracleebusinesssuite.wordpress.com/366/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/oracleebusinesssuite.wordpress.com/366/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/oracleebusinesssuite.wordpress.com/366/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/oracleebusinesssuite.wordpress.com/366/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/oracleebusinesssuite.wordpress.com/366/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/oracleebusinesssuite.wordpress.com/366/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/oracleebusinesssuite.wordpress.com/366/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracleebusinesssuite.wordpress.com&blog=1828602&post=366&subd=oracleebusinesssuite&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://oracleebusinesssuite.wordpress.com/2009/08/10/daily-business-intelligence-features/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3dfa9f1ba5e4ce0f4ff730a6c5e9163b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ahmad</media:title>
		</media:content>
	</item>
		<item>
		<title>OBIA Data Load by DAC causing Account Lock</title>
		<link>http://oracleebusinesssuite.wordpress.com/2009/07/16/obia-data-load-by-dac-causing-account-lock/</link>
		<comments>http://oracleebusinesssuite.wordpress.com/2009/07/16/obia-data-load-by-dac-causing-account-lock/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 12:08:19 +0000</pubDate>
		<dc:creator>Ahmad Bilal</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Oracle Business Intelligence Application]]></category>
		<category><![CDATA[DAC]]></category>
		<category><![CDATA[DATA WAREHOUSE]]></category>
		<category><![CDATA[FAILED_LOGIN_ATTEMPTS]]></category>
		<category><![CDATA[OBIA]]></category>
		<category><![CDATA[OBIEE]]></category>

		<guid isPermaLink="false">http://oracleebusinesssuite.wordpress.com/?p=362</guid>
		<description><![CDATA[I was implementing Oracle Business Intelligence Application 7.9.6. on one client site in Middle East . Everything was fine when my data warehouse was on Oracle Database 10.1.X but on DBA suggestion they changed it to 10.2.0.1.0 . once they changed Database version. it was disaster for me whenever i ran the task from DAC [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracleebusinesssuite.wordpress.com&blog=1828602&post=362&subd=oracleebusinesssuite&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I was implementing Oracle Business Intelligence Application 7.9.6. on one client site in Middle East . Everything was fine when my data warehouse was on Oracle Database 10.1.X but on DBA suggestion they changed it to 10.2.0.1.0 . once they changed Database version. it was disaster for me whenever i ran the task from DAC it was showing me Account is Locked&#8230;..duhhhhh.</p>
<p>Now DBA was no taking the responsibility at all, by saying this it&#8217;s some issue with DAC or TASK. but case was not that at all but i was not able to prove it <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>After some research i got to know in Oracle 10.2 they setup the default option for &#8220;FAILED_LOGIN_ATTEMPTS&#8221; as 10 so after 10 unsuccessful attempts DAC is Locking user Name i just used following SQL Statement to rectify this issue <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Alter Profile &#8220;DEFAULT&#8221; LIMIT FAILED_LOGIN_ATTEMPTS UNLIMITED;</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/oracleebusinesssuite.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/oracleebusinesssuite.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/oracleebusinesssuite.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/oracleebusinesssuite.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/oracleebusinesssuite.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/oracleebusinesssuite.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/oracleebusinesssuite.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/oracleebusinesssuite.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/oracleebusinesssuite.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/oracleebusinesssuite.wordpress.com/362/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracleebusinesssuite.wordpress.com&blog=1828602&post=362&subd=oracleebusinesssuite&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://oracleebusinesssuite.wordpress.com/2009/07/16/obia-data-load-by-dac-causing-account-lock/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3dfa9f1ba5e4ce0f4ff730a6c5e9163b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ahmad</media:title>
		</media:content>
	</item>
		<item>
		<title>Julian to Gregorian Calender Switch impact on Oracle</title>
		<link>http://oracleebusinesssuite.wordpress.com/2009/07/08/julian-to-gregorian-calender-switch-impact-on-oracle/</link>
		<comments>http://oracleebusinesssuite.wordpress.com/2009/07/08/julian-to-gregorian-calender-switch-impact-on-oracle/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 07:06:17 +0000</pubDate>
		<dc:creator>Ahmad Bilal</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Oracle General Ledger]]></category>

		<guid isPermaLink="false">http://oracleebusinesssuite.wordpress.com/?p=342</guid>
		<description><![CDATA[Do you see something abnormal in following image?

Yes …….what’s this ……?
And same thing you will see on some other ERP solutions / software once you select September 1752.
Answer
The calendar snippet shows that there are no days between October 4 and October 15. This discontinuity is called the &#8220;cutover&#8221;.
What is Cutover
&#8220;This is a hybrid Julian/Gregorian calendar [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracleebusinesssuite.wordpress.com&blog=1828602&post=342&subd=oracleebusinesssuite&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Do you see something abnormal in following image?</p>
<p><a href="http://oracleebusinesssuite.wordpress.com/2009/07/08/julian-to-gregorian-calender-switch-impact-on-oracle/oct-1582/" rel="attachment wp-att-343"><img src="http://oracleebusinesssuite.files.wordpress.com/2009/07/oct-1582.jpg?w=550&#038;h=478" alt="oct-1582" title="oct-1582" width="550" height="478" class="alignnone size-full wp-image-343" /></a></p>
<p>Yes …….what’s this ……?</p>
<p>And same thing you will see on some other ERP solutions / software once you select September 1752.</p>
<p><strong>Answer</strong></p>
<p>The calendar snippet shows that there are no days between October 4 and October 15. This discontinuity is called the &#8220;cutover&#8221;.</p>
<p><strong>What is Cutover</strong></p>
<p>&#8220;This is a hybrid Julian/Gregorian calendar with a cutover on October 4/15 1582.&#8221; Any dates before a cutover are Julian, any dates during a cutover are nonexistent, and any dates after a cutover are Gregorian.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/oracleebusinesssuite.wordpress.com/342/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/oracleebusinesssuite.wordpress.com/342/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/oracleebusinesssuite.wordpress.com/342/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/oracleebusinesssuite.wordpress.com/342/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/oracleebusinesssuite.wordpress.com/342/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/oracleebusinesssuite.wordpress.com/342/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/oracleebusinesssuite.wordpress.com/342/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/oracleebusinesssuite.wordpress.com/342/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/oracleebusinesssuite.wordpress.com/342/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/oracleebusinesssuite.wordpress.com/342/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracleebusinesssuite.wordpress.com&blog=1828602&post=342&subd=oracleebusinesssuite&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://oracleebusinesssuite.wordpress.com/2009/07/08/julian-to-gregorian-calender-switch-impact-on-oracle/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3dfa9f1ba5e4ce0f4ff730a6c5e9163b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ahmad</media:title>
		</media:content>

		<media:content url="http://oracleebusinesssuite.files.wordpress.com/2009/07/oct-1582.jpg" medium="image">
			<media:title type="html">oct-1582</media:title>
		</media:content>
	</item>
		<item>
		<title>Mass Feature Available in Oracle Purchasing R12</title>
		<link>http://oracleebusinesssuite.wordpress.com/2009/07/02/mass-feature-available-in-oracle-purchasing-r12/</link>
		<comments>http://oracleebusinesssuite.wordpress.com/2009/07/02/mass-feature-available-in-oracle-purchasing-r12/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 06:44:27 +0000</pubDate>
		<dc:creator>Ahmad Bilal</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Oracle Application]]></category>
		<category><![CDATA[Oracle Purchasing]]></category>
		<category><![CDATA[Mass Cancel]]></category>
		<category><![CDATA[Mass Feature Available in Oracle Purchasing R12]]></category>
		<category><![CDATA[Purchasse Order]]></category>

		<guid isPermaLink="false">http://oracleebusinesssuite.wordpress.com/?p=332</guid>
		<description><![CDATA[Click Link To Download
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracleebusinesssuite.wordpress.com&blog=1828602&post=332&subd=oracleebusinesssuite&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href='http://oracleebusinesssuite.files.wordpress.com/2009/07/mass-feature-available-in-oracle-purchasing-r12-blog.pdf'>Click Link To Download</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/oracleebusinesssuite.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/oracleebusinesssuite.wordpress.com/332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/oracleebusinesssuite.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/oracleebusinesssuite.wordpress.com/332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/oracleebusinesssuite.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/oracleebusinesssuite.wordpress.com/332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/oracleebusinesssuite.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/oracleebusinesssuite.wordpress.com/332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/oracleebusinesssuite.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/oracleebusinesssuite.wordpress.com/332/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracleebusinesssuite.wordpress.com&blog=1828602&post=332&subd=oracleebusinesssuite&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://oracleebusinesssuite.wordpress.com/2009/07/02/mass-feature-available-in-oracle-purchasing-r12/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3dfa9f1ba5e4ce0f4ff730a6c5e9163b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ahmad</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Clear Application Cache by Using Funcational Administrator Responsiblity</title>
		<link>http://oracleebusinesssuite.wordpress.com/2009/06/25/how-clear-application-cache-by-using-funcational-administrator-responsiblity/</link>
		<comments>http://oracleebusinesssuite.wordpress.com/2009/06/25/how-clear-application-cache-by-using-funcational-administrator-responsiblity/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 06:37:52 +0000</pubDate>
		<dc:creator>Ahmad Bilal</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Caching Framework]]></category>
		<category><![CDATA[Clear All Cache]]></category>
		<category><![CDATA[Core Services]]></category>
		<category><![CDATA[Functional Administrator Responsibility]]></category>

		<guid isPermaLink="false">http://oracleebusinesssuite.wordpress.com/2009/06/25/how-clear-application-cache-by-using-funcational-administrator-responsiblity/</guid>
		<description><![CDATA[1-	Navigate to Functional Administrator Responsibility
2-	Choose the “ Core Services” Tab
3-	Choose “Caching Framework”
4-	Click on “Global Configuration”
5-	Click on “Clear All Cache”
6-	The Click on yes on the display which will appear.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracleebusinesssuite.wordpress.com&blog=1828602&post=329&subd=oracleebusinesssuite&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>1-	Navigate to Functional Administrator Responsibility<br />
2-	Choose the “ Core Services” Tab<br />
3-	Choose “Caching Framework”<br />
4-	Click on “Global Configuration”<br />
5-	Click on “Clear All Cache”<br />
6-	The Click on yes on the display which will appear.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/oracleebusinesssuite.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/oracleebusinesssuite.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/oracleebusinesssuite.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/oracleebusinesssuite.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/oracleebusinesssuite.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/oracleebusinesssuite.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/oracleebusinesssuite.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/oracleebusinesssuite.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/oracleebusinesssuite.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/oracleebusinesssuite.wordpress.com/329/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracleebusinesssuite.wordpress.com&blog=1828602&post=329&subd=oracleebusinesssuite&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://oracleebusinesssuite.wordpress.com/2009/06/25/how-clear-application-cache-by-using-funcational-administrator-responsiblity/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3dfa9f1ba5e4ce0f4ff730a6c5e9163b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ahmad</media:title>
		</media:content>
	</item>
	</channel>
</rss>