<?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>Online Siebel Tutorials - Bookshelf &#187; Scripting</title>
	<atom:link href="http://www.siebelintegration.com/index.php/category/configuration/scripting/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.siebelintegration.com</link>
	<description>Learn by Sharing Siebel Knowledge............</description>
	<lastBuildDate>Mon, 12 Jul 2010 11:17:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to See Hidden Object Properties of Siebel Tools?</title>
		<link>http://www.siebelintegration.com/index.php/configuration/how-to-see-hidden-object-properties-of-siebel-tools/</link>
		<comments>http://www.siebelintegration.com/index.php/configuration/how-to-see-hidden-object-properties-of-siebel-tools/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 22:51:05 +0000</pubDate>
		<dc:creator>Site Admin</dc:creator>
				<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Debugging Techniques]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Hidden Siebel Objects Properties]]></category>
		<category><![CDATA[Screen Menu Icons]]></category>
		<category><![CDATA[Siebel Debugging]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://www.siebelintegration.com/?p=241</guid>
		<description><![CDATA[When you goto Tools-&#62;Screen object, you cannot see &#8216;Bitmap Category&#8217; field because it is HIDDEN in tools for a normal view. You need to enable it from Tools CFG.
Here are steps -
1. Open your Tools.cfg.
2. Search for &#8220;ClientConfigurationMode&#8221;, it might be there with value like
   ClientConfigurationMode  = Web
3. If you find it or did&#8217;t find it, just add/replace below value to the [Siebel] section of CFG. This is the first section of CFG.
   ClientConfigurationMode  = All
4. Relaunch your Tools. This will show certain hidden ...]]></description>
		<wfw:commentRss>http://www.siebelintegration.com/index.php/configuration/how-to-see-hidden-object-properties-of-siebel-tools/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to Remove Special Characters using Siebel eScript?</title>
		<link>http://www.siebelintegration.com/index.php/configuration/how-to-remove-special-characters-using-siebel-escript/</link>
		<comments>http://www.siebelintegration.com/index.php/configuration/how-to-remove-special-characters-using-siebel-escript/#comments</comments>
		<pubDate>Wed, 06 May 2009 09:20:57 +0000</pubDate>
		<dc:creator>Site Admin</dc:creator>
				<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://www.siebelintegration.com/?p=146</guid>
		<description><![CDATA[Suppose your data having special characters is stored in string variable sLoginName.
Then below is code that will do your job.
while(Clib.strchr(sLoginName, &#8216; &#8216;) &#124;&#124; Clib.strchr(sLoginName, &#8216;\n&#8217;) &#124;&#124; Clib.strchr(sLoginName, &#8216;\r\n&#8217;)))
{
       sLoginName = sLoginName.replace(&#8221;\r\n&#8221;,&#8221;");
       sLoginName = sLoginName.replace(&#8221;\n&#8221;,&#8221;");
      sLoginName = sLoginName.replace(&#8221; &#8220;,&#8221;");
}
Post your replies below and any question to Interview Forum.
]]></description>
		<wfw:commentRss>http://www.siebelintegration.com/index.php/configuration/how-to-remove-special-characters-using-siebel-escript/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to show Primary Record of MVG on Parent Applet when MVG Closes?</title>
		<link>http://www.siebelintegration.com/index.php/configuration/how-to-show-primary-record-of-mvg-on-parent-applet-when-mvg-closes/</link>
		<comments>http://www.siebelintegration.com/index.php/configuration/how-to-show-primary-record-of-mvg-on-parent-applet-when-mvg-closes/#comments</comments>
		<pubDate>Wed, 06 May 2009 08:37:24 +0000</pubDate>
		<dc:creator>Site Admin</dc:creator>
				<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://www.siebelintegration.com/?p=141</guid>
		<description><![CDATA[Scenario:
When you select any record in a MVG applet, and then close the applet with that record selected, that record is shown on the MVF of parent. Now our requirement is that we want to show only the Primary Record of the MVG to show up in Parent MVF, how to achieve it –
Solution:
Write the below code in the MVG Applet’s Server Script &#8211; WebApplet_PreInvokeMethod
function WebApplet_PreInvokeMethod (MethodName)
{
   if (MethodName == "CloseApplet")
   {
       this.BusComp().ClearToQuery();
       this.BusComp().SetSearchSpec("SSA ...]]></description>
		<wfw:commentRss>http://www.siebelintegration.com/index.php/configuration/how-to-show-primary-record-of-mvg-on-parent-applet-when-mvg-closes/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to kill Dedicated Siebel.exe from Task Manager?</title>
		<link>http://www.siebelintegration.com/index.php/configuration/scripting/how-to-kill-dedicated-siebelexe-from-task-manager/</link>
		<comments>http://www.siebelintegration.com/index.php/configuration/scripting/how-to-kill-dedicated-siebelexe-from-task-manager/#comments</comments>
		<pubDate>Wed, 06 May 2009 07:23:28 +0000</pubDate>
		<dc:creator>Site Admin</dc:creator>
				<category><![CDATA[Debugging Techniques]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Dedicated Client]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://www.siebelintegration.com/?p=135</guid>
		<description><![CDATA[1. Create a simple batch file &#8220;SiebelKill.bat&#8221;
2. Right Click Edit the file with Notepad
3. Put the below text
REM******************************************************************************
TASKKILL /F /IM siebel.exe
TASKKILL /F /IM iexplore.exe /FI &#8220;WINDOWTITLE eq Siebel Call Center &#8211; Microsoft Internet Explorer*&#8221;
REM******************************************************************************
4. Save the file
5. Double click the file whenever you want your dedicated Siebel application and its task – Siebel.exe to get killed from Task Manager automatically.
And its done&#8230;
]]></description>
		<wfw:commentRss>http://www.siebelintegration.com/index.php/configuration/scripting/how-to-kill-dedicated-siebelexe-from-task-manager/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Increase Log Levels in Dedicated Client</title>
		<link>http://www.siebelintegration.com/index.php/configuration/scripting/how-to-increase-log-levels-in-dedicated-client/</link>
		<comments>http://www.siebelintegration.com/index.php/configuration/scripting/how-to-increase-log-levels-in-dedicated-client/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 11:24:49 +0000</pubDate>
		<dc:creator>Site Admin</dc:creator>
				<category><![CDATA[Debugging Techniques]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Business Service Simulator]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Siebel Debugging]]></category>
		<category><![CDATA[Siebel Dedicated Local Log Level]]></category>

		<guid isPermaLink="false">http://www.siebelintegration.com/?p=96</guid>
		<description><![CDATA[Right Click on My Computer
Goto Properties -> Advanced -> Environment Variables
Goto System Variables. Click New. Add below values
Variable Name : SIEBEL_LOG_EVENTS
Variable Value: can be (1,2,3,4,ALL). Highest value is "ALL"

Goto System Variables again. Click New. Add below values
Variable Name : SIEBEL_LOG_DIR
Variable Value: Directory where you wants logs like (c:LocalLogdir)

]]></description>
		<wfw:commentRss>http://www.siebelintegration.com/index.php/configuration/scripting/how-to-increase-log-levels-in-dedicated-client/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Trace Browser &#8211; Server Scripts in Siebel</title>
		<link>http://www.siebelintegration.com/index.php/configuration/scripting/how-trace-browser-server-scripts-in-siebel/</link>
		<comments>http://www.siebelintegration.com/index.php/configuration/scripting/how-trace-browser-server-scripts-in-siebel/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 07:11:24 +0000</pubDate>
		<dc:creator>Site Admin</dc:creator>
				<category><![CDATA[Debugging Techniques]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Siebel Debugging]]></category>

		<guid isPermaLink="false">http://www.siebelintegration.com/?p=81</guid>
		<description><![CDATA[How to do Browser Script Tracing in Siebel
For tracing the browser script, you can follow the below procedure –
1. In Application Browser script, create new script with MethodName “trace_log”.
function trace_log(as_text)
{
try
{
 var MyWindow = window.open(&#8221;,&#8217;DEBUG&#8217;,'toolbar=no,location=no,&#8217; + &#8216;directories=no,status=no,menubar=no,&#8217; + &#8217;scrollbars=yes,resizable=yes,&#8217; + &#8216;width=400,height=300,left=20,top=20&#8242;);
 MyWindow.document.write(as_text + &#8220;&#60;BR&#62;&#60;BR&#62;&#8221;);
}//try
catch(e)
{
 alert(&#8221;an error occurred in log &#8221; + e.message + &#8220;n&#8221; + e.toString());}//catch
finally
{
 MyWindow = null; }//finally
}//endfunc
2. Application Browser Script declarations write –
 top.log = trace_log.
3. Now you can call top.log(“text”) function from any Browser Script(Application, Applet, BusComp, Business Service) , it will write logs to a pop-up ...]]></description>
		<wfw:commentRss>http://www.siebelintegration.com/index.php/configuration/scripting/how-trace-browser-server-scripts-in-siebel/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>How to Debug Siebel Dedicated Client</title>
		<link>http://www.siebelintegration.com/index.php/configuration/scripting/how-to-debug-siebel-dedicated-client/</link>
		<comments>http://www.siebelintegration.com/index.php/configuration/scripting/how-to-debug-siebel-dedicated-client/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 06:58:50 +0000</pubDate>
		<dc:creator>Site Admin</dc:creator>
				<category><![CDATA[Debugging Techniques]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Business Service Simulator]]></category>
		<category><![CDATA[Siebel Debugging]]></category>

		<guid isPermaLink="false">http://www.siebelintegration.com/?p=78</guid>
		<description><![CDATA[During the development or testing phase of Siebel Application we may encounter errors in Siebel Dedicated or Tools. So how do we find out the source of error or where to raise log levels to get detailed log file.
 Siebel provides some debugging techniques , just follow the below links for details
•   Enable Client Side Tracing Scripts
•   Siebel Environment Variables
•   Spooling
•   Siebel Debugger – Break Points
]]></description>
		<wfw:commentRss>http://www.siebelintegration.com/index.php/configuration/scripting/how-to-debug-siebel-dedicated-client/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
