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

<channel>
	<title>get along with Oracle and APEX &#187; APEX 4.0</title>
	<atom:link href="http://www.oracle-and-apex.com/category/apex-4-0/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.oracle-and-apex.com</link>
	<description>by Peter Raganitsch</description>
	<lastBuildDate>Mon, 23 Aug 2010 08:26:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Customize the APEX Workspace Login Page</title>
		<link>http://www.oracle-and-apex.com/customize-the-apex-workspace-login-page/</link>
		<comments>http://www.oracle-and-apex.com/customize-the-apex-workspace-login-page/#comments</comments>
		<pubDate>Mon, 23 Aug 2010 08:26:03 +0000</pubDate>
		<dc:creator>Peter Raganitsch</dc:creator>
				<category><![CDATA[APEX 4.0]]></category>
		<category><![CDATA[ApexLib]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[APEX]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Tipps]]></category>

		<guid isPermaLink="false">http://www.oracle-and-apex.com/?p=390</guid>
		<description><![CDATA[One nagging thing about APEX occurs often to me. It&#8217;s the inability to customize the Workspace Login Page.
In APEX Instances within corporations you may want to display your own Logo or some custom text explaining your developers what to do and what not.
Some lines of javascript and jQuery to the rescue, i build a nice [...]]]></description>
			<content:encoded><![CDATA[<p>One nagging thing about APEX occurs often to me. It&#8217;s the inability to customize the Workspace Login Page.</p>
<p>In APEX Instances within corporations you may want to display your own Logo or some custom text explaining your developers what to do and what not.</p>
<p><span id="more-390"></span>Some lines of javascript and jQuery to the rescue, i build a nice little function which is super easy to call and gives you full flexibility to customize the Workspace Login Page.</p>
<p>Many thanks to <a href="http://unclechrisblog.blogspot.com/" target="_blank">Chris</a> for testing and reviewing the function and some important hints on how to improve my code!</p>
<p>This is what the Login Page per Default looks like:</p>
<p><a href="http://www.oracle-and-apex.com/blog/wp-content/uploads/oaa_apex_workspace_login_before.png"><img class="alignnone size-medium wp-image-391" title="oaa_apex_workspace_login_before" src="http://www.oracle-and-apex.com/blog/wp-content/uploads/oaa_apex_workspace_login_before-400x316.png" alt="" width="400" height="316" /></a></p>
<p>After calling the new function the Login Page looks much nicer (notice the missing 3 regions at the bottom):</p>
<p><a href="http://www.oracle-and-apex.com/blog/wp-content/uploads/oaa_apex_workspace_login_after.png"><img class="alignnone size-medium wp-image-392" title="oaa_apex_workspace_login_after" src="http://www.oracle-and-apex.com/blog/wp-content/uploads/oaa_apex_workspace_login_after-400x247.png" alt="" width="400" height="247" /></a></p>
<p>Looks way better, doesn&#8217;t it?</p>
<p>Now the most important part, here is all the code you need to get it running on your instance, you put this code in the &#8220;Login Message&#8221; which is defined in the Apex Administration panel under &#8220;Manage Instance&#8221;:</p>
<pre class="brush: html">&lt;script type=&quot;text/javascript&quot; src=&quot;http://apexlib.oracleapex.info/ApexLib_Loginpage.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
apexlib.loginpage.customizeLoginPage
( &quot;click-click IT Solutions&quot;
, &quot;1.8em&quot;
, &quot;Welcome to the APEX Hosting Instance of &lt;a href=&#039;http://www.click-click.at&#039; target=&#039;_blank&#039;&gt;click-click IT Solutions&lt;/a&gt;.&lt;br /&gt;If you don&#039;t have a login please contact the Administrator to get one.&lt;br /&gt;&lt;br /&gt;Have a nice day!&quot;
, &quot;http://www.click-click.at/wp-content/themes/click/images/clickclick_logo.gif&quot;
, &quot;http://www.click-click.at&quot;
, false
, false
, false
, false);
&lt;/script&gt;
</pre>
<p>You can hotlink the new ApexLib_Loginpage.js directly from http://apexlib.oracleapex.info, or you <a href="http://apexlib.svn.sourceforge.net/viewvc/apexlib/trunc/Server/Tools/ApexLib_Loginpage.js" target="_blank">download a local copy</a> from the ApexLib Sourceforge SVN.</p>
<p>Taking a look at the function declaration should explain the options:</p>
<pre class="brush: html">
apexlib.loginpage.customizeLoginPage = function
( pLoginRegionTitle          // string to be displayed in the region header
, pLoginRegionTitleFontSize  // font-size for the region title, should include em or px
, pLoginRegionText           // replaces the explanation text inside the login-region, can include HTML
, pLoginRegionLogoImage      // URL pointing to an image with max size 240x200px
, pLinkLogoToHref            // when user clicks the new Logo, this URL will be opened
, pShowLoginMessageRegion    // true/false: show the Login Message Region (the yellow one)
, pShowWorkspaceRegion       // true/false: show the Workspace Region
, pShowGettingStartedRegion  // true/false: show the Getting Started Region
, pShowCommunityRegion       // true/false: show the Community Region
)
</pre>
<img src="http://www.oracle-and-apex.com/blog/?ak_action=api_record_view&id=390&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.oracle-and-apex.com/customize-the-apex-workspace-login-page/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>APEX 4.0 Available Updates</title>
		<link>http://www.oracle-and-apex.com/apex-4-0-available-updates/</link>
		<comments>http://www.oracle-and-apex.com/apex-4-0-available-updates/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 10:38:32 +0000</pubDate>
		<dc:creator>Peter Raganitsch</dc:creator>
				<category><![CDATA[APEX 4.0]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[ApexLib]]></category>

		<guid isPermaLink="false">http://www.oracle-and-apex.com/?p=384</guid>
		<description><![CDATA[One of the smaller but really helpful and cool features of Oracle APEX 4.0 is the Available Updates Section.
Yesterday the Patchset APEX 4.0.1.00.03 was released and today i can see it in my APEX Builder.As you can see on the picture below there is a new small section on the right side which appears only [...]]]></description>
			<content:encoded><![CDATA[<p>One of the smaller but really helpful and cool features of Oracle APEX 4.0 is the Available Updates Section.</p>
<p><a href="http://joelkallman.blogspot.com/2010/08/application-express-401-released.html" target="_blank">Yesterday</a> the <a href="http://www.oracle.com/technetwork/developer-tools/apex/401-patch-166923.html" target="_blank">Patchset APEX 4.0.1.00.03</a> was released and today i can see it in my APEX Builder.<span id="more-384"></span>As you can see on the picture below there is a new small section on the right side which appears only if there are any important news.</p>
<p><a href="http://www.oracle-and-apex.com/blog/wp-content/uploads/oaa_available_updates_full.png"><img class="alignnone size-medium wp-image-386" title="oaa_available_updates_full" src="http://www.oracle-and-apex.com/blog/wp-content/uploads/oaa_available_updates_full-400x199.png" alt="" width="400" height="199" /></a></p>
<img src="http://www.oracle-and-apex.com/blog/?ak_action=api_record_view&id=384&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.oracle-and-apex.com/apex-4-0-available-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Famous APEX Builder Plugin now ready for APEX 4.0</title>
		<link>http://www.oracle-and-apex.com/famous-apex-builder-plugin-now-ready-for-apex-4-0/</link>
		<comments>http://www.oracle-and-apex.com/famous-apex-builder-plugin-now-ready-for-apex-4-0/#comments</comments>
		<pubDate>Sun, 15 Aug 2010 22:14:13 +0000</pubDate>
		<dc:creator>Peter Raganitsch</dc:creator>
				<category><![CDATA[APEX 4.0]]></category>
		<category><![CDATA[ApexLib]]></category>

		<guid isPermaLink="false">http://www.oracle-and-apex.com/?p=372</guid>
		<description><![CDATA[The Oracle APEX Builder Plugin is a productivity and usability  enhancement tool for the development environment of Oracle Application  Express (APEX).
It integrates with Firefox and Internet Explorer to put a wealth of new features to your favourite development tool. The good news is, it&#8217;s Open Source and you can use it for free!
After [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://builderplugin.oracleapex.info" target="_blank">Oracle APEX Builder Plugin</a> is a productivity and usability  enhancement tool for the development environment of Oracle Application  Express (APEX).</p>
<p>It integrates with Firefox and Internet Explorer to put a wealth of new features to your favourite development tool. The good news is, it&#8217;s Open Source and you can use it <strong>for free</strong>!<span id="more-372"></span></p>
<p>After reading Håvard Kristiansen <a href="http://monkeyonoracle.blogspot.com/2010/07/apex-40-builder-hotkeys.html" target="_blank">Blogpost about Hotkeys for APEX 4.0</a> i decided to take <a href="http://www.inside-oracle-apex.com/" target="_blank">Patrick Wolf</a>&#8217;s APEX <a href="http://builderplugin.oracleapex.info" target="_blank">BuilderPlugin</a> and adapt it to be used with APEX 4.0.</p>
<p>It was easier than i thought, basically only the HTML Structure of the APEX Builder had changed and the BuilderPlugin needed different jQuery Selectors.</p>
<p>The new <a href="http://sourceforge.net/project/platformdownload.php?group_id=194148" target="_blank">Version 2.0 of the APEX BuilderPlugin</a> now supports APEX 4.0 and 3.x.</p>
<p>Please read the <a href="http://builderplugin.oracleapex.info/documentation.html" target="_blank">Documentation</a> to get a grip on what the BuilderPlugin can do for you.</p>
<p>I also added some default Keyboard Shortcuts:</p>
<ul>
<li>F8: Run Application</li>
<li>F10: Apply Changes or Create Button</li>
<li>Ctrl+Shift+S: go to Shared Components</li>
<li>Ctrl+Shift+E: go to Edit Page</li>
<li>Ctrl+Shift+&gt;: go to next Page/Wizard Step</li>
<li>Ctrl+Shift+&lt;: go to previous Page/Wizard Step</li>
</ul>
<p>You can easily change the defined Shortcuts by editing the apex_builder_plugin.js File as described in the documentation.</p>
<p><strong>Note</strong>: When using the <a href="http://apexlib.oracleapex.info/" target="_blank">ApexLib Framework</a>, the BuilderPlugin adds ApexLib Sections to the Builder where you can easily define the ApexLib Settings.</p>
<p>Now <a href="http://sourceforge.net/project/platformdownload.php?group_id=194148" target="_blank">download the BuilderPlugin</a> and enjoy the new comfort of your APEX Builder :-)</p>
<img src="http://www.oracle-and-apex.com/blog/?ak_action=api_record_view&id=372&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.oracle-and-apex.com/famous-apex-builder-plugin-now-ready-for-apex-4-0/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Oracle APEX 4.0 Workshop in Wien</title>
		<link>http://www.oracle-and-apex.com/oracle-apex-4-0-workshop-in-wien/</link>
		<comments>http://www.oracle-and-apex.com/oracle-apex-4-0-workshop-in-wien/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 07:28:16 +0000</pubDate>
		<dc:creator>Peter Raganitsch</dc:creator>
				<category><![CDATA[APEX 4.0]]></category>
		<category><![CDATA[Tipps & Tricks]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.oracle-and-apex.com/?p=353</guid>
		<description><![CDATA[This posting deals with a Workshop in Vienna, Austria, and is in german only.

Von 13.-18. September 2010 veranstalten wir eine Workshop-Reihe zur neuen Oracle APEX Release 4.0 . Diese Reihe  besteht aus 6 einzelnen und individuell buchbaren Tagen,  jeder mit einem eigenen Thema und in sich abgeschlossen.
Nützen Sie diese seltene Gelegenheit und lernen [...]]]></description>
			<content:encoded><![CDATA[<p>This posting deals with a Workshop in Vienna, Austria, and is in german only.</p>
<div>
<p>Von <strong>13.-18. September 2010</strong> veranstalten <a href="http://www.click-click.at" target="_blank">wir</a> eine Workshop-Reihe zur neuen Oracle APEX Release 4.0 . Diese Reihe  besteht aus 6 einzelnen und <strong>individuell buchbaren Tagen</strong>,  jeder mit einem eigenen Thema und in sich abgeschlossen.</p>
<p>Nützen Sie diese seltene Gelegenheit und lernen Sie in <strong>kürzester  Zeit</strong> alles Wissenswerte zu Oracle Application Express 4.0 von  zwei langjährigen Experten:<span id="more-353"></span></p>
<ul>
<li><a href="../../" target="_blank">Peter  Raganitsch</a>, seit 15 Jahren aktiv in der Oracle  Applikationsentwicklung, davon die letzten Jahre ausschließlich mit  Oracle APEX. Mitentwickler des legendären <a href="http://apexlib.oracleapex.info/" target="_blank">ApexLib Frameworks</a> und Mitglied des <em><a href="http://www.oracleapex.at/" target="_blank">Austrian  Competence Center for Oracle APEX</a></em>.</li>
<li>Christian Neumüller (DI), langjähriger Entwicklungsleiter eines  Oracle Forms-basierten ERP-Systems, erfahrener PL/SQL Hacker und  begeisterter APEX-Entwickler.</li>
</ul>
<p>Sie können aus unserem Angebot die für Sie interessanten Tage  auswählen und so einen individuellen Workshop zu einem <strong><a href="http://click-click.at/apex-4-0-workshops/kosten" target="_self">unschlagbaren  Preis</a></strong> zusammenstellen.</p>
<h2>Das Programm:</h2>
<ul>
<li><a title="Tag 1 - Einstieg" href="http://click-click.at/apex-4-0-workshops/tag-1-einstieg">Tag 1 –  13.09.2010 – Einstieg</a></li>
<li><a href="http://click-click.at/apex-4-0-workshops/tag-2-applikationen-erstellen-basic" target="_self">Tag 2 – 14.09.2010 – Applikationen erstellen Basic</a></li>
<li><a href="http://click-click.at/apex-4-0-workshops/tag-3-applikationen-erstellen-advanced" target="_self">Tag 3 – 15.09.2010 – Applikationen erstellen Advanced</a></li>
<li><a href="http://click-click.at/apex-4-0-workshops/tag-4-reports-charts-und-kalender" target="_self">Tag 4 – 16.09.2010 – Reports, Charts und Kalender</a></li>
<li><a href="http://click-click.at/apex-4-0-workshops/tag-5-interaktive-applikationen" target="_self">Tag 5 – 17.09.2010 – Interaktive Applikationen</a></li>
<li><a href="http://click-click.at/apex-4-0-workshops/tag-6-plugins-selbst-programmieren" target="_self">Tag 6 – 18.09.2010 – Hacker’s Weekend: Plugins selbst  programmieren, APEX erweitern</a></li>
</ul>
<p>Pro Tag gibt es nur eine begrenzte Anzahl an Plätzen, sodaß eine  ideale Lernatmosphäre geschaffen wird.</p>
<p>Die Workshops beginnen jeweils um <strong>09:00</strong> und enden  gegen <strong>17:00</strong>, dazwischen eine stärkende Mittagspause (im  Preis inbegriffen).</p>
<p>Ab <strong>18:00</strong> gibt es dann <strong>eine Stunde</strong> lang für alle Teilnehmer die Möglichkeit ihre aktuellen Probleme und  Herausforderungen im APEX Umfeld mit den <strong>vortragenden Experten</strong> zu besprechen, oder einfach nur den Tag in einer interessanten Runde  ausklingen zu lassen.</p>
<p>Der Austragungsort wird noch rechtzeitig bekanntgegeben, aber auf  alle Fälle im inneren Stadtgebiet Wien sein, gut erreichbar mit  öffentlichen Verkehrsmitteln und jedenfalls auch per Auto.</p>
<h1 style="text-align: center;"><a href="http://click-click.at/apex-4-0-workshops/workshop-bestellung"><strong>Zur  Bestellung</strong></a></h1>
</div>
<img src="http://www.oracle-and-apex.com/blog/?ak_action=api_record_view&id=353&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.oracle-and-apex.com/oracle-apex-4-0-workshop-in-wien/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Known Bugs in Oracle APEX 4.0</title>
		<link>http://www.oracle-and-apex.com/known-bugs-in-oracle-apex-4-0/</link>
		<comments>http://www.oracle-and-apex.com/known-bugs-in-oracle-apex-4-0/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 08:56:59 +0000</pubDate>
		<dc:creator>Peter Raganitsch</dc:creator>
				<category><![CDATA[APEX 4.0]]></category>
		<category><![CDATA[Tipps & Tricks]]></category>

		<guid isPermaLink="false">http://www.oracle-and-apex.com/?p=346</guid>
		<description><![CDATA[Everybody in the Software Industrie knows there is nothing like a bug free software, which is alright if you deal with it in a reasonable manner.
Talk about it, inform your customers, prepare workarounds for the nasty ones and bugfixes/patches for everything else.
Oracle knows all this and provides a list of known bugs/issues with Oracle APEX [...]]]></description>
			<content:encoded><![CDATA[<p>Everybody in the Software Industrie knows there is nothing like a bug free software, which is alright if you deal with it in a reasonable manner.</p>
<p>Talk about it, inform your customers, prepare workarounds for the nasty ones and bugfixes/patches for everything else.</p>
<p><span id="more-346"></span>Oracle knows all this and provides a <a href="http://www.oracle.com/technetwork/developer-tools/apex/40-known-issues-159870.html" target="_blank">list of known bugs/issues</a> with Oracle APEX 4.0.</p>
<p>If you encounter a bug which is not listed there, please <a href="http://forums.oracle.com/forums/forum.jspa?forumID=137" target="_blank">report it in the forum</a> (maybe using &#8220;Bug&#8221; or &#8220;Bugreport&#8221; in the Subject).</p>
<p>Don&#8217;t be shy, even if it turns out not to be a bug, you&#8217;ll definitely learn something :-)</p>
<p><span style="text-decoration: underline;">Update</span>:<br />
Look at <a href="http://forums.oracle.com/forums/thread.jspa?threadID=1097941&amp;tstart=15" target="_blank">a very good example</a> of how fast a bug can be solved as soon as it is reported.</p>
<img src="http://www.oracle-and-apex.com/blog/?ak_action=api_record_view&id=346&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.oracle-and-apex.com/known-bugs-in-oracle-apex-4-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ApexLib on APEX 4.0</title>
		<link>http://www.oracle-and-apex.com/apexlib-on-apex-4-0/</link>
		<comments>http://www.oracle-and-apex.com/apexlib-on-apex-4-0/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 14:36:50 +0000</pubDate>
		<dc:creator>Peter Raganitsch</dc:creator>
				<category><![CDATA[APEX 4.0]]></category>
		<category><![CDATA[ApexLib 2.1]]></category>
		<category><![CDATA[ApexLib]]></category>

		<guid isPermaLink="false">http://www.oracle-and-apex.com/?p=338</guid>
		<description><![CDATA[I got a couple of questions over the last weeks regarding the ApexLib Framework and Oracle APEX 4.0.

Is ApexLib still under active development?
Do we need ApexLib on APEX 4.0?
What about my applications using ApexLib, can i upgrade to APEX 4.0?

In short: you don&#8217;t need to worry.
ApexLib continues to make Oracle APEX an even better product [...]]]></description>
			<content:encoded><![CDATA[<p>I got a couple of questions over the last weeks regarding the ApexLib Framework and Oracle APEX 4.0.</p>
<ul>
<li>Is ApexLib still under active development?</li>
<li>Do we need ApexLib on APEX 4.0?</li>
<li>What about my applications using ApexLib, can i upgrade to APEX 4.0?</li>
</ul>
<p>In short: you don&#8217;t need to worry.</p>
<p><span id="more-338"></span>ApexLib continues to make Oracle APEX an even better product and runs perfectly smooth with Version 4.0 of APEX.</p>
<p>Check out the <a href="http://apex.oracle.com/pls/otn/f?p=APEXLIB_21" target="_blank">Feature Demonstration Application</a> on apex.oracle.com or <a href="http://sourceforge.net/project/platformdownload.php?group_id=184339" target="_blank">download ApexLib Framework</a> and try it on your local database.</p>
<h3>Is ApexLib still under active development?</h3>
<p>Yes. ApexLib is an ongoing project which aims to improve APEX where it isn&#8217;t as perfect or as comfortable as you wish. I&#8217;m currently planning improvements especially for APEX 4.0, e.g. even better TabForm support.</p>
<h3>Do we need ApexLib Framwork on APEX 4.0 ?</h3>
<p>Oracle APEX 4.0 includes many improvements which ApexLib provides for a long time (thanks to <a href="http://www.inside-oracle-apex.com" target="_blank">Patrick Wolf</a>, who now develops cool new features in APEX).<br />
But there are still plenty things ApexLib can help you with, even when you are using APEX 4.0.</p>
<h3>What about my applications using ApexLib, can i upgrade to APEX 4.0?</h3>
<p>Absolutely, just make sure you are using the latest version of <a href="http://apexlib.oracleapex.info" target="_blank">ApexLib Framework</a>, then you are good to upgrade to APEX 4.0.</p>
<h3>Do you include Feature XY in your next release?</h3>
<p>If you need certain features for the upcoming release of ApexLib Framwork, just <a href="mailto:apexlib@oracleapex.info">drop me a note</a>. I&#8217;ll try to include whatever you need and whatever my limited time makes possible.</p>
<h3>I&#8217;m soooo happy with ApexLib, it made my application even better!</h3>
<p>Good to hear, makes me happy and proud. If you want you also can <a href="http://sourceforge.net/donate/index.php?group_id=184339" target="_blank">thank me in USD or EUR</a> :-)</p>
<p>That&#8217;s all, hope you enjoy ApexLib Framework and Oracle APEX 4.0!</p>
<p>Peter</p>
<p>P.S.: Make sure to check out the <a href="http://apexlib.oracleapex.info/tools.html" target="_blank">ApexLib Tools</a>, will be more there soon!</p>
<img src="http://www.oracle-and-apex.com/blog/?ak_action=api_record_view&id=338&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.oracle-and-apex.com/apexlib-on-apex-4-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>APEX 4.0 running on my notebook</title>
		<link>http://www.oracle-and-apex.com/apex-4-0-running-on-my-notebook/</link>
		<comments>http://www.oracle-and-apex.com/apex-4-0-running-on-my-notebook/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 13:06:07 +0000</pubDate>
		<dc:creator>Peter Raganitsch</dc:creator>
				<category><![CDATA[APEX 4.0]]></category>

		<guid isPermaLink="false">http://www.oracle-and-apex.com/?p=329</guid>
		<description><![CDATA[Just seconds after finding that Oracle APEX 4.0 is ready for download i hit the button (Tweets go first ;-) ) and downloaded my copy -&#62; over 140 MB, but i was really lucky and got it after 10 min.
During download i copied my Apex 3.2 virtual machine, assigned new ip&#8217;s and so on.
As soon [...]]]></description>
			<content:encoded><![CDATA[<p>Just seconds after finding that <a href="http://www.oracle-and-apex.com/oracle-apex-4-0-released/" target="_blank">Oracle APEX 4.0 is ready for download</a> i hit the button (<a href="http://twitter.com/PeterRaganitsch" target="_blank">Tweets</a> go first ;-) ) and downloaded my copy -&gt; over 140 MB, but i was really lucky and got it after 10 min.</p>
<p><span id="more-329"></span>During download i copied my <a href="http://www.oracle-and-apex.com/eat-more-fruit-or-an-apple-a-day/" target="_blank">Apex 3.2 virtual machine</a>, assigned new ip&#8217;s and so on.</p>
<p>As soon as the download was finished i checked the installation documentation, nothing so far has changed, that is a good sign.</p>
<p>So just calling @apexins, passing the required parameters and of it went.</p>
<p>And now, just 50 min. after hitting the Download button APEX 4.0 is running successfully on my notebook!</p>
<p><a href="http://www.oracle-and-apex.com/blog/wp-content/uploads/oaa_apex4_notebook.png"><img class="alignnone size-full wp-image-333" title="oaa_apex4_notebook" src="http://www.oracle-and-apex.com/blog/wp-content/uploads/oaa_apex4_notebook.png" alt="" width="761" height="487" /></a></p>
<p>Come on and <a href="http://www.oracle.com/technology/products/database/application_express/download.html" target="_blank">get it</a> !</p>
<img src="http://www.oracle-and-apex.com/blog/?ak_action=api_record_view&id=329&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.oracle-and-apex.com/apex-4-0-running-on-my-notebook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle APEX 4.0 released</title>
		<link>http://www.oracle-and-apex.com/oracle-apex-4-0-released/</link>
		<comments>http://www.oracle-and-apex.com/oracle-apex-4-0-released/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 11:51:06 +0000</pubDate>
		<dc:creator>Peter Raganitsch</dc:creator>
				<category><![CDATA[APEX 4.0]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.oracle-and-apex.com/?p=319</guid>
		<description><![CDATA[Finally, after months of waiting Oracle released Application Express 4.0 just a couple of minutes ago.
See also David Peakes Blog.
Don&#8217;t loose any time, go get it.
If you aren&#8217;t sure whether or how to install it, you also can use the SaaS-Instance on http://apex.oracle.com to give it a spin.
Have you already read the Overview about New [...]]]></description>
			<content:encoded><![CDATA[<p>Finally, after months of waiting Oracle released <a href="http://apex.oracle.com" target="_blank">Application Express 4.0</a> just a couple of minutes ago.<span id="more-319"></span></p>
<p>See also <a href="http://joelkallman.blogspot.com/2010/06/oracle-application-express-40-is.html" target="_blank">David Peakes Blog</a>.</p>
<p>Don&#8217;t loose any time, <a href="http://www.oracle.com/technology/products/database/application_express/download.html" target="_blank">go get it</a>.</p>
<p>If you aren&#8217;t sure whether or how to install it, you also can use the SaaS-Instance on <a href="http://apex.oracle.com" target="_blank">http://apex.oracle.com</a> to give it a spin.</p>
<p>Have you already read the <a href="http://www.oracle.com/technology/products/database/application_express/html/4.0_new_features.html" target="_blank">Overview about New Features</a> ?</p>
<p>If you want to get an expert introduction into APEX 4.0 and you live near Vienna/Austria you should definitely book <a href="http://click-click.at/apex-4-0-workshops" target="_blank">this workshop</a>.</p>
<p>Enjoy Oracle APEX 4.0 and show all the Java and .NET guys how fast you can develop amazing applications!</p>
<img src="http://www.oracle-and-apex.com/blog/?ak_action=api_record_view&id=319&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.oracle-and-apex.com/oracle-apex-4-0-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>APEX 4.0 Pre-Production seen in Wildlife!</title>
		<link>http://www.oracle-and-apex.com/apex-4-0-seen-in-wildlife/</link>
		<comments>http://www.oracle-and-apex.com/apex-4-0-seen-in-wildlife/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 08:12:12 +0000</pubDate>
		<dc:creator>Peter Raganitsch</dc:creator>
				<category><![CDATA[APEX 4.0]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.oracle-and-apex.com/?p=296</guid>
		<description><![CDATA[An interesting weekend, the first day since many weeks in Austria having more sunshine than rain, summer finally arrived in Vienna.
Everyone is out there enjoying the fine weather, eating ice cream and have a good time.
Everyone?No, a small group of APEX enthusiasts are glued to their monitors since Patrick started to leak informations (also here [...]]]></description>
			<content:encoded><![CDATA[<p>An interesting weekend, the first day since many weeks in Austria having more sunshine than rain, summer finally arrived in Vienna.<br />
Everyone is out there enjoying the fine weather, eating ice cream and have a good time.</p>
<p>Everyone?<span id="more-296"></span>No, a small group of APEX enthusiasts are glued to their monitors since Patrick started to <a href="http://www.inside-oracle-apex.com/oracle-apex-4-0-early-adopter-release-3-available/#comment-40341" target="_blank">leak informations</a> (also <a href="http://twitter.com/patrickwolf#status_15423289213" target="_blank">here on Twitter</a>) APEX 4.0 would be released soon.</p>
<p>After attending many conferences and events where Oracle told (since early 2008) how fantastic APEX 4.0 will be (and myself talking to countless customers about whats there to come and how fantastic it will be), it comes finally true.</p>
<p>Enough said: go to <a href="http://apex.oracle.com" target="_blank">http://apex.oracle.com</a> and try APEX 4.0 online. Since this is a <a href="http://www.oracle.com/technology/products/database/application_express/index.html" target="_blank">pre-production release</a> you cannot download it now, but this is one step closer than the Early-Adopter releases :-)</p>
<p>Spread the Word: APEX 4.0 is out finally coming!</p>
<img src="http://www.oracle-and-apex.com/blog/?ak_action=api_record_view&id=296&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.oracle-and-apex.com/apex-4-0-seen-in-wildlife/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle Application Express Early Adopter 2 released</title>
		<link>http://www.oracle-and-apex.com/oracle-application-express-early-adopter-2-released/</link>
		<comments>http://www.oracle-and-apex.com/oracle-application-express-early-adopter-2-released/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 08:53:52 +0000</pubDate>
		<dc:creator>Peter Raganitsch</dc:creator>
				<category><![CDATA[APEX 4.0]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.oracle-and-apex.com/?p=217</guid>
		<description><![CDATA[After a very successful test phase of APEX 4.0 EA1 over the past weeks Oracle now released EA 2 of APEX 4.0 with a lot of bug fixes and further improvements.
Websheets are available now, a totally new and better debug interface and many more.
Read these posts to get a complete picture:

Joel Kallman &#8211; Application Express [...]]]></description>
			<content:encoded><![CDATA[<p>After a very successful test phase of APEX 4.0 EA1 over the past weeks Oracle now released EA 2 of APEX 4.0 with a lot of bug fixes and further improvements.<span id="more-217"></span></p>
<p>Websheets are available now, a totally new and better debug interface and many more.</p>
<p>Read these posts to get a complete picture:</p>
<ul>
<li><a href="http://joelkallman.blogspot.com" target="_blank">Joel Kallman</a> &#8211; <a href="http://joelkallman.blogspot.com/2010/02/application-express-40-early-adopter.html" target="_blank">Application Express 4.0 Early Adopter Phase II is available</a></li>
<li><a href="http://www.inside-oracle-apex.com" target="_blank">Patrick Wolf</a> &#8211; <a href="http://www.inside-oracle-apex.com/oracle-apex-4-0-early-adopter-release-2-available" target="_blank">Oracle APEX 4.0 Early Adopter Release 2 available!</a></li>
<li><a href="http://jes.blogs.shellprompt.net" target="_blank">John Scott</a> &#8211; <a href="http://jes.blogs.shellprompt.net/2010/02/27/application-express-40-early-adopter-2-now-available/" target="_blank">APPLICATION EXPRESS 4.0 &#8211; EARLY ADOPTER 2 NOW AVAILABLE</a></li>
<li><a href="http://oracleinsights.blogspot.com" target="_blank">Mark Lancaster</a> &#8211; <a href="http://oracleinsights.blogspot.com/2010/02/apex-40-ea2-improved-debugging-my-new.html" target="_self">APEX 4.0 EA2: Improved debugging, my new favorite feature</a></li>
</ul>
<p>Don&#8217;t waste any time, go to <a href="http://tryapexnow.com/">http://tryapexnow.com/</a> and sign yourself up for a workspace. After logging in to your new workspace click the <strong>&#8220;Learn more&#8221;</strong> button to go to a very good introduction documentation.</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 34px; width: 1px; height: 1px; overflow: hidden;"><span class="Apple-style-span" style="border-collapse: separate; color: #000000; font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; font-size: medium;"><span class="Apple-style-span" style="color: #cc6600; font-family: Georgia,serif; font-size: 18px; line-height: 25px; text-align: left;"><a style="color: #333333; text-decoration: none; display: block; font-weight: normal;" href="http://joelkallman.blogspot.com/2010/02/application-express-40-early-adopter.html">Application Express 4.0 Early Adopter Phase II is available</a></span></span></div>
<img src="http://www.oracle-and-apex.com/blog/?ak_action=api_record_view&id=217&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.oracle-and-apex.com/oracle-application-express-early-adopter-2-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
