<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: How to test an On-Demand Process used for AJAX</title>
	<atom:link href="http://www.inside-oracle-apex.com/how-to-test-an-on-demand-process-used-for-ajax/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.inside-oracle-apex.com/how-to-test-an-on-demand-process-used-for-ajax/</link>
	<description>Inside Oracle APEX - a blog that helps to get more out of Oracle Application Express (APEX) for your daily development work!</description>
	<lastBuildDate>Mon, 19 Dec 2011 12:04:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Naren</title>
		<link>http://www.inside-oracle-apex.com/how-to-test-an-on-demand-process-used-for-ajax/comment-page-1/#comment-25459</link>
		<dc:creator>Naren</dc:creator>
		<pubDate>Wed, 10 Feb 2010 03:25:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.inside-oracle-apex.com/en/?p=18#comment-25459</guid>
		<description>Nice article. Faced an issue with the on-demand process, the article was very useful in debugging. Thanks.</description>
		<content:encoded><![CDATA[<p>Nice article. Faced an issue with the on-demand process, the article was very useful in debugging. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sihem</title>
		<link>http://www.inside-oracle-apex.com/how-to-test-an-on-demand-process-used-for-ajax/comment-page-1/#comment-22815</link>
		<dc:creator>sihem</dc:creator>
		<pubDate>Sat, 09 Jan 2010 07:28:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.inside-oracle-apex.com/en/?p=18#comment-22815</guid>
		<description>Hi you have a very good block.
You know i have a very probleme
i want to insert in my table by usin process on demand
in first time it work but if i use insert field blob ,the process can’t insert this field why
the source of process:
declare
dd number;
dd1 number;

begin
IF (:P10_PHOTO IS NOT NULL) THEN
insert into voiture
(MAT,MARQUE,COULEUR,NB_CHEVEAUX,TYPE_VOIT,DESCRIPTION,N_VIGNETTE,
N_ASSURANCE,EMPLACEMENT,PRIX_VOIT,COMPTEUR_VOIT,N_CARTE_GRISE,PHOTO)
select
10_MAT,:P10_MARQUE,:P10_COULEUR,:P10_NB_CHEVEAUX,:P10_TYPE_VOIT,
 10_DESCRIPTION,:N_VIGNETTE2,:N_ASSURANCE2,:P10_EMPLACEMENT,
10_PRIX_VOIT,:P10_COMPTEUR_VOIT,:N_CARTE_GRISE,BLOB_CONTENT
from APEX_APPLICATION_FILES
where name =  10_PHOTO;
htp.p(dd1);
htp.p(:P10_PHOTO);
end if;
select max(ind1) into dd1 from voiture;

delete from APEX_APPLICATION_FILES where name =  10_PHOTO;

insert into etat_voiture
(nom,id_voit)
values(:P10_etat, dd1);

select max(id) into dd from etat_voiture;

update voiture
set etat=dd
where ind1=dd1;

end;

can you help me please.
regard sihem</description>
		<content:encoded><![CDATA[<p>Hi you have a very good block.<br />
You know i have a very probleme<br />
i want to insert in my table by usin process on demand<br />
in first time it work but if i use insert field blob ,the process can’t insert this field why<br />
the source of process:<br />
declare<br />
dd number;<br />
dd1 number;</p>
<p>begin<br />
IF (:P10_PHOTO IS NOT NULL) THEN<br />
insert into voiture<br />
(MAT,MARQUE,COULEUR,NB_CHEVEAUX,TYPE_VOIT,DESCRIPTION,N_VIGNETTE,<br />
N_ASSURANCE,EMPLACEMENT,PRIX_VOIT,COMPTEUR_VOIT,N_CARTE_GRISE,PHOTO)<br />
select<br />
10_MAT,:P10_MARQUE,:P10_COULEUR,:P10_NB_CHEVEAUX,:P10_TYPE_VOIT,<br />
 10_DESCRIPTION,:N_VIGNETTE2,:N_ASSURANCE2,:P10_EMPLACEMENT,<br />
10_PRIX_VOIT,:P10_COMPTEUR_VOIT,:N_CARTE_GRISE,BLOB_CONTENT<br />
from APEX_APPLICATION_FILES<br />
where name =  10_PHOTO;<br />
htp.p(dd1);<br />
htp.p(:P10_PHOTO);<br />
end if;<br />
select max(ind1) into dd1 from voiture;</p>
<p>delete from APEX_APPLICATION_FILES where name =  10_PHOTO;</p>
<p>insert into etat_voiture<br />
(nom,id_voit)<br />
values(:P10_etat, dd1);</p>
<p>select max(id) into dd from etat_voiture;</p>
<p>update voiture<br />
set etat=dd<br />
where ind1=dd1;</p>
<p>end;</p>
<p>can you help me please.<br />
regard sihem</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sihem</title>
		<link>http://www.inside-oracle-apex.com/how-to-test-an-on-demand-process-used-for-ajax/comment-page-1/#comment-22360</link>
		<dc:creator>sihem</dc:creator>
		<pubDate>Mon, 04 Jan 2010 04:49:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.inside-oracle-apex.com/en/?p=18#comment-22360</guid>
		<description>Hi you have a very good block.
You know i have a very probleme
 i want to insert in my table by usin process on demand 
in first time it work but if i use insert field blob ,the process can&#039;t insert this field why
the source of process:
declare 
dd number;
dd1 number;

begin  
   IF (:P10_PHOTO IS NOT NULL) THEN
insert into voiture 
(MAT,MARQUE,COULEUR,NB_CHEVEAUX,TYPE_VOIT,DESCRIPTION,N_VIGNETTE,
N_ASSURANCE,EMPLACEMENT,PRIX_VOIT,COMPTEUR_VOIT,N_CARTE_GRISE,PHOTO)
select
:P10_MAT,:P10_MARQUE,:P10_COULEUR,:P10_NB_CHEVEAUX,:P10_TYPE_VOIT,
:P10_DESCRIPTION,:N_VIGNETTE2,:N_ASSURANCE2,:P10_EMPLACEMENT,
:P10_PRIX_VOIT,:P10_COMPTEUR_VOIT,:N_CARTE_GRISE,BLOB_CONTENT
from APEX_APPLICATION_FILES 
where name = :P10_PHOTO;
htp.p(dd1);
htp.p(:P10_PHOTO);
end if;
select max(ind1) into dd1 from voiture;

delete from APEX_APPLICATION_FILES where name = :P10_PHOTO;

insert into etat_voiture
(nom,id_voit)
values(:P10_etat, dd1);

select max(id) into dd from etat_voiture;

update voiture
set etat=dd
where ind1=dd1;

end;

can you help me please.
regard sihem</description>
		<content:encoded><![CDATA[<p>Hi you have a very good block.<br />
You know i have a very probleme<br />
 i want to insert in my table by usin process on demand<br />
in first time it work but if i use insert field blob ,the process can&#8217;t insert this field why<br />
the source of process:<br />
declare<br />
dd number;<br />
dd1 number;</p>
<p>begin<br />
   IF (:P10_PHOTO IS NOT NULL) THEN<br />
insert into voiture<br />
(MAT,MARQUE,COULEUR,NB_CHEVEAUX,TYPE_VOIT,DESCRIPTION,N_VIGNETTE,<br />
N_ASSURANCE,EMPLACEMENT,PRIX_VOIT,COMPTEUR_VOIT,N_CARTE_GRISE,PHOTO)<br />
select<br />
 <img src='http://www.inside-oracle-apex.com/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> 10_MAT,:P10_MARQUE,:P10_COULEUR,:P10_NB_CHEVEAUX,:P10_TYPE_VOIT,<br />
 <img src='http://www.inside-oracle-apex.com/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> 10_DESCRIPTION,:N_VIGNETTE2,:N_ASSURANCE2,:P10_EMPLACEMENT,<br />
 <img src='http://www.inside-oracle-apex.com/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> 10_PRIX_VOIT,:P10_COMPTEUR_VOIT,:N_CARTE_GRISE,BLOB_CONTENT<br />
from APEX_APPLICATION_FILES<br />
where name = <img src='http://www.inside-oracle-apex.com/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> 10_PHOTO;<br />
htp.p(dd1);<br />
htp.p(:P10_PHOTO);<br />
end if;<br />
select max(ind1) into dd1 from voiture;</p>
<p>delete from APEX_APPLICATION_FILES where name = <img src='http://www.inside-oracle-apex.com/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> 10_PHOTO;</p>
<p>insert into etat_voiture<br />
(nom,id_voit)<br />
values(:P10_etat, dd1);</p>
<p>select max(id) into dd from etat_voiture;</p>
<p>update voiture<br />
set etat=dd<br />
where ind1=dd1;</p>
<p>end;</p>
<p>can you help me please.<br />
regard sihem</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick Wolf</title>
		<link>http://www.inside-oracle-apex.com/how-to-test-an-on-demand-process-used-for-ajax/comment-page-1/#comment-12467</link>
		<dc:creator>Patrick Wolf</dc:creator>
		<pubDate>Thu, 03 Sep 2009 09:06:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.inside-oracle-apex.com/en/?p=18#comment-12467</guid>
		<description>You are welcome!</description>
		<content:encoded><![CDATA[<p>You are welcome!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vikas Handa</title>
		<link>http://www.inside-oracle-apex.com/how-to-test-an-on-demand-process-used-for-ajax/comment-page-1/#comment-12211</link>
		<dc:creator>Vikas Handa</dc:creator>
		<pubDate>Sun, 30 Aug 2009 03:51:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.inside-oracle-apex.com/en/?p=18#comment-12211</guid>
		<description>Dear Patrick,

A big thank you for nice tip. It was very helpful and it saved me lot of time.


Best regards,

Vikas</description>
		<content:encoded><![CDATA[<p>Dear Patrick,</p>
<p>A big thank you for nice tip. It was very helpful and it saved me lot of time.</p>
<p>Best regards,</p>
<p>Vikas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick Wolf</title>
		<link>http://www.inside-oracle-apex.com/how-to-test-an-on-demand-process-used-for-ajax/comment-page-1/#comment-1519</link>
		<dc:creator>Patrick Wolf</dc:creator>
		<pubDate>Mon, 09 Feb 2009 19:06:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.inside-oracle-apex.com/en/?p=18#comment-1519</guid>
		<description>Sujay,

the the parameters x01..x10 are not available in the &quot;f&quot; interface. This parameters are only available in the wwv_flow.show interface which is called with the htmldb_Get interface.

Anyway I would use Firebug (Firefox Plugin) and there the Console to do the testing nowadays.

Regards
Patrick</description>
		<content:encoded><![CDATA[<p>Sujay,</p>
<p>the the parameters x01..x10 are not available in the &#8220;f&#8221; interface. This parameters are only available in the wwv_flow.show interface which is called with the htmldb_Get interface.</p>
<p>Anyway I would use Firebug (Firefox Plugin) and there the Console to do the testing nowadays.</p>
<p>Regards<br />
Patrick</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sujay</title>
		<link>http://www.inside-oracle-apex.com/how-to-test-an-on-demand-process-used-for-ajax/comment-page-1/#comment-1288</link>
		<dc:creator>Sujay</dc:creator>
		<pubDate>Sat, 31 Jan 2009 17:45:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.inside-oracle-apex.com/en/?p=18#comment-1288</guid>
		<description>Patrick,

I am setting the variable using x01, how do I test that in the URL?

Thanks
Sujay</description>
		<content:encoded><![CDATA[<p>Patrick,</p>
<p>I am setting the variable using x01, how do I test that in the URL?</p>
<p>Thanks<br />
Sujay</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick Wolf</title>
		<link>http://www.inside-oracle-apex.com/how-to-test-an-on-demand-process-used-for-ajax/comment-page-1/#comment-745</link>
		<dc:creator>Patrick Wolf</dc:creator>
		<pubDate>Tue, 05 Dec 2006 21:35:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.inside-oracle-apex.com/en/?p=18#comment-745</guid>
		<description>Hi Dough,&lt;br /&gt;&lt;br /&gt;you are welcome!&lt;br /&gt;&lt;br /&gt;Sometimes APEX makes life harder than it should be...&lt;br /&gt;&lt;br /&gt;Have you already checked out the debugger hack? :-)</description>
		<content:encoded><![CDATA[<p>Hi Dough,</p>
<p>you are welcome!</p>
<p>Sometimes APEX makes life harder than it should be&#8230;</p>
<p>Have you already checked out the debugger hack? <img src='http://www.inside-oracle-apex.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doug Gault</title>
		<link>http://www.inside-oracle-apex.com/how-to-test-an-on-demand-process-used-for-ajax/comment-page-1/#comment-744</link>
		<dc:creator>Doug Gault</dc:creator>
		<pubDate>Tue, 05 Dec 2006 21:13:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.inside-oracle-apex.com/en/?p=18#comment-744</guid>
		<description>Patrick,  This tip just saved my bacon! Sometimes its the little stuff you overlook that really saves the day! KEEP UP THE GOOD WORK</description>
		<content:encoded><![CDATA[<p>Patrick,  This tip just saved my bacon! Sometimes its the little stuff you overlook that really saves the day! KEEP UP THE GOOD WORK</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick Wolf</title>
		<link>http://www.inside-oracle-apex.com/how-to-test-an-on-demand-process-used-for-ajax/comment-page-1/#comment-743</link>
		<dc:creator>Patrick Wolf</dc:creator>
		<pubDate>Tue, 05 Dec 2006 07:46:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.inside-oracle-apex.com/en/?p=18#comment-743</guid>
		<description>Thanks a lot! I really appreciate that! Feedback from the community cheers me on to continue my blog.&lt;br /&gt;&lt;br /&gt;Patrick</description>
		<content:encoded><![CDATA[<p>Thanks a lot! I really appreciate that! Feedback from the community cheers me on to continue my blog.</p>
<p>Patrick</p>
]]></content:encoded>
	</item>
</channel>
</rss>

