<?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: Popping up the Persistent Customer Dashboard</title>
	<atom:link href="http://blog.notesonsiebel.com/2007/03/02/popping-up-the-persistent-customer-dashboard/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.notesonsiebel.com/2007/03/02/popping-up-the-persistent-customer-dashboard/</link>
	<description>Technical advice, help and instruction with Siebel Systems</description>
	<lastBuildDate>Wed, 07 Dec 2011 07:03:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Eswar</title>
		<link>http://blog.notesonsiebel.com/2007/03/02/popping-up-the-persistent-customer-dashboard/comment-page-1/#comment-321</link>
		<dc:creator>Eswar</dc:creator>
		<pubDate>Tue, 12 Jul 2011 09:51:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.notesonsiebel.com/2007/03/02/popping-up-the-persistent-customer-dashboard/#comment-321</guid>
		<description>To Add more details related to my part of code:

In BC: preset Event, i wrote the below code:

if (fieldName == &quot;Type&quot; &amp;&amp; value == &quot;Deceased&quot;)
      
{
     if(confirm(&quot;Are you sure you want to Decease the Contact?&quot;))		
{
 theApplication().SetProfileAttr(&quot;SKTLContactId&quot;, &quot;true&quot;);             
}
//else (when cancel button is clicked)

*******
In Applet PreInvoke Event i wrote the below code:

if (name == &quot;PostChanges&quot;)
{
 var strDecea = theApplication().GetProfileAttr(&quot;SKTLContactId&quot;);
	if (strDecea == &quot;true&quot;)			  
       {				        theApplication().SetProfileAttr(&quot;SKTLContactId&quot;, &quot;false&quot;);		
var obj = this.FindActiveXControl(&quot;ShowPopup&quot;);  // i created a control called ShowPopup	                  
obj.all[0].all[0].click();
	}	  
}

thanks,
eswar</description>
		<content:encoded><![CDATA[<p>To Add more details related to my part of code:</p>
<p>In BC: preset Event, i wrote the below code:</p>
<p>if (fieldName == &#8220;Type&#8221; &amp;&amp; value == &#8220;Deceased&#8221;)</p>
<p>{<br />
     if(confirm(&#8220;Are you sure you want to Decease the Contact?&#8221;))<br />
{<br />
 theApplication().SetProfileAttr(&#8220;SKTLContactId&#8221;, &#8220;true&#8221;);<br />
}<br />
//else (when cancel button is clicked)</p>
<p>*******<br />
In Applet PreInvoke Event i wrote the below code:</p>
<p>if (name == &#8220;PostChanges&#8221;)<br />
{<br />
 var strDecea = theApplication().GetProfileAttr(&#8220;SKTLContactId&#8221;);<br />
	if (strDecea == &#8220;true&#8221;)<br />
       {				        theApplication().SetProfileAttr(&#8220;SKTLContactId&#8221;, &#8220;false&#8221;);<br />
var obj = this.FindActiveXControl(&#8220;ShowPopup&#8221;);  // i created a control called ShowPopup<br />
obj.all[0].all[0].click();<br />
	}<br />
}</p>
<p>thanks,<br />
eswar</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eswar</title>
		<link>http://blog.notesonsiebel.com/2007/03/02/popping-up-the-persistent-customer-dashboard/comment-page-1/#comment-320</link>
		<dc:creator>Eswar</dc:creator>
		<pubDate>Tue, 12 Jul 2011 08:50:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.notesonsiebel.com/2007/03/02/popping-up-the-persistent-customer-dashboard/#comment-320</guid>
		<description>Hi,

&quot;obj.all[0].all[0].click();&quot;

can you please explain me what this does exactly. i have a similar requirement (desc below).

  when user sets contact status to &quot;Deceased&quot;, a warning mesage should popup saying &quot;R U sure ?&quot;, if user clicks &quot;OK&quot; a Contact Popup applet should open. I tried the sample code shown above 

&quot;var obj = this.FindActiveXControl(&quot;UpdateDashboard&quot;);
obj.all[0].all[0].click(); &quot;

but this is not working. Can you please expain me &quot;obj.all[0].all[0].click(); &quot;?

thanks,
eswar</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>&#8220;obj.all[0].all[0].click();&#8221;</p>
<p>can you please explain me what this does exactly. i have a similar requirement (desc below).</p>
<p>  when user sets contact status to &#8220;Deceased&#8221;, a warning mesage should popup saying &#8220;R U sure ?&#8221;, if user clicks &#8220;OK&#8221; a Contact Popup applet should open. I tried the sample code shown above </p>
<p>&#8220;var obj = this.FindActiveXControl(&#8220;UpdateDashboard&#8221;);<br />
obj.all[0].all[0].click(); &#8221;</p>
<p>but this is not working. Can you please expain me &#8220;obj.all[0].all[0].click(); &#8220;?</p>
<p>thanks,<br />
eswar</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sireesha</title>
		<link>http://blog.notesonsiebel.com/2007/03/02/popping-up-the-persistent-customer-dashboard/comment-page-1/#comment-319</link>
		<dc:creator>Sireesha</dc:creator>
		<pubDate>Thu, 30 Jun 2011 05:48:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.notesonsiebel.com/2007/03/02/popping-up-the-persistent-customer-dashboard/#comment-319</guid>
		<description>hi, I am working on this dashboard functionality, the challenge I am facing is alignment of the labels on the dashboard.

Currently labels are getting right aligned but the requirement is the left alignment. Could you help with this.</description>
		<content:encoded><![CDATA[<p>hi, I am working on this dashboard functionality, the challenge I am facing is alignment of the labels on the dashboard.</p>
<p>Currently labels are getting right aligned but the requirement is the left alignment. Could you help with this.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

