<?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: 4 Steps for Host based concurrent program</title>
	<atom:link href="http://www.oracleappshub.com/aol/4-steps-for-host-based-concurrent-program/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.oracleappshub.com/aol/4-steps-for-host-based-concurrent-program/</link>
	<description>Odyssey of an OracleApps Consultant</description>
	<lastBuildDate>Thu, 16 May 2013 22:05:34 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
	<item>
		<title>By: Ramesh</title>
		<link>http://www.oracleappshub.com/aol/4-steps-for-host-based-concurrent-program/comment-page-1/#comment-2877</link>
		<dc:creator>Ramesh</dc:creator>
		<pubDate>Thu, 07 Oct 2010 18:44:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.oracleappshub.com/aol/4-steps-for-host-based-concurrent-program/#comment-2877</guid>
		<description>hi Snajit,

I have a req- like I have a SQL query which returns like - 700 records - now - this SQL script need to be scheduled - to run everymonth 15th. 

Req: When we run this SQL through Concurent request - the out of this SQL script sud be placed in one of the FTP server location in XLS format

Qsn: - how do I start for this req - like after I read ur tthread I learned - that I have to register as a Host program - but how abt that SQL whcich returns -   values ??

plz shed some light on this to start..
my email - rameshkumar.pujari@gmail.com

thax in adv</description>
		<content:encoded><![CDATA[<p>hi Snajit,</p>
<p>I have a req- like I have a SQL query which returns like &#8211; 700 records &#8211; now &#8211; this SQL script need to be scheduled &#8211; to run everymonth 15th. </p>
<p>Req: When we run this SQL through Concurent request &#8211; the out of this SQL script sud be placed in one of the FTP server location in XLS format</p>
<p>Qsn: &#8211; how do I start for this req &#8211; like after I read ur tthread I learned &#8211; that I have to register as a Host program &#8211; but how abt that SQL whcich returns &#8211;   values ??</p>
<p>plz shed some light on this to start..<br />
my email &#8211; <a href="mailto:rameshkumar.pujari@gmail.com">rameshkumar.pujari@gmail.com</a></p>
<p>thax in adv</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lalit sanodia</title>
		<link>http://www.oracleappshub.com/aol/4-steps-for-host-based-concurrent-program/comment-page-1/#comment-2757</link>
		<dc:creator>lalit sanodia</dc:creator>
		<pubDate>Mon, 21 Jun 2010 14:36:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.oracleappshub.com/aol/4-steps-for-host-based-concurrent-program/#comment-2757</guid>
		<description>How to send the status as warning for a Host concurrent program.</description>
		<content:encoded><![CDATA[<p>How to send the status as warning for a Host concurrent program.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steps for Host based concurrent program: Sample code &#124; OracleApps Epicenter</title>
		<link>http://www.oracleappshub.com/aol/4-steps-for-host-based-concurrent-program/comment-page-1/#comment-2594</link>
		<dc:creator>Steps for Host based concurrent program: Sample code &#124; OracleApps Epicenter</dc:creator>
		<pubDate>Thu, 24 Dec 2009 02:40:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.oracleappshub.com/aol/4-steps-for-host-based-concurrent-program/#comment-2594</guid>
		<description>[...] 7. Go to system admin,complete the steps as mention in this post. [...]</description>
		<content:encoded><![CDATA[<p>[...] 7. Go to system admin,complete the steps as mention in this post. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pradeep</title>
		<link>http://www.oracleappshub.com/aol/4-steps-for-host-based-concurrent-program/comment-page-1/#comment-2525</link>
		<dc:creator>Pradeep</dc:creator>
		<pubDate>Fri, 09 Oct 2009 09:18:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.oracleappshub.com/aol/4-steps-for-host-based-concurrent-program/#comment-2525</guid>
		<description>Hi Sachin Goel,

Here is the way how to set WARNING for a HOST concurrent program.

In UNIX, you have only 2 status i.e; True or False.

If you use exit 1 you can see Completed Error stauts for Concurrent request.

To Set other status follow this:

MYOWNSTATUS=`sqlplus -s $1 &lt;&lt;!
SET HEADING FEEDBACK OFF PAGESIZE 0
declare
l_result boolean;
l_session_id number;
begin
fnd_global.INITIALIZE(l_session_id, null, null, null,null, -1, null, null, null, null, $4, null,null,null,null,null,null,-1);
l_result := fnd_concurrent.set_completion_status(&#039;WARNING&#039;,&#039;Review log file for details.&#039;);
commit;
end;
/
exit;
!`

Include the above code in your script. This will work

Note: $1 is Username/Password and $4 is FCP_REQID (Request id).
Do let me know if you need any more info.</description>
		<content:encoded><![CDATA[<p>Hi Sachin Goel,</p>
<p>Here is the way how to set WARNING for a HOST concurrent program.</p>
<p>In UNIX, you have only 2 status i.e; True or False.</p>
<p>If you use exit 1 you can see Completed Error stauts for Concurrent request.</p>
<p>To Set other status follow this:</p>
<p>MYOWNSTATUS=`sqlplus -s $1 &lt;&lt;!<br />
SET HEADING FEEDBACK OFF PAGESIZE 0<br />
declare<br />
l_result boolean;<br />
l_session_id number;<br />
begin<br />
fnd_global.INITIALIZE(l_session_id, null, null, null,null, -1, null, null, null, null, $4, null,null,null,null,null,null,-1);<br />
l_result := fnd_concurrent.set_completion_status(&#8216;WARNING&#8217;,'Review log file for details.&#8217;);<br />
commit;<br />
end;<br />
/<br />
exit;<br />
!`</p>
<p>Include the above code in your script. This will work</p>
<p>Note: $1 is Username/Password and $4 is FCP_REQID (Request id).<br />
Do let me know if you need any more info.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anupam</title>
		<link>http://www.oracleappshub.com/aol/4-steps-for-host-based-concurrent-program/comment-page-1/#comment-2435</link>
		<dc:creator>Anupam</dc:creator>
		<pubDate>Thu, 16 Jul 2009 22:04:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.oracleappshub.com/aol/4-steps-for-host-based-concurrent-program/#comment-2435</guid>
		<description>Thx a lot :)</description>
		<content:encoded><![CDATA[<p>Thx a lot :)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
