<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-3412735064338726438</id><updated>2012-03-01T05:06:29.055-08:00</updated><category term='Form Personalization'/><category term='BI Publisher'/><category term='Security'/><category term='General'/><category term='Application Management'/><category term='Fusion'/><category term='Patching'/><category term='PL/SQL Coding'/><title type='text'>Oracle EBIZ Talk</title><subtitle type='html'>Oracle E-Business Suite Technology</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://orabiz.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://orabiz.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>manage</name><uri>http://www.blogger.com/profile/11667453085737839768</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>21</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3412735064338726438.post-423250280007597421</id><published>2010-10-14T20:13:00.000-07:00</published><updated>2010-10-14T20:23:47.382-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='PL/SQL Coding'/><title type='text'>Helpful View for Concurrent Request Details</title><content type='html'>Select * from apps.fnd_amp_requests_v where request_id = XXXXX&lt;br /&gt;&lt;br /&gt;Use this View to get helpful info on the status of a concurrent request, who submitted and what responsibility it was run under. Very help View!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3412735064338726438-423250280007597421?l=orabiz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orabiz.blogspot.com/feeds/423250280007597421/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3412735064338726438&amp;postID=423250280007597421' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/423250280007597421'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/423250280007597421'/><link rel='alternate' type='text/html' href='http://orabiz.blogspot.com/2010/10/helpful-view-for-concurrent-request.html' title='Helpful View for Concurrent Request Details'/><author><name>manage</name><uri>http://www.blogger.com/profile/11667453085737839768</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3412735064338726438.post-5412174330969692198</id><published>2010-06-30T14:32:00.000-07:00</published><updated>2010-06-30T14:54:29.505-07:00</updated><title type='text'>EBS PL/SQL multithreading example</title><content type='html'>Here are some good examples of multi-threading Concurrent Program from within a PL/SQL Program.&lt;br /&gt;&lt;br /&gt;Example1:&lt;br /&gt;&lt;a title="http://sbllc3.solutionbeacon.net/pls/a159vis2/fndgfm/fnd_help.get/US@PSA_US/fnd/@concglob" href="http://sbllc3.solutionbeacon.net/pls/a159vis2/fndgfm/fnd_help.get/US@PSA_US/fnd/@concglob"&gt;http://sbllc3.solutionbeacon.net/pls/a159vis2/fndgfm/fnd_help.get/US@PSA_US/fnd/@concglob&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;OR&lt;br /&gt;&lt;br /&gt;Example2:&lt;br /&gt;&lt;br /&gt;PROCEDURE CONC_MULTI_THREAD_PRG (&lt;br /&gt;Errbuf OUT NOCOPY VARCHAR2&lt;br /&gt;,Retcode OUT NOCOPY VARCHAR2&lt;br /&gt;)&lt;br /&gt;IS&lt;br /&gt;ln_thread_count NUMBER;&lt;br /&gt;ls_smtp_server VARCHAR2(240);&lt;br /&gt;ln_smtp_server_port PLS_INTEGER;&lt;br /&gt;ls_from_name VARCHAR2(240);&lt;br /&gt;ls_subject VARCHAR2(240);&lt;br /&gt;ls_message VARCHAR2(240);&lt;br /&gt;ls_message_html VARCHAR2(240);&lt;br /&gt;ln_conc_request_id NUMBER := NULL;&lt;br /&gt;ls_req_data VARCHAR2(240);&lt;br /&gt;ln_request_id NUMBER; -- parent request id&lt;br /&gt;cnt_warnings INTEGER := 0;&lt;br /&gt;cnt_errors INTEGER := 0;&lt;br /&gt;request_status BOOLEAN;&lt;br /&gt;BEGIN&lt;br /&gt;ls_req_data := fnd_conc_global.request_data;&lt;br /&gt;ln_request_id := fnd_global.conc_request_id;&lt;br /&gt;&lt;br /&gt;IF ls_req_data IS NOT NULL THEN&lt;br /&gt;put_log_line( ' Back at beginning after spawing ' ls_req_data ' threads.');&lt;br /&gt;ln_thread_count := ls_req_data;&lt;br /&gt;&lt;br /&gt;IF ln_thread_count &gt; 0 THEN&lt;br /&gt;put_log_line ( 'Checking child threads...');&lt;br /&gt;&lt;br /&gt;-- Check all child requests to see how they finished...&lt;br /&gt;FOR child_request_rec IN (SELECT request_id, status_code&lt;br /&gt;FROM fnd_concurrent_requests&lt;br /&gt;WHERE parent_request_id = ln_request_id)&lt;br /&gt;LOOP&lt;br /&gt;check_child_request(child_request_rec.request_id);&lt;br /&gt;IF ( child_request_rec.status_code = 'G' OR child_request_rec.status_code = 'X'&lt;br /&gt;OR child_request_rec.status_code ='D' OR child_request_rec.status_code ='T' ) THEN&lt;br /&gt;cnt_warnings := cnt_warnings + 1;&lt;br /&gt;ELSIF ( child_request_rec.status_code = 'E' ) THEN&lt;br /&gt;cnt_errors := cnt_errors + 1;&lt;br /&gt;END IF;&lt;br /&gt;END LOOP; -- FOR child_request_rec&lt;br /&gt;&lt;br /&gt;IF cnt_errors &gt; 0 THEN&lt;br /&gt;put_log_line( 'Setting completion status to ERROR.');&lt;br /&gt;request_status := fnd_concurrent.set_completion_status('ERROR', '');&lt;br /&gt;ELSIF cnt_warnings &gt; 0 THEN&lt;br /&gt;put_log_line( 'Setting completion status to WARNING.');&lt;br /&gt;request_status := fnd_concurrent.set_completion_status('WARNING', '');&lt;br /&gt;ELSE&lt;br /&gt;put_log_line( 'Setting completion status to NORMAL.');&lt;br /&gt;request_status := fnd_concurrent.set_completion_status('NORMAL', '');&lt;br /&gt;END IF;&lt;br /&gt;END IF;&lt;br /&gt;&lt;br /&gt;RETURN; -- end of parent&lt;br /&gt;END IF;&lt;br /&gt;&lt;br /&gt;get_translations('AR_EBL_EMAIL_CONFIG','RESEND',ls_smtp_server, ln_smtp_server_port, ls_from_name, ls_subject, ls_message, ls_message_html);&lt;br /&gt;get_translation('AR_EBL_CONFIG','TRANSMIT_EMAIL','N_THREADS',ln_thread_count);&lt;br /&gt;&lt;br /&gt;put_log_line('spawning ' ln_thread_count ' thread(s)');&lt;br /&gt;&lt;br /&gt;FOR i IN 1..ln_thread_count LOOP&lt;br /&gt;put_log_line('thread: ' i);&lt;br /&gt;-- TRANSMIT_EMAIL_C(Errbuf,Retcode, i, ln_thread_count, ls_smtp_server, ln_smtp_server_port, ls_from_name);&lt;br /&gt;&lt;br /&gt;n_conc_request_id :=&lt;br /&gt;FND_REQUEST.submit_request&lt;br /&gt;( application =&gt; 'XXFIN' -- application short name&lt;br /&gt;,program =&gt; 'XX_AR_EBL_TRANSMIT_EMAIL_C' -- concurrent program name&lt;br /&gt;,sub_request =&gt; TRUE -- is this a sub-request?&lt;br /&gt;,argument1 =&gt; i -- thread_id&lt;br /&gt;,argument2 =&gt; ln_thread_count&lt;br /&gt;,argument3 =&gt; ls_smtp_server&lt;br /&gt;,argument4 =&gt; ln_smtp_server_port&lt;br /&gt;,argument5 =&gt; ls_from_name);&lt;br /&gt;&lt;br /&gt;-- ===========================================================================&lt;br /&gt;-- if request was successful&lt;br /&gt;-- ===========================================================================&lt;br /&gt;IF (n_conc_request_id &gt; 0) THEN&lt;br /&gt;-- ===========================================================================&lt;br /&gt;-- if a child request, then update it for concurrent mgr to process&lt;br /&gt;-- ===========================================================================&lt;br /&gt;/* -- Instead of doing the following Update, use FND_CONC_GLOBAL.SET_REQ_GLOBALS(conc_status =&gt; 'PAUSED', request_data =&gt; to_char(ln_thread_count)) -- See below&lt;br /&gt;-- This program will then restart when the child programs are done, so if fnd_conc_global.request_data is NOT NULL at start of proc, check child statuses &amp;amp; end.&lt;br /&gt;-- If either this Update, or the set_req_globals approach, is not done, the child programs will hang in Invalid, No Manager status.&lt;br /&gt;&lt;br /&gt;UPDATE fnd_concurrent_requests&lt;br /&gt;SET phase_code = 'P',&lt;br /&gt;status_code = 'I'&lt;br /&gt;WHERE request_id = n_conc_request_id;&lt;br /&gt;*/&lt;br /&gt;-- ===========================================================================&lt;br /&gt;-- must commit work so that the concurrent manager polls the request&lt;br /&gt;-- ===========================================================================&lt;br /&gt;COMMIT;&lt;br /&gt;&lt;br /&gt;put_log_line( ' Concurrent Request ID: ' n_conc_request_id '.' );&lt;br /&gt;&lt;br /&gt;-- ===========================================================================&lt;br /&gt;-- else errors have occured for request&lt;br /&gt;-- ===========================================================================&lt;br /&gt;ELSE&lt;br /&gt;-- ===========================================================================&lt;br /&gt;-- retrieve and raise any errors&lt;br /&gt;-- ===========================================================================&lt;br /&gt;FND_MESSAGE.raise_error;&lt;br /&gt;END IF;&lt;br /&gt;&lt;br /&gt;END LOOP;&lt;br /&gt;&lt;br /&gt;FND_CONC_GLOBAL.SET_REQ_GLOBALS(conc_status =&gt; 'PAUSED', request_data =&gt; to_char(ln_thread_count));&lt;br /&gt;&lt;br /&gt;END CONC_MULTI_THREAD_PRG;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3412735064338726438-5412174330969692198?l=orabiz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orabiz.blogspot.com/feeds/5412174330969692198/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3412735064338726438&amp;postID=5412174330969692198' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/5412174330969692198'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/5412174330969692198'/><link rel='alternate' type='text/html' href='http://orabiz.blogspot.com/2010/06/ebs-plsql-multithreading-example.html' title='EBS PL/SQL multithreading example'/><author><name>manage</name><uri>http://www.blogger.com/profile/11667453085737839768</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3412735064338726438.post-5291010602234167132</id><published>2007-11-02T13:16:00.000-07:00</published><updated>2007-11-02T13:20:03.160-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='BI Publisher'/><title type='text'>Documentation on Bursting Engine</title><content type='html'>Here is a great tutorial for anyone interested in understanding the basics of using the Java bursting engine to distribute document files.&lt;br /&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://blogs.oracle.com/xmlpublisher/2007/04/05" target="_blank"&gt; E Business Suite Bursting&lt;/a&gt;&lt;/li&gt;&lt;br /&gt;&lt;br /&gt;Also, A very fine white paper with additional information on the process.&lt;br /&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://www.appsassociates.com/products/Bursting_Engine.pdf" target="_blank"&gt; Documentation on Bursting Engine  &lt;/a&gt;&lt;/li&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3412735064338726438-5291010602234167132?l=orabiz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orabiz.blogspot.com/feeds/5291010602234167132/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3412735064338726438&amp;postID=5291010602234167132' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/5291010602234167132'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/5291010602234167132'/><link rel='alternate' type='text/html' href='http://orabiz.blogspot.com/2007/11/documentation-on-bursting-engine.html' title='Documentation on Bursting Engine'/><author><name>manage</name><uri>http://www.blogger.com/profile/11667453085737839768</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3412735064338726438.post-5847092298690200333</id><published>2007-07-06T15:28:00.000-07:00</published><updated>2007-07-06T15:57:41.275-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='PL/SQL Coding'/><title type='text'>fnd_request.submit_request handy tip.</title><content type='html'>Here is a HANDY TIP that could save you some time bugging why the fnd_request.submit_request procedure is returning a request_id of 0. If you are creating and running a package to run outside Oracle Applications, you may be wondering why the procedure will not be executing your concurrent program being passed into into the fnd_request.submit_request procedure.  &lt;br /&gt;&lt;br /&gt;The first make sure that you are passing in the correct parameters into the procedure.  Once you are confident that you have the correct parameters make sure you call the FND_GLOBAL.APPS_INITIALIZE procedure prior to calling the submit_request procedure.  Since you are executing the package outside of the application you need to intialize your user_id, responsibility_id and Applicaiton_id within your executing procedure.  &lt;br /&gt;&lt;br /&gt;It sounds like common sense but it is easy to over look!&lt;br /&gt;&lt;br /&gt;Below is a snipit of code for submitting the gl journal import program from a Procedure:&lt;br /&gt;&lt;br /&gt;BEGIN &lt;br /&gt;&lt;br /&gt;...&lt;br /&gt;&lt;br /&gt;SELECT user_id&lt;br /&gt;INTO x_user_id&lt;br /&gt;FROM FND_USER&lt;br /&gt;WHERE user_name = &lt;Your application user name&gt;;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;SELECT application_id&lt;br /&gt;INTO x_appl_id&lt;br /&gt;FROM FND_APPLICATION&lt;br /&gt;WHERE application_short_name = 'SQLGL';&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;SELECT responsibility_id&lt;br /&gt;INTO x_resp_id&lt;br /&gt;FROM FND_APPLICATION fa, FND_RESPONSIBILITY_TL fr&lt;br /&gt;WHERE fa.application_short_name = 'SQLGL' AND&lt;br /&gt;fa.application_id = fr.application_id AND&lt;br /&gt;fr.responsibility_name = 'General Ledger Super User';&lt;br /&gt;&lt;br /&gt;FND_GLOBAL.APPS_INITIALIZE(x_user_id, x_resp_id, x_appl_id);&lt;br /&gt;&lt;br /&gt;x_conc_id := fnd_request.submit_request(application =&gt; 'SQLGL'&lt;br /&gt;            ,program =&gt; 'GLLEZL'&lt;br /&gt;     ,description =&gt; NULL&lt;br /&gt;     ,start_time =&gt; SYSDATE&lt;br /&gt;     ,sub_request =&gt; FALSE&lt;br /&gt;     ,argument1 =&gt; to_char(p_interface_run_id)&lt;br /&gt;     ,argument2 =&gt; to_char(p_sob_id)&lt;br /&gt;     ,argument3 =&gt; 'N'&lt;br /&gt;     ,argument4 =&gt; NULL&lt;br /&gt;     ,argument5 =&gt; NULL&lt;br /&gt;     ,argument6 =&gt; 'N'&lt;br /&gt;     ,argument7 =&gt; 'W');&lt;br /&gt;&lt;br /&gt;...&lt;br /&gt;END;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3412735064338726438-5847092298690200333?l=orabiz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orabiz.blogspot.com/feeds/5847092298690200333/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3412735064338726438&amp;postID=5847092298690200333' title='7 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/5847092298690200333'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/5847092298690200333'/><link rel='alternate' type='text/html' href='http://orabiz.blogspot.com/2007/07/fndrequestsubmitrequest-handy-tip.html' title='fnd_request.submit_request handy tip.'/><author><name>manage</name><uri>http://www.blogger.com/profile/11667453085737839768</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>7</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3412735064338726438.post-4426505416870648507</id><published>2007-02-16T14:02:00.000-08:00</published><updated>2007-02-16T14:14:52.988-08:00</updated><title type='text'>Oracle upgrade War Stories!</title><content type='html'>Recently, A consultant friend of mine was bragging about how successful a recent upgrade from 11.5.9 for 11.5.10 (AP,GL,AR,CE,PO,FA) was for his project. It was a huge success he claimed! This was an upgrade with no new functionality or application being added. The entire upgrade was completed in only nine months he told me! &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Success?&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Nine months to go one release version up didn't seem that successful to me. Please share your view points and war stories. I need to put my friends success into perspective.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3412735064338726438-4426505416870648507?l=orabiz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orabiz.blogspot.com/feeds/4426505416870648507/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3412735064338726438&amp;postID=4426505416870648507' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/4426505416870648507'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/4426505416870648507'/><link rel='alternate' type='text/html' href='http://orabiz.blogspot.com/2007/02/oracle-upgrade-war-stories.html' title='Oracle upgrade War Stories!'/><author><name>manage</name><uri>http://www.blogger.com/profile/11667453085737839768</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3412735064338726438.post-6909515362705807892</id><published>2007-02-06T09:59:00.000-08:00</published><updated>2007-02-06T10:12:24.193-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Application Management'/><title type='text'>File Version Help!</title><content type='html'>Need help determining a file verison in Oracle Apps.  Here is a handy query that will assist you in detemining the current version a file.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;  SELECT afl.filename, max(afv.version),APP_SHORT_NAME, SUBDIR&lt;br /&gt;    FROM applsys.ad_file_versions afv, applsys.ad_files afl &lt;br /&gt;   WHERE afv.file_id = afl.file_ID &lt;br /&gt;     AND afl.filename in &lt;br /&gt;        ('APXINWKB.fmb','APXHRUPD.rdf','CUSTOM.pll') -- insert your file names here&lt;br /&gt;GROUP BY afl.filename, APP_SHORT_NAME,SUBDIR&lt;br /&gt;&lt;br /&gt;Unix users:&lt;br /&gt;&lt;br /&gt;If the file is not in the above tables, use the following commands to determine the version number of a file.&lt;br /&gt;&lt;br /&gt;Change to the directory where file is:&lt;br /&gt;     cd $AP_TOP/reports/US&lt;br /&gt;&lt;br /&gt;Run following command with file name:&lt;br /&gt;     strings -a APXHRUPD.rdf | grep '$Header'&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3412735064338726438-6909515362705807892?l=orabiz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orabiz.blogspot.com/feeds/6909515362705807892/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3412735064338726438&amp;postID=6909515362705807892' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/6909515362705807892'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/6909515362705807892'/><link rel='alternate' type='text/html' href='http://orabiz.blogspot.com/2007/02/file-version-help.html' title='File Version Help!'/><author><name>manage</name><uri>http://www.blogger.com/profile/11667453085737839768</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3412735064338726438.post-7739229912122506287</id><published>2007-02-05T09:42:00.000-08:00</published><updated>2007-02-05T10:00:21.429-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='General'/><title type='text'>US Daylight Saving Change (DST)</title><content type='html'>Direct from ATG SUPPORT NEWSLETTER:&lt;br /&gt;&lt;br /&gt;What is the US Daylight Saving Change (DST) for 2007?&lt;br /&gt;&lt;br /&gt;Beginning in 2007, daylight saving time in the U.S. will begin on the second Sunday in March and end the first Sunday in November rather than beginning on the first Sunday in April and ending the last Sunday in October, as it did in the past. This change affects Canada as well. Mexico is still using the old DST rules. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&amp;p_id=403311.1"&gt;403311.1 &lt;/a&gt;&lt;br /&gt; United States Time Zone Changes 2007: E-Business Suite (EBS).&lt;br /&gt;&lt;br /&gt;Have you looked at our Knowledge Browser page on Metalink? See &lt;a href="http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&amp;p_id=403583.1"&gt;                                                      Daylight Savings Time (DST) USA 2007&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;You can also look at this external Blog about Clarifying E-Business Suite Daylight Saving Time 2007 Patching Requirements - &lt;a href="http://blogs.oracle.com/schan/2007/01/19#a1149"&gt;http://blogs.oracle.com/schan/2007/01/19#a1149&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3412735064338726438-7739229912122506287?l=orabiz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orabiz.blogspot.com/feeds/7739229912122506287/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3412735064338726438&amp;postID=7739229912122506287' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/7739229912122506287'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/7739229912122506287'/><link rel='alternate' type='text/html' href='http://orabiz.blogspot.com/2007/02/blog-post.html' title='US Daylight Saving Change (DST)'/><author><name>manage</name><uri>http://www.blogger.com/profile/11667453085737839768</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3412735064338726438.post-3515681669667047202</id><published>2006-12-06T10:37:00.000-08:00</published><updated>2006-12-06T10:43:09.007-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='General'/><title type='text'>OCP - Oracle Certified Professional Part V</title><content type='html'>OCP- Is it really valuable?&lt;br /&gt;&lt;br /&gt;That's the question a lot of people have . . .&lt;br /&gt;OCP- Is it really valuable?&lt;br /&gt;&lt;br /&gt;The answer to this question is not as straightforward as it appears.&lt;br /&gt;&lt;br /&gt;OCP is really valuable for people who are in the consulting industry. When I did my OCP at that time there was a condition (not sure whether the condition still exists). There were a number of requirements for a company to become Oracle Partners and one was to have a certain number of employees who are Oracle Certified (no matter in what stream they are certified). So companies used to give more money to OCPs.&lt;br /&gt;&lt;br /&gt;To read more click on : &lt;br /&gt;&lt;br /&gt;&lt;a href="http://blogs.ittoolbox.com/oracle/applications/archives/ocp-oracle-certified-professional-part-v-2273" target="_blank" &gt; An Oracle Applications Implementer's Journal &lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3412735064338726438-3515681669667047202?l=orabiz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orabiz.blogspot.com/feeds/3515681669667047202/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3412735064338726438&amp;postID=3515681669667047202' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/3515681669667047202'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/3515681669667047202'/><link rel='alternate' type='text/html' href='http://orabiz.blogspot.com/2006/12/ocp-oracle-certified-professional-part.html' title='OCP - Oracle Certified Professional Part V'/><author><name>manage</name><uri>http://www.blogger.com/profile/11667453085737839768</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3412735064338726438.post-9149887015557860921</id><published>2006-12-01T10:45:00.001-08:00</published><updated>2006-12-01T10:48:15.067-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Fusion'/><title type='text'>Oracle Fusion Applications</title><content type='html'>A temperature check of customer opinion&lt;br /&gt;By Freeform DynamicsPublished 2006 Nov 14, 22:13&lt;br /&gt;&lt;br /&gt;Following the acquisition of PeopleSoft and Siebel Systems, software giant Oracle became the proud owner of four ERP and three CRM product lines, all originally developed on different platforms and having different tooling to manage configuration and implementation. &lt;br /&gt;&lt;br /&gt;Against this background, customers have understandably been asking what happens next, and specifically what Oracle will be doing to ensure that past investments are protected and incremental value continues to be delivered. Oracle's answer is its Fusion Applications strategy, but are customers convinced?&lt;br /&gt;&lt;br /&gt;&lt;a href="http://research.theregister.co.uk/paper/view/84/ora-fusion-apps-nov06" target="_blank" &gt; Click here to download report. &lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3412735064338726438-9149887015557860921?l=orabiz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orabiz.blogspot.com/feeds/9149887015557860921/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3412735064338726438&amp;postID=9149887015557860921' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/9149887015557860921'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/9149887015557860921'/><link rel='alternate' type='text/html' href='http://orabiz.blogspot.com/2006/12/oracle-fusion-applications.html' title='Oracle Fusion Applications'/><author><name>manage</name><uri>http://www.blogger.com/profile/11667453085737839768</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3412735064338726438.post-5048753951406766213</id><published>2006-11-30T09:45:00.000-08:00</published><updated>2006-12-01T10:39:56.863-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='General'/><title type='text'>Inside Oracle's bombshell plan to support Red Hat</title><content type='html'>By Mark Brunelli, News Editor30 Nov 2006 SearchOracle.com&lt;br /&gt;&lt;br /&gt;&lt;a href="http://rss.techtarget.com/40.xml"&gt;&lt;/a&gt;&lt;a href="http://fusion.google.com/add?feedurl=http://rss.techtarget.com/40.xml"&gt;&lt;/a&gt;Oracle's bombshell plan to offer full support for Red Hat Inc.'s Linux distribution at half the price sent shock waves through the IT industry.&lt;br /&gt;Operating systems expert Tony Iams, a vice president and senior analyst with Ideas International in Port Chester, New York, says the move represents the first time a major applications vendor has jumped into the operating systems business in such a dramatic way. But, he adds, it's also a move that should have come as a major surprise to Red Hat.&lt;br /&gt;SearchOracle.com caught up with Iams to discuss the details of Oracle's plan and get his opinion on whether or not Oracle's strategy will severely hurt Red Hat's business over the long term. Here are some excerpts from that conversation:&lt;br /&gt;&lt;br /&gt;Click here to read full article.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://searchoracle.techtarget.com/originalContent/0,289142,sid41_gci1232341,00.html?asrc=SS_CLA_299442&amp;psrc=CLT_41" target="_blank" &gt; Inside Oracle's bombshell plan to support Red Hat&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3412735064338726438-5048753951406766213?l=orabiz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orabiz.blogspot.com/feeds/5048753951406766213/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3412735064338726438&amp;postID=5048753951406766213' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/5048753951406766213'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/5048753951406766213'/><link rel='alternate' type='text/html' href='http://orabiz.blogspot.com/2006/11/inside-oracles-bombshell-plan-to.html' title='Inside Oracle&apos;s bombshell plan to support Red Hat'/><author><name>manage</name><uri>http://www.blogger.com/profile/11667453085737839768</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3412735064338726438.post-518567818131159261</id><published>2006-11-22T18:14:00.000-08:00</published><updated>2006-11-22T18:20:03.125-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Fusion'/><title type='text'>Demystifying Fusion — OAUG’s Three-Step Fusion Program</title><content type='html'>For those who are a member of OAUG this might be a good session to attend.  If anyone does attend, please share your comments.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Learn more about the OAUG’s new Fusion program by attending the OAUG eLearning Community Thursday session, Demystifying Fusion — OAUG's Three-Step Fusion Program, which will be held on Thursday, November 30, 2006, at 12:00 p.m. Eastern Standard (New York) Time and then again at 8:00 p.m. Eastern Standard (New York) Time.&lt;br /&gt;&lt;br /&gt;Co-hosted by John Stouffer and Floyd Teter, OAUG Fusion Council chairs, this session is designed to “lift the curtain and show how the magic tricks are performed.” Subjects will include Fusion technology, Oracle’s path to Fusion Applications, building business processes in Fusion and the roadmap to Fusion Applications. &lt;br /&gt;&lt;br /&gt;&lt;a href="http://secure.meetingexpectations.com/oaug/eLearning/elSchedule.aspx?DayOfWeek=5" target="_blank" &gt; Register today for this must-attend session via OAUG eLearning.&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3412735064338726438-518567818131159261?l=orabiz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orabiz.blogspot.com/feeds/518567818131159261/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3412735064338726438&amp;postID=518567818131159261' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/518567818131159261'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/518567818131159261'/><link rel='alternate' type='text/html' href='http://orabiz.blogspot.com/2006/11/demystifying-fusion-oaugs-three-step.html' title='Demystifying Fusion — OAUG’s Three-Step Fusion Program'/><author><name>manage</name><uri>http://www.blogger.com/profile/11667453085737839768</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3412735064338726438.post-8618460048557668853</id><published>2006-11-22T16:09:00.000-08:00</published><updated>2006-11-22T17:54:44.092-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Fusion'/><title type='text'>Fusion Applications - The More You Know, The Better You'll Feel</title><content type='html'>Here is an interesting blog that gives one users opinions of Oracle Apps.  Floyd Teter has several blogs worth looking at to get a customer's prospective on the future of Oracle Fusion.  I posted his lastest blog and you can follow the link below to read his other blogs.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://orclville.blogspot.com/" target="_blank" &gt; Fusion Applications - The More You Know, The Better You'll Feel  &lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Every morning, I check my favorite Oracle-related news sources and blogs for the latest buzz. Today, I stumbled across a great piece of research at The Register. The article, "Oracle's Fusion Applications Strategy: What The Customers Think", is based on 321 responses to a survey of Oracle Applications Users who are members of The Register's Technology Panel. This is pretty similar to the Fusion Applications Customer Profiling initiative recently completed by the International Oracle User Council (IOUC), but The Register's sample size is much larger.&lt;br /&gt;&lt;br /&gt;The IOUC survey results were recently presented during Oracle OpenWorld (OOW). You can find the presentation and review the results for yourself at the OOW presentation download site.&lt;br /&gt;&lt;br /&gt;The Register survey results indicated that Oracle Application customers were concerned about:&lt;br /&gt;&lt;br /&gt;1. Oracle's lack of clarity and consistency in dealing with the future management of its multiple product lines.&lt;br /&gt;&lt;br /&gt;2. The possibility that Oracle will delivery an immature and inelegantly integrated set of applications in order to meet self-imposed schedule milestones.&lt;br /&gt;&lt;br /&gt;3. Fear about costs, disruption and protection of investments, mostly rooted in a concern that a migration to Oracle Fusion Applications will be forced upon them at some time in the future.&lt;br /&gt;&lt;br /&gt;After sharing these concerns and concluding that only 15% of customers were completely sold on the Oracle Fusion Application strategy, The Register survey disclosed another very interesting result: there is a clear correlation between the level of customer confidence and the customer's depth of Fusion knowledge. For example, customers stating that the Fusion story is well understood in their organizations are also very confident of their investment being protected. These same customers are also very confident that they will obtain benefits in application flexibility through Oracle Fusion Applications. In other words, the more customers understand about Fusion Applications, the more confident they become in Oracle's Fusion Applications strategy...the more you know, the better you'll feel.&lt;br /&gt;&lt;br /&gt;I share this timely information from The Register survey because the Oracle Applications Users Group (OAUG) is teaming with Solution Beacon to provide Oracle Applications customers with a wonderful opportunity to feel better with The Road To Las Vegas workshops. The overriding theme of the workshops is "Demystifying Fusion - OAUG's Three Step Fusion Program". The presentations will include some recommendations on getting your organization to Fusion Applications, as well as some hands-on workshops (BPEL and RAC are just a few of the workshop subjects). The overall intent of The Road to Las Vegas is to educate Oracle Applications customers about Fusion Applications - including Release 12, which is an interation on the way to Fusion Applications.&lt;br /&gt;&lt;br /&gt;So, the bottom line: you'll feel better about Oracle Fusion Applications if you attend The Road to Las Vegas workshops ;)&lt;br /&gt;&lt;br /&gt;&lt;a href="http://orclville.blogspot.com/" target="_blank" &gt; http://orclville.blogspot.com &lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3412735064338726438-8618460048557668853?l=orabiz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orabiz.blogspot.com/feeds/8618460048557668853/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3412735064338726438&amp;postID=8618460048557668853' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/8618460048557668853'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/8618460048557668853'/><link rel='alternate' type='text/html' href='http://orabiz.blogspot.com/2006/11/fusion-applications-more-you-know.html' title='Fusion Applications - The More You Know, The Better You&apos;ll Feel'/><author><name>manage</name><uri>http://www.blogger.com/profile/11667453085737839768</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3412735064338726438.post-4162882734506480701</id><published>2006-11-09T20:17:00.000-08:00</published><updated>2006-11-09T20:26:43.374-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Fusion'/><title type='text'>How Customers Can Prepare for Fusion Today</title><content type='html'>Click the link below access a quick pod cast on how customers can start preparing for Fusion today.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://streaming.oracle.com/ebn/podcasts/applications/5124423.mp3" target="_blank" &gt;How Customers Can Prepare for Fusion Today &lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3412735064338726438-4162882734506480701?l=orabiz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orabiz.blogspot.com/feeds/4162882734506480701/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3412735064338726438&amp;postID=4162882734506480701' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/4162882734506480701'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/4162882734506480701'/><link rel='alternate' type='text/html' href='http://orabiz.blogspot.com/2006/11/how-customers-can-prepare-for-fusion.html' title='How Customers Can Prepare for Fusion Today'/><author><name>manage</name><uri>http://www.blogger.com/profile/11667453085737839768</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3412735064338726438.post-6622638582551473694</id><published>2006-11-06T19:24:00.001-08:00</published><updated>2006-11-09T20:40:47.428-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='General'/><title type='text'>One World may not be enough for some of us!</title><content type='html'>Here's a post copied from an informative blog by Frank Scavo at "&lt;a href="http://fscavo.blogspot.com" target="_blank" &gt;The Enterprise System Spectator&lt;/a&gt;". I think that Frank has hit the nail on the head! It look like Larry's truly wants to rule the world. Start shorting your shares of Red Hat.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Oracle plays hardball with Linux support&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Oracle just threw a monkey-wrench into the Linux machine shop. It announced last week at its user conference that it will take Red Hat's distribution of Linux, remove Red Hat's trademarks, and begin maintaining the product under a support agreement for about half the price of what Red Hat charges. &lt;br /&gt;&lt;br /&gt;Oracle is touting its new offering, dubbed Unbreakable Linux, as a way to increase the enterprise-class status of Linux. "Oracle's Unbreakable Linux program is available to all Linux users for as low as $99 per system per year," said Oracle co-President Charles Phillips in Oracle's press release. "You do not have to be a user of Oracle software to qualify. This is all about broadening the success of Linux. To get Oracle support for Red Hat Linux all you have to do is point your Red Hat server to the Oracle network. The switch takes less than a minute."&lt;br /&gt;&lt;br /&gt;What's striking in Oracle's press release is how many other parties are quoted as positive about Oracle's move. Oracle got Dell, Intel, HP, IBM, Accenture, AMD, Bearing Point, EMC, BMC, and NetApp all to say good things about Oracle's decision. Some of them that have their own Linux support services, such as HP and IBM, are caught between maintaining their relationship with Oracle and building their own Linux businesses. &lt;br /&gt;&lt;br /&gt;Red Hat is in a really tough position, with its stock plunging 24% on the news. It responded on its website, with a FAQ entitled "Unfakeable Linux," in which it points out deficiencies and incompatibilities in Oracle's offering, specifically Oracle's lack of support for Red Hat and JBoss applications, as well has potential hardware, software, and other incompatibilities between Oracle and Red Hat Linux. (Red Hat's website is extremely slow today, probably because of all the hits it is getting from the Linux community on this FAQ.)&lt;br /&gt;&lt;br /&gt;As usual, the most insightful commentary is on Slashdot, if you can find it. For example, "Korgan" writes...&lt;br /&gt;Actually, the whole reason they're doing this is because they're pissed off with Red Hat for buying JBoss when Oracle wanted it.&lt;br /&gt;&lt;br /&gt;I kid you not. Search Google for comments from Larry just after Red Hat made the purchase and you'll see why.&lt;br /&gt;&lt;br /&gt;This is just continuing that. Oracle at the time said they were considering their own Linux distro in an attempt to compete with Redhat. To paraphrase Ellison...&lt;br /&gt;&lt;br /&gt;If Redhat are going to step on our toes, we'll stomp on theirs&lt;br /&gt;&lt;br /&gt;This isn't going to make any real difference to Redhat in the long term. Oracle would be smart to position their distro as the best possible platform for their own primary products (such as the databases, ERP software and so on.) However, the chances of that are pretty slim.&lt;br /&gt;&lt;br /&gt;Given Oracle just recently released a mammoth patch for their 9i and 11i products that, while containing more than 100 bug fixes, didn't manage to fix all known bugs, I seriously doubt they're in any way prepared to take on the responsibility of a full fledged Enterprise ready Operating System. This is going to kick them hard.&lt;br /&gt;Although I think this may overstate Oracle's motives, I don't think it is far off. It wouldn't surprise me at all, now, if Oracle's intention is to drive down Red Hat's stock price and ultimately be able to buy Red Hat along with its recent JBoss acquisition. &lt;br /&gt;&lt;br /&gt;That would allow Oracle to own the entire technology stack, from operating system through database and middleware, all the way to enterprise applications.&lt;br /&gt;&lt;br /&gt;To read more of Frank's blog please click on the link:&lt;a href="http://fscavo.blogspot.com" target="_blank" &gt;The Enterprise System Spectator&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3412735064338726438-6622638582551473694?l=orabiz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orabiz.blogspot.com/feeds/6622638582551473694/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3412735064338726438&amp;postID=6622638582551473694' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/6622638582551473694'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/6622638582551473694'/><link rel='alternate' type='text/html' href='http://orabiz.blogspot.com/2006/11/one-world-may-not-be-enough-for-some-of.html' title='One World may not be enough for some of us!'/><author><name>manage</name><uri>http://www.blogger.com/profile/11667453085737839768</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3412735064338726438.post-2601519706716274112</id><published>2006-11-04T19:14:00.000-08:00</published><updated>2006-11-04T19:26:39.475-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='General'/><title type='text'>OpenWorld 2006 sessions are now available online</title><content type='html'>The presentations for the OpenWorld 2006 sessions are now available online. You can download PDFs of their presentations or watch videos of the keynote speakers.&lt;br /&gt;&lt;br /&gt;The login information needed to download these presentations is displayed at the top of the Content Catalog.  You will need to use the following usr id and password&lt;br /&gt;&lt;br /&gt;Username: cboracle&lt;br /&gt;Password: oraclec6&lt;br /&gt;&lt;br /&gt;Click the link below access the presentations:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www28.cplan.com/cc139/catalog.jsp?ilc=139-1&amp;ilg=english&amp;isort_sessions=&amp;isort_demos=&amp;isort_exhibitors=&amp;is=yes&amp;ip=%3C%2Fipresentations%3E&amp;search_sessions=yes&amp;search_exhibitors=yes&amp;search_demos=yes&amp;icriteria3=+&amp;icriteria1=+&amp;icriteria9=19953&amp;icriteria6=&amp;icriteria8=&amp;icriteria4=+&amp;icriteria5=&amp;icriteria7=+" target="_blank" &gt;OpenWorld 2006 Applications Technology session &lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3412735064338726438-2601519706716274112?l=orabiz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orabiz.blogspot.com/feeds/2601519706716274112/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3412735064338726438&amp;postID=2601519706716274112' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/2601519706716274112'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/2601519706716274112'/><link rel='alternate' type='text/html' href='http://orabiz.blogspot.com/2006/11/openworld-2006-sessions-are-now.html' title='OpenWorld 2006 sessions are now available online'/><author><name>manage</name><uri>http://www.blogger.com/profile/11667453085737839768</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3412735064338726438.post-1528646478812021274</id><published>2006-11-04T08:43:00.000-08:00</published><updated>2006-11-04T19:27:25.554-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Application Management'/><title type='text'>Inside the Oracle Concurrent Manager</title><content type='html'>Here is a nice article by Terry Oakes and Don Burleson concerning troubleshooting the Concurrent Managers &lt;br /&gt;&lt;br /&gt; The concurrent managers in the Oracle e-Business suite serve several important administrative functions. Foremost, the concurrent managers ensure that the applications are not overwhelmed with requests, and the second areas of functions are the management of batch processing and report generation.&lt;br /&gt;This article will explore tools that are used by experienced administrators to gain insight and improved control over the concurrent management functions. We will explore how the concurrent managers can be configured via the GUI, and also explore scripts and dictionary queries that are used to improve the functionality of concurrent management.&lt;br /&gt;&lt;br /&gt;Follow this link for the remainder of the article. &lt;br /&gt;&lt;a href="http://www.dbazine.com/oracle/or-articles/orapps1" target="_blank" &gt;Inside the Oracle Concurrent Manager&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3412735064338726438-1528646478812021274?l=orabiz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orabiz.blogspot.com/feeds/1528646478812021274/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3412735064338726438&amp;postID=1528646478812021274' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/1528646478812021274'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/1528646478812021274'/><link rel='alternate' type='text/html' href='http://orabiz.blogspot.com/2006/11/inside-oracle-concurrent-manager.html' title='Inside the Oracle Concurrent Manager'/><author><name>manage</name><uri>http://www.blogger.com/profile/11667453085737839768</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3412735064338726438.post-7140017488317074126</id><published>2006-11-02T04:48:00.000-08:00</published><updated>2006-11-02T11:50:34.489-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Patching'/><title type='text'>ATG News RUP (Rollup) FAQ</title><content type='html'>Here is a useful excerpt from Oracle's latest ATG news letter release that discusses Oracle's current ATG patch roll up methodology.&lt;br /&gt;&lt;br /&gt;This note briefly describes the new ATG (Application Technology Group) Minimum Patching Baseline and on-going baseline policy.  As of April 2006, ATG has changed its Patching Baseline to ATG Product Family Pack H Rollup 3 (also known as ATG_PF.H RUP 3, patch 4334965, or just "RUP 3").  We have received many questions about what the minimum patching baseline and changes to it really mean.  This note will describe the patching baseline policy, answer questions about how you may be affected, and give recommendations about how you should manage your applications installations given this policy.&lt;br /&gt;First a brief discussion of our patching process:  For any new bug fix that we make, our standard process is to make the changes in our main line (latest) files.  Once the fix is successfully developed and unit tested, we create an unreleased patch containing these changes and include that patch in the next ATG RUP.  This next ATG RUP remains unreleased "in-progress" for a period of time, accumulating all new fixes over that time, but also includes all previous fixes from earlier RUPS (it is cumulative).  Approximately every six months we freeze the contents of the in-progress RUP and then put it through comprehensive integration testing, install testing and Applications product team certification.  Although the cumulative nature of the RUP makes it large in terms of number of files delivered, the heavy investment in testing ultimately makes it safest way for you to get general maintenance updates.  Another important benefit of moving to an ATG RUP is that you are no longer "alone" on some custom code level for ATG, but part of a larger community on the same code level.  This allows both you and Support to benefit from the collective wisdom of customers who have already adopted that code level (We regularly update the "About doc" for each RUP with the latest in known issues or advice). &lt;br /&gt; Since RUPs are only produced about twice a year, we must use a different technique to release fixes for serious defects quickly.  The standard process for this case is to create a one-off patch, which involves choosing a baseline code level (such as one of the ATG RUPs) and then defining a small patch that includes the fixed files plus any other files necessary to satisfy code dependencies.  This code dependency analysis can be hard to do if the fixed files have changed significantly relative to the baseline, and at some point it becomes necessary set limits on the earliest code level against which we will produce one-off patches.  One-off patches have the advantage of being small, but do not go through Applications product team certification or exhaustive regression testing, and are therefore not recommended for general uptake if that same fix is also available in a RUP.&lt;br /&gt; The ATG Minimum Patching Baseline defines the earliest code level against which we will develop a new one-off patch.  The purpose of defining a minimum patching baseline is to keep the code-dependency analysis problem manageable and keep the number of expected testing combinations reasonable.  This policy allows ATG Development to focus our efforts on providing better service to the majority of you who are staying reasonably current with ATG RUPs.  As time goes and new RUPs are released we must correspondingly advance the minimum patching baseline.  The new policy is that we will support the Current and Previous production Rollups (RUP N and RUP N-1) as baselines for general one-off patching.  For example: since ATG RUP 4 was released on August 4 2006, we are shifting to a policy where ATG RUP 3 is the minimum patch baseline and ATG RUP 4 is default patching baseline (with some lag-time to allow for uptake of RUP 4).&lt;br /&gt; Please note that the minimum patching baseline only affects the production of new ATG patches.  All existing patches that were released for issues on earlier baselines will remain available for customer download.  Earlier code levels are fully supported, in that Support and ATG Development will analyze any reported issues, even from earlier ATG code levels.  But if the resolution to a reported issue requires the creation of a new one-off patch, then that patch will have a dependency on at least the minimum patching baseline.&lt;br /&gt;&lt;br /&gt;Here are some frequently asked questions:&lt;br /&gt; Q: I do not plan to upgrade to ATG RUP 3 (or RUP 4) for many months, can I expect continued support during this time?&lt;br /&gt;A: The baseline policy does not affect whether you are considered supported.  Support and ATG Development will investigate all reported issues to the best of our ability.  The baseline policy only affects the development of new patches.  If you are not on the ATG minimum patching baseline and require an emergency fix against your code level, it might be possible to produce a backport for you, but this will require a backport request, business impact justification, and VP approval.&lt;br /&gt; Q: I am running happily on an older code level, should I plan to upgrade to the ATG minimum patching baseline?&lt;br /&gt;A: Anyone not currently on the ATG Minimum Patching Baseline (RUP 3) is advised to make plans to update to ATG RUP 4 by the end of this calendar year.   ATG RUP 3 is the minimum baseline, but if you need to upgrade you might as well move directly to RUP 4.  You should NOT wait for a reason to move to RUP 4, staying current with ATG RUPs should be a regular planned activity, even if a system appears to be running fine.    The RUPs contain a number of performance, stability, functional, and security fixes that are not available through any other mechanism, and in any case it is better to move to ATG RUPs under controlled conditions, rather than as a side effect requirement from applying some other change.&lt;br /&gt; Q: Are existing patches and technology certifications affected by the new ATG Minimum Patching Baseline?&lt;br /&gt;A: No.  Existing patches and technology certifications that were tested against earlier ATG code level will remain valid options for you.  For example, the 10gR2 Database certification requires 11.5.10 CU2, and this fact is not changed by the new ATG baseline.  Similarly, all existing product and ATG patches that work against earlier code levels remain available.  The baseline policy only affects production and testing of new patches from ATG.&lt;br /&gt; Q: Will application product team patches now require the ATG Minimum Patching Baseline as a pre-requisite?&lt;br /&gt;A: This is a decision that application product teams will make independently.  In general, applications patches should list their minimum ATG code level as the prerequisite.&lt;br /&gt;Q: Will ATG RUP 4A work on 11.5.9 or earlier? &lt;br /&gt;A:  Yes, but with some caveats.  Our goal with ATG RUPs is to release all known defect fixes while maintaining 100% backward compatibility with existing applications product code (which we understand can be more difficult to upgrade than technology code).  ATG RUPs are in fact the only patches from ATG that go through a full backward compatibility certification program by all Applications product families.  Any behavior change at the technology layer carries some risk of causing an unintended side-effect at the application product level, and we find and correct most such issues during RUP certification.  But in some cases an in-compatible ATG change must remain in effect for security or stability reasons or is discovered too late.  Incompatible changes at the ATG level may require a small "co-requisite" patch for affected application products to continue operating as normal.  Make sure to read the "About" document for the ATG RUP carefully to find the latest news on known co-requisite patches for Applications products.  We are continually striving to eliminate unnecessary co-requite patches and prevent the introduction of new ones. &lt;br /&gt;The ATG Minimum Patching Baseline and RUP policy are intended to provide the best long-term product quality for you, offering a predictable and sustainable approach to continuously improve the E-Business Suites stability, performance, and security.  We encourage everyone to make proactive adoption of ATG RUPs a standard practice.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3412735064338726438-7140017488317074126?l=orabiz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orabiz.blogspot.com/feeds/7140017488317074126/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3412735064338726438&amp;postID=7140017488317074126' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/7140017488317074126'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/7140017488317074126'/><link rel='alternate' type='text/html' href='http://orabiz.blogspot.com/2006/11/atg-news-rup-rollup-faq.html' title='ATG News RUP (Rollup) FAQ'/><author><name>manage</name><uri>http://www.blogger.com/profile/11667453085737839768</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3412735064338726438.post-789822914620568415</id><published>2006-10-31T18:43:00.000-08:00</published><updated>2006-11-03T10:16:34.469-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Patching'/><category scheme='http://www.blogger.com/atom/ns#' term='Security'/><title type='text'>11i: CPU October 2006 - E-Business Suite Impact</title><content type='html'>For those who are in the process of evaluating the impact of the recent October CPU patches as it concerns the E-Business Suite, Integrigy has published a useful analysis report. &lt;a href="http://www.integrigy.com/oracle-security-blog/archive/2006/10/20/oracle-cpu-oct-2006-ebs-impact" target="_blank" &gt;11i: CPU October 2006 - E-Business Suite Impact&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3412735064338726438-789822914620568415?l=orabiz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orabiz.blogspot.com/feeds/789822914620568415/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3412735064338726438&amp;postID=789822914620568415' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/789822914620568415'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/789822914620568415'/><link rel='alternate' type='text/html' href='http://orabiz.blogspot.com/2006/10/11i-cpu-october-2006-e-business-suite.html' title='11i: CPU October 2006 - E-Business Suite Impact'/><author><name>manage</name><uri>http://www.blogger.com/profile/11667453085737839768</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3412735064338726438.post-220567639989382558</id><published>2006-10-30T18:56:00.000-08:00</published><updated>2006-11-03T10:18:05.150-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Form Personalization'/><title type='text'>Oracle Form Personalization</title><content type='html'>For those who are interest in Oracle Form Personalization in 11.5.10 here is a useful blog by Joel Asselin &lt;a href="http://blogs.ittoolbox.com/oracle/appstraction" target="_blank" &gt;The Apps Traction Blog&lt;/a&gt;. There you will see several examples of Forms Personalization ranging from simple to complex. You can also follow my Favorite Link --&gt; "The Apps Traction Blog: Joel Asselin" to get to this blog.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3412735064338726438-220567639989382558?l=orabiz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orabiz.blogspot.com/feeds/220567639989382558/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3412735064338726438&amp;postID=220567639989382558' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/220567639989382558'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/220567639989382558'/><link rel='alternate' type='text/html' href='http://orabiz.blogspot.com/2006/10/oracle-form-personalization.html' title='Oracle Form Personalization'/><author><name>manage</name><uri>http://www.blogger.com/profile/11667453085737839768</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3412735064338726438.post-8112655684529151247</id><published>2006-10-28T13:15:00.000-07:00</published><updated>2006-11-03T10:23:29.487-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Security'/><title type='text'>11i: Best Practices for Securing the E-Business Suite Updated</title><content type='html'>Here is a recent blog by Stephen Kost CIO of Integrigy.  To read more blogs by Stephen Kost click on my Favorite's link &lt;a href="http://www.integrigy.com/oracle-security-blog" target="_blank" &gt;Oracle E-Business Security Blog :Stephen Kost&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;October 26, 2006&lt;br /&gt;&lt;a href="http://www.integrigy.com/oracle-security-blog/topics/Oracle%20E-Business%20Suite" target="_blank" &gt;&lt;/a&gt;&lt;br /&gt;Oracle has updated the white paper "Best Practices for Securing Oracle E-Business Suite version 3.0.4" &lt;a href="https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&amp;amp;p_id=189367.1" target="_blank" &gt;Metalink Note ID 189367.1&lt;/a&gt;. The major changes to the document include -&lt;br /&gt;Added the new Oracle Applications 11.5.10 application accounts AME_INVALID_APPROVER and XML_USER to the list of accounts that require passwords changes and that should be disabled. (p. 21)&lt;br /&gt;Additional instructions for securing the APPLSYSPUB database account. (p. 52)&lt;br /&gt;Added the forms FNDFFMDC ("Define Descriptive Flexfield Segments") and FNDFFMVS ("Define Flex Value Sets")to the list of forms that accept SQL statements. (p. 47)If you already implemented all the recommendations, you should look at the following -&lt;br /&gt;Check for the application accounts AME_INVALID_APPROVER and XML_USER and disable them and change the password if they exist.&lt;br /&gt;Review access to the forms FNDFFMDC and FNDFFMVS. I have not reviewed what responsibilities usually have access to these forms. Since they involve Flexfields, these two are different than the other AOL forms on the restricted access list and may require some work to secure. If you have not implemented the "Managed SQL*Net Access Feature" in 11.5.10, then direct SQL*Net access to the database and access to the APPLSYSPUB database account is your most significant security hole. The most significant issue is that many of the security vulnerabilities fixed in the Critical Patch Updates can be easily exploited (see page 3 of our &lt;a href="http://www.integrigy.com/security-resources/analysis/oracle-cpu-october-2006/view" target="_blank" &gt;analysis&lt;/a&gt;). However, Integrigy has previously not recommended changing the APPLSYSPUB password because of known issues and since the password is often displayed or could be easily obtained. Rather we have pushed clients to make sure the APPLSYSPUB account is as secure as possible (see &lt;a href="http://www.integrigy.com/oracle-security-blog/archive/2006/07/15/applsyspub-privileges" target="_blank" &gt;here&lt;/a&gt;).Almost all the disclosure issues with the APPLSYSPUB password have been corrected in 11.5.10.2 and the issues with changing the password seem to have mostly been resolved. There is a procedure on page 52 that describes how to change the APPLSYSPUB account and the required patches to make sure AutoConfig changes the password in all the correct places.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3412735064338726438-8112655684529151247?l=orabiz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orabiz.blogspot.com/feeds/8112655684529151247/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3412735064338726438&amp;postID=8112655684529151247' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/8112655684529151247'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/8112655684529151247'/><link rel='alternate' type='text/html' href='http://orabiz.blogspot.com/2006/10/11i-best-practices-for-securing-e.html' title='11i: Best Practices for Securing the E-Business Suite Updated'/><author><name>manage</name><uri>http://www.blogger.com/profile/11667453085737839768</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3412735064338726438.post-6636080792610347911</id><published>2006-10-27T10:04:00.000-07:00</published><updated>2006-11-03T10:21:12.313-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Fusion'/><title type='text'>New World Order or Last days in Rome?</title><content type='html'>The future is coming! Will Oracle pull this off or is this just another sales pitch? Listen to the following Podcast &lt;a href="http://feeds.feedburner.com/OracleAppcast?m=30" target="_blank" &gt;Podcast: Oracle's Fusion User Experience is a Key Ingredient to their Customers' Success &lt;/a&gt; and feel free to comment.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3412735064338726438-6636080792610347911?l=orabiz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orabiz.blogspot.com/feeds/6636080792610347911/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3412735064338726438&amp;postID=6636080792610347911' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/6636080792610347911'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3412735064338726438/posts/default/6636080792610347911'/><link rel='alternate' type='text/html' href='http://orabiz.blogspot.com/2006/10/new-world-order-or-last-days-in-rome.html' title='New World Order or Last days in Rome?'/><author><name>manage</name><uri>http://www.blogger.com/profile/11667453085737839768</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
