<?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>IT Answers &#187; Oracle Application Express</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/tag/oracle-application-express/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers</link>
	<description></description>
	<lastBuildDate>Tue, 18 Jun 2013 20:40:54 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Adding a star to a required field in Oracle Application Express</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/adding-a-star-to-a-required-field-in-oracle-application-express/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/adding-a-star-to-a-required-field-in-oracle-application-express/#comments</comments>
		<pubDate>Mon, 22 Apr 2013 05:41:13 +0000</pubDate>
		<dc:creator>shivendraverma8</dc:creator>
				<category><![CDATA[APEX]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Oracle Application Express]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/adding-a-star-to-a-required-field-in-oracle-application-express/</guid>
		<description><![CDATA[New Answer by Michael Tidmarsh]]></description>
				<content:encoded><![CDATA[New Answer by Michael Tidmarsh]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/adding-a-star-to-a-required-field-in-oracle-application-express/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle bind variable input</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/oracle-bind-variable-input/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/oracle-bind-variable-input/#comments</comments>
		<pubDate>Wed, 08 Jun 2011 10:51:55 +0000</pubDate>
		<dc:creator>pforos</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Oracle Application Express]]></category>
		<category><![CDATA[Oracle applications]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hello there&#8230; I&#8217;ve created a report page (page 1) which shows the products of a shop! I&#8217;ve also created a hidden item on page 1 in order to get the ID of the product when a user presses the link for Product Details or the Basket icon&#8230; My problem is that I don&#8217;t know how [...]]]></description>
				<content:encoded><![CDATA[<p>Hello there&#8230; <img src='http://itknowledgeexchange.techtarget.com/itanswers/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div></div>
<div>I&#8217;ve created a report page (page 1) which shows the products of a shop! I&#8217;ve also created a hidden item on page 1 in order to get the ID of the product when a user presses the link for Product Details or the Basket icon&#8230; My problem is that I don&#8217;t know how to insert the value of the #ID# to the bind variable :p1_selected_product_id!!!</div>
<div></div>
<div>Any ideas???</div>
<div></div>
<div>Peter</div>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/oracle-bind-variable-input/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle Package Script</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/oracle-package-script/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/oracle-package-script/#comments</comments>
		<pubDate>Thu, 02 Jun 2011 16:11:23 +0000</pubDate>
		<dc:creator>pforos</dc:creator>
				<category><![CDATA[Creating Oracle packages]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Oracle Application Express]]></category>
		<category><![CDATA[Oracle Package]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hello everyone&#8230;  I&#8217;m trying to create a package for an application on oracle APEX!! Here&#8217;s the code I used:  create or replace package customer_authentication as function customer_exists (p_email in varchar2) return boolean; procedure insert_new_customer ( p_fullname in varchar2, p_email in varchar2, p_password in varchar2); function customer_authentication_f ( p_username in varchar2 default null, p_password in varchar2 [...]]]></description>
				<content:encoded><![CDATA[<p>Hello everyone&#8230; </p>
<div></div>
<div>I&#8217;m trying to create a package for an application on oracle APEX!!<br />
Here&#8217;s the code I used: </div>
<div>
<pre></div>
<div>
<div>create or replace package customer_authentication</div>
<div>as</div>
<div>function customer_exists (p_email in varchar2) return boolean;</div>
<div></div>
<div>procedure insert_new_customer (</div>
<div>p_fullname in varchar2,</div>
<div>p_email in varchar2,</div>
<div>p_password in varchar2);</div>
<div></div>
<div>function customer_authentication_f (</div>
<div>p_username in varchar2 default null,</div>
<div>p_password in varchar2 default null)</div>
<div>return boolean;</div>
<div></div>
<div>end customer_authentication; --end of package specification</div>
<div></div>
<div></div>
<div>create or replace package body customer_authentication</div>
<div>as</div>
<div>function customer_exists (p_email in varchar2)</div>
<div>return boolean;</div>
<div>as</div>
<div>l_aux number;</div>
<div>begin</div>
<div>select id</div>
<div>into l_aux</div>
<div>from customer</div>
<div>where upper(email) = upper (p_email);</div>
<div>return true;</div>
<div>exception when no_data_found then return false;</div>
<div>end customer_exists;</div>
<div></div>
<div></div>
<div>function password_hashing (</div>
<div>p_username in varchar2,</div>
<div>p_password in varchar2)</div>
<div>return varchar2</div>
<div>as</div>
<div>l_password varchar2(4000);</div>
<div>l_salt varchar2(4000) := 'AA8V33PFKQHFZJ4T54HOATVML024FM';</div>
<div></div>
<div></div>
<div>begin</div>
<div>l_password := utl_raw.cast_to_raw(</div>
<div>dbms_obfuscation_toolkit.md5(</div>
<div>input_string =&gt; p_password ||</div>
<div>substr(l_sault, 10, 13) ||</div>
<div>p_username ||</div>
<div>substr(l_sault, 4, 10)</div>
<div>)</div>
<div>);</div>
<div>return l_password;</div>
<div>end password_hashing;</div>
<div></div>
<div></div>
<div></div>
<div>procedure insert_new_customer (</div>
<div>p_fullname in varchar2,</div>
<div>p_email in varchar2,</div>
<div>p_password in varchar2)</div>
<div>as</div>
<div>l_encrypted_password varchar(32);</div>
<div>begin</div>
<div>l_encrypted_password := password_hashing (upper(p_email), p_password);</div>
<div>insert into customer (fullname, email, encrypted_password)</div>
<div>values (p_fullname, lower(p_email), l_encrypted_password);</div>
<div>commit;</div>
<div>end insert_new_customer;</div>
<div></div>
<div>function customer_authentication_f (</div>
<div>p_username in varchar2,</div>
<div>p_password in varchar2)</div>
<div>return boolean</div>
<div>as</div>
<div>l_aux number; --boithitiki metablhth</div>
<div>l_encrypted_password varchar2(32)</div>
<div>begin</div>
<div>/* kryptografish toy password */</div>
<div>l_encrypted_password := password_hashing (</div>
<div>p_username =&gt; upper(p_username),</div>
<div>p_password =&gt; p_password );</div>
<div>select id</div>
<div>into l_aux</div>
<div>from customer</div>
<div>where upper(email)=upper(p_username)</div>
<div>and encrypted_password=l_encrypted_password;</div>
<div>return true;</div>
<div>exception</div>
<div>when no_data_found then return false;</div>
<div>end customer_authentication_f;</div>
<div>end customer_authentication; -- end of package body</div>
</div>
<div></pre>
</div>
<div></div>
<div>I tried running it through the SQL Workshop (commands) but after pressing the &#8220;run&#8221; button, a pop up window came up with only a Submit button!! (?)</div>
<div>After pressing it, it gave me the message<br />
&#8220;Not found</div>
<div>The requested URL /apex/www_flow.show was not found on this server&#8221;</p>
</div>
<div>So, my question is: Is everything alright with the script? The error is just because I pushed submit without any given data??? <img src='http://itknowledgeexchange.techtarget.com/itanswers/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>Thanx for your time&#8230;</p></div>
<div>Peter</div>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/oracle-package-script/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Issue with designing Oracle Application Express (APEX)</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/issue-with-designing-oracle-application-express-apex/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/issue-with-designing-oracle-application-express-apex/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 09:09:39 +0000</pubDate>
		<dc:creator>Rout</dc:creator>
				<category><![CDATA[APEX]]></category>
		<category><![CDATA[Oracle Application Express]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hi, I am facing a problem in my local application express box. While I am trying to create a button in the item section in a page ( using create multiple items by drag and drop ), it is happening without any error but not creating the button . This is working fine in online [...]]]></description>
				<content:encoded><![CDATA[<p>Hi,</p>
<p>I am facing a problem in my local application express box. While I am trying to create a button in the item section in a page ( using create multiple items by drag and drop ), it is happening without any error but not creating the button . This is working fine in online practise site( apex.oracle.com)</p>
<p>The apex is of version 3.2.0 and is installed on oracle 11g database, can anybody help me in resolving this ?</p>
<p>Thanks<br />
santosh</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/issue-with-designing-oracle-application-express-apex/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Oracle9i error message on installation</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/oracle9i-3/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/oracle9i-3/#comments</comments>
		<pubDate>Sat, 25 Jul 2009 05:54:56 +0000</pubDate>
		<dc:creator>Sajni</dc:creator>
				<category><![CDATA[Oracle 9i]]></category>
		<category><![CDATA[Oracle Application Express]]></category>
		<category><![CDATA[Oracle error messages]]></category>
		<category><![CDATA[Oracle installation]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[while installing oracle9i in laptop i a getting message jrew.exe stoping program( i am using window vista]]></description>
				<content:encoded><![CDATA[<p>while installing oracle9i in laptop i a getting message jrew.exe stoping program( i am using window vista</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/oracle9i-3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>APEX-can&#8217;t see new procedure when creating form</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/apex-cant-see-new-procedure-when-creating-form/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/apex-cant-see-new-procedure-when-creating-form/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 16:43:39 +0000</pubDate>
		<dc:creator>Sprevost</dc:creator>
				<category><![CDATA[APEX]]></category>
		<category><![CDATA[Oracle Application Express]]></category>
		<category><![CDATA[Oracle XE]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Using Oracle XE, I created a new procedure and it compiled. I then tried to create a new form based on a procedure using the wizard. The new procedure I created was not in the list nor could it be found just be typing in the name. Thanks in advance, Steve]]></description>
				<content:encoded><![CDATA[<p>Using Oracle XE, I created a new procedure and it compiled. I then tried to create a new form based on a procedure using the wizard. The new procedure I created was not in the list nor could it be found just be typing in the name.  </p>
<p>Thanks in advance,</p>
<p>Steve</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/apex-cant-see-new-procedure-when-creating-form/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Report Printing in Oracle</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/report-printing-in-oracle/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/report-printing-in-oracle/#comments</comments>
		<pubDate>Tue, 08 Jul 2008 15:52:52 +0000</pubDate>
		<dc:creator>Rwy</dc:creator>
				<category><![CDATA[Oracle Application Express]]></category>
		<category><![CDATA[Oracle printing]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I need to create a multi-row report in Oracle Application Express. I can create the report, no problem. The question is, how can I setup printing in Oracle and print this report in PDF format?]]></description>
				<content:encoded><![CDATA[<p>I need to create a multi-row report in Oracle Application Express.  I can create the report, no problem.  The question is, how can I setup printing in Oracle and print this report in PDF format?</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/report-printing-in-oracle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>building a tree</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/building-a-tree/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/building-a-tree/#comments</comments>
		<pubDate>Mon, 16 Jun 2008 20:13:26 +0000</pubDate>
		<dc:creator>Rwy</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Oracle Apex]]></category>
		<category><![CDATA[Oracle Application Express]]></category>
		<category><![CDATA[Oracle development]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[how do you build a tree in oracle application express]]></description>
				<content:encoded><![CDATA[<p>how do you build a tree in oracle application express</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/building-a-tree/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 6/9 queries in 0.012 seconds using memcached
Object Caching 782/783 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-06-19 00:39:38 -->