<?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: Refreshing the page by java mehtod in Oracle ADF</title>
	<atom:link href="http://www.techartifact.com/blogs/2009/05/refreshing-the-page-by-java-mehtod-in-oracle-adf.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.techartifact.com/blogs/2009/05/refreshing-the-page-by-java-mehtod-in-oracle-adf.html</link>
	<description>Latest tip and information on Java and Oracle ADF</description>
	<lastBuildDate>Thu, 09 Feb 2012 07:11:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: vinay</title>
		<link>http://www.techartifact.com/blogs/2009/05/refreshing-the-page-by-java-mehtod-in-oracle-adf.html/comment-page-1#comment-1874</link>
		<dc:creator>vinay</dc:creator>
		<pubDate>Thu, 29 Sep 2011 10:14:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.techartifact.com/blogs/2009/05/refreshing-the-page-by-java-mehtod-in-oracle-adf.html#comment-1874</guid>
		<description>well.. not sure.can you let me know the exact scenario.so that i can help you much better</description>
		<content:encoded><![CDATA[<p>well.. not sure.can you let me know the exact scenario.so that i can help you much better</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nidhi</title>
		<link>http://www.techartifact.com/blogs/2009/05/refreshing-the-page-by-java-mehtod-in-oracle-adf.html/comment-page-1#comment-1873</link>
		<dc:creator>Nidhi</dc:creator>
		<pubDate>Thu, 29 Sep 2011 10:09:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.techartifact.com/blogs/2009/05/refreshing-the-page-by-java-mehtod-in-oracle-adf.html#comment-1873</guid>
		<description>Hi Vinay,

My use case is to refresh the page when browser is refreshed. 
I want to call this method when browser refresh happens. 

How can I solve this issue?

Thanks</description>
		<content:encoded><![CDATA[<p>Hi Vinay,</p>
<p>My use case is to refresh the page when browser is refreshed.<br />
I want to call this method when browser refresh happens. </p>
<p>How can I solve this issue?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vinay</title>
		<link>http://www.techartifact.com/blogs/2009/05/refreshing-the-page-by-java-mehtod-in-oracle-adf.html/comment-page-1#comment-1736</link>
		<dc:creator>vinay</dc:creator>
		<pubDate>Sat, 10 Sep 2011 09:28:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.techartifact.com/blogs/2009/05/refreshing-the-page-by-java-mehtod-in-oracle-adf.html#comment-1736</guid>
		<description>well i don&#039;t think that this is best way to do.and i am not sure whther it will work or not.create procedure in pl/sql which have one parameter and whose functionality is as to insert record in user_item table.this is best way to do so..


you just need to pick the value from input text and pass into the parameter of procedure .call the procedure calling method in bean.............</description>
		<content:encoded><![CDATA[<p>well i don&#8217;t think that this is best way to do.and i am not sure whther it will work or not.create procedure in pl/sql which have one parameter and whose functionality is as to insert record in user_item table.this is best way to do so..</p>
<p>you just need to pick the value from input text and pass into the parameter of procedure .call the procedure calling method in bean&#8230;&#8230;&#8230;&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rocky</title>
		<link>http://www.techartifact.com/blogs/2009/05/refreshing-the-page-by-java-mehtod-in-oracle-adf.html/comment-page-1#comment-1722</link>
		<dc:creator>Rocky</dc:creator>
		<pubDate>Thu, 08 Sep 2011 20:16:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.techartifact.com/blogs/2009/05/refreshing-the-page-by-java-mehtod-in-oracle-adf.html#comment-1722</guid>
		<description>Hi Vinay,

I am new to ADF.

- I have table, user_items with only one column product_key.
- I have another table, product_master which has product_key, product_name, description, uom, etc.
  It has about 100000 records.

I am developing the jspx page where there is a single af:input text field.

In that textbox, user will enter the product_name textbox and clicks submit the button.

I need to get the product_key from product_master table and save it to user_items table.

----

I created 2 EOs/VOs. One for each user_items and product_master tables.

Dragged the user_items datacontrol on the jsp page and made the product_key text as hidden
Added the new textbox the component palette to enter product_name. Auto suggest feature is not
a good idea as there 100000 records in that table. So, from the valueChangeListener I want
to call the bean to get the product_id and assign to hidden input box so that when the
user clicks submit it will saved in the user_items table automatically.

Is it possible to do it in the bean like I mentioned above?

Thanks</description>
		<content:encoded><![CDATA[<p>Hi Vinay,</p>
<p>I am new to ADF.</p>
<p>- I have table, user_items with only one column product_key.<br />
- I have another table, product_master which has product_key, product_name, description, uom, etc.<br />
  It has about 100000 records.</p>
<p>I am developing the jspx page where there is a single af:input text field.</p>
<p>In that textbox, user will enter the product_name textbox and clicks submit the button.</p>
<p>I need to get the product_key from product_master table and save it to user_items table.</p>
<p>&#8212;-</p>
<p>I created 2 EOs/VOs. One for each user_items and product_master tables.</p>
<p>Dragged the user_items datacontrol on the jsp page and made the product_key text as hidden<br />
Added the new textbox the component palette to enter product_name. Auto suggest feature is not<br />
a good idea as there 100000 records in that table. So, from the valueChangeListener I want<br />
to call the bean to get the product_id and assign to hidden input box so that when the<br />
user clicks submit it will saved in the user_items table automatically.</p>
<p>Is it possible to do it in the bean like I mentioned above?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vinay</title>
		<link>http://www.techartifact.com/blogs/2009/05/refreshing-the-page-by-java-mehtod-in-oracle-adf.html/comment-page-1#comment-1526</link>
		<dc:creator>vinay</dc:creator>
		<pubDate>Tue, 23 Aug 2011 05:53:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.techartifact.com/blogs/2009/05/refreshing-the-page-by-java-mehtod-in-oracle-adf.html#comment-1526</guid>
		<description>it will work</description>
		<content:encoded><![CDATA[<p>it will work</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rocky</title>
		<link>http://www.techartifact.com/blogs/2009/05/refreshing-the-page-by-java-mehtod-in-oracle-adf.html/comment-page-1#comment-1525</link>
		<dc:creator>Rocky</dc:creator>
		<pubDate>Tue, 23 Aug 2011 03:14:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.techartifact.com/blogs/2009/05/refreshing-the-page-by-java-mehtod-in-oracle-adf.html#comment-1525</guid>
		<description>Hi Vinay,

Will this method work for oracle ADF 11g?
I see that this method was posted in the 2009.

Thanks</description>
		<content:encoded><![CDATA[<p>Hi Vinay,</p>
<p>Will this method work for oracle ADF 11g?<br />
I see that this method was posted in the 2009.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vijay</title>
		<link>http://www.techartifact.com/blogs/2009/05/refreshing-the-page-by-java-mehtod-in-oracle-adf.html/comment-page-1#comment-1471</link>
		<dc:creator>vijay</dc:creator>
		<pubDate>Wed, 27 Jul 2011 06:49:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.techartifact.com/blogs/2009/05/refreshing-the-page-by-java-mehtod-in-oracle-adf.html#comment-1471</guid>
		<description>Hi Vinay,

Its helped me to refresh the page..thanks..</description>
		<content:encoded><![CDATA[<p>Hi Vinay,</p>
<p>Its helped me to refresh the page..thanks..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SM Shohid</title>
		<link>http://www.techartifact.com/blogs/2009/05/refreshing-the-page-by-java-mehtod-in-oracle-adf.html/comment-page-1#comment-1045</link>
		<dc:creator>SM Shohid</dc:creator>
		<pubDate>Wed, 04 Nov 2009 04:01:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.techartifact.com/blogs/2009/05/refreshing-the-page-by-java-mehtod-in-oracle-adf.html#comment-1045</guid>
		<description>Hi Vinay...
I need auto refreshment with the server data in a whole page in 1 Minute interval.. I m new in Oracle adf.. can u help me regarding this... Thanks in advance..</description>
		<content:encoded><![CDATA[<p>Hi Vinay&#8230;<br />
I need auto refreshment with the server data in a whole page in 1 Minute interval.. I m new in Oracle adf.. can u help me regarding this&#8230; Thanks in advance..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vinay</title>
		<link>http://www.techartifact.com/blogs/2009/05/refreshing-the-page-by-java-mehtod-in-oracle-adf.html/comment-page-1#comment-577</link>
		<dc:creator>vinay</dc:creator>
		<pubDate>Sun, 31 May 2009 06:46:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.techartifact.com/blogs/2009/05/refreshing-the-page-by-java-mehtod-in-oracle-adf.html#comment-577</guid>
		<description>yes we can use.But that will work only to refresh the iterator.This method will refresh the whole page.

Let me know if you have any doubt.</description>
		<content:encoded><![CDATA[<p>yes we can use.But that will work only to refresh the iterator.This method will refresh the whole page.</p>
<p>Let me know if you have any doubt.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Husain</title>
		<link>http://www.techartifact.com/blogs/2009/05/refreshing-the-page-by-java-mehtod-in-oracle-adf.html/comment-page-1#comment-528</link>
		<dc:creator>Husain</dc:creator>
		<pubDate>Fri, 29 May 2009 15:55:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.techartifact.com/blogs/2009/05/refreshing-the-page-by-java-mehtod-in-oracle-adf.html#comment-528</guid>
		<description>Hi Vinay,

Great Article !
Cant we also use the refresh attribute of iterator in page definition to do something similar?</description>
		<content:encoded><![CDATA[<p>Hi Vinay,</p>
<p>Great Article !<br />
Cant we also use the refresh attribute of iterator in page definition to do something similar?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

