<?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: Siebel Developers Life made easy &#8211; Script Assist new ST eScript Engine.</title>
	<atom:link href="http://siebelunleashed.com/siebel-developers-life-made-easy-script-assist-new-st-escript-engine/feed/" rel="self" type="application/rss+xml" />
	<link>http://siebelunleashed.com/siebel-developers-life-made-easy-script-assist-new-st-escript-engine/</link>
	<description>Making Siebel Simple</description>
	<lastBuildDate>Tue, 16 Mar 2010 11:19:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: T Script engine VS ST Script Engine. &#124; Siebel Unleashed</title>
		<link>http://siebelunleashed.com/siebel-developers-life-made-easy-script-assist-new-st-escript-engine/#comment-510</link>
		<dc:creator>T Script engine VS ST Script Engine. &#124; Siebel Unleashed</dc:creator>
		<pubDate>Fri, 29 Feb 2008 06:11:29 +0000</pubDate>
		<guid isPermaLink="false">http://siebelunleashed.com/siebel-developers-life-made-easy-script-assist-new-st-escript-engine/#comment-510</guid>
		<description>[...]  I already have written a post explaining how to enable it. [...]</description>
		<content:encoded><![CDATA[<p>[...]  I already have written a post explaining how to enable it. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: T Script engine VS ST Script Engine. &#124; Siebel Unleashed</title>
		<link>http://siebelunleashed.com/siebel-developers-life-made-easy-script-assist-new-st-escript-engine/#comment-509</link>
		<dc:creator>T Script engine VS ST Script Engine. &#124; Siebel Unleashed</dc:creator>
		<pubDate>Fri, 29 Feb 2008 06:11:29 +0000</pubDate>
		<guid isPermaLink="false">http://siebelunleashed.com/siebel-developers-life-made-easy-script-assist-new-st-escript-engine/#comment-509</guid>
		<description>[...]  I already have written a post explaining how to enable it. [...]</description>
		<content:encoded><![CDATA[<p>[...]  I already have written a post explaining how to enable it. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PS Pad Editor – making Siebel eScript easier &#124; Siebel Unleashed</title>
		<link>http://siebelunleashed.com/siebel-developers-life-made-easy-script-assist-new-st-escript-engine/#comment-188</link>
		<dc:creator>PS Pad Editor – making Siebel eScript easier &#124; Siebel Unleashed</dc:creator>
		<pubDate>Wed, 26 Dec 2007 11:11:52 +0000</pubDate>
		<guid isPermaLink="false">http://siebelunleashed.com/siebel-developers-life-made-easy-script-assist-new-st-escript-engine/#comment-188</guid>
		<description>[...] think all you must have read my post about ST – eScript Engine. Now for people who don’t work on version of Siebel that doesn’t support new engine or you [...]</description>
		<content:encoded><![CDATA[<p>[...] think all you must have read my post about ST – eScript Engine. Now for people who don’t work on version of Siebel that doesn’t support new engine or you [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: <img class="monsterid" src="http://siebelunleashed.com/wp-content/plugins/wp-monsterid/monsterid/de8173d1c205c8f.png" alt="Noone MonsterID Icon" height="65" width="65"/> Noone</title>
		<link>http://siebelunleashed.com/siebel-developers-life-made-easy-script-assist-new-st-escript-engine/#comment-52</link>
		<dc:creator><img class="monsterid" src="http://siebelunleashed.com/wp-content/plugins/wp-monsterid/monsterid/de8173d1c205c8f.png" alt="Noone MonsterID Icon" height="65" width="65"/> Noone</dc:creator>
		<pubDate>Tue, 30 Oct 2007 21:44:55 +0000</pubDate>
		<guid isPermaLink="false">http://siebelunleashed.com/siebel-developers-life-made-easy-script-assist-new-st-escript-engine/#comment-52</guid>
		<description>Please note that there are very valuable scripting improvements in version 8.0.
1- Repository based ScriptAssist and compilation support. Accelerates development and upgrade.
Eg:If you type
var oSvc = TheApplication.GetService (
ScriptAsist displays the list of services (and this appliies to all similar functions,
GetBusObject, GetBusComp, SetFieldValue etc).
The compiler will also generate warnings if you have such incorrect names.
2- Fix &amp; Go debugging: Greatly accelerates dbugging by eliminating .srf compilation. You make changes to the script and when you save it it applies immediately. You dont need to restart the client.
3- Services as Script libraries: Enables modular development and upgrade, accelerates development.
You can now see a script method on a Service via ScriptAssist and directly call it (w/o InvokeMethod).
Eg;
Suppose you have a method on Service Service1
function my_concat (left : chars, right : chars) : chars
{
var sReturns : chars = left + “_” + right;
}
Then you cann call this method from another place like this.
var oSvc = TheApplication ().GetService (”Service1″);
var sConcat : charr = oSvc.my_concat (”Hello”, “World”)
Thge ScriptAssist will also display that function in the drop down. 

Please refer to the latest documentation on how to use these features. These features are available for ST engine only.

You need to set the External Use &amp; Cached flag in the very first version of 8.0 to make #3 work. In later versions, you only need to set External Use flag.</description>
		<content:encoded><![CDATA[<p>Please note that there are very valuable scripting improvements in version 8.0.<br />
1- Repository based ScriptAssist and compilation support. Accelerates development and upgrade.<br />
Eg:If you type<br />
var oSvc = TheApplication.GetService (<br />
ScriptAsist displays the list of services (and this appliies to all similar functions,<br />
GetBusObject, GetBusComp, SetFieldValue etc).<br />
The compiler will also generate warnings if you have such incorrect names.<br />
2- Fix &amp; Go debugging: Greatly accelerates dbugging by eliminating .srf compilation. You make changes to the script and when you save it it applies immediately. You dont need to restart the client.<br />
3- Services as Script libraries: Enables modular development and upgrade, accelerates development.<br />
You can now see a script method on a Service via ScriptAssist and directly call it (w/o InvokeMethod).<br />
Eg;<br />
Suppose you have a method on Service Service1<br />
function my_concat (left : chars, right : chars) : chars<br />
{<br />
var sReturns : chars = left + “_” + right;<br />
}<br />
Then you cann call this method from another place like this.<br />
var oSvc = TheApplication ().GetService (”Service1″);<br />
var sConcat : charr = oSvc.my_concat (”Hello”, “World”)<br />
Thge ScriptAssist will also display that function in the drop down. </p>
<p>Please refer to the latest documentation on how to use these features. These features are available for ST engine only.</p>
<p>You need to set the External Use &amp; Cached flag in the very first version of 8.0 to make #3 work. In later versions, you only need to set External Use flag.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: <img class="monsterid" src="http://siebelunleashed.com/wp-content/plugins/wp-monsterid/monsterid/32d1edee21a6df3.png" alt="Sebastian MonsterID Icon" height="65" width="65"/> Sebastian</title>
		<link>http://siebelunleashed.com/siebel-developers-life-made-easy-script-assist-new-st-escript-engine/#comment-51</link>
		<dc:creator><img class="monsterid" src="http://siebelunleashed.com/wp-content/plugins/wp-monsterid/monsterid/32d1edee21a6df3.png" alt="Sebastian MonsterID Icon" height="65" width="65"/> Sebastian</dc:creator>
		<pubDate>Tue, 30 Oct 2007 19:33:49 +0000</pubDate>
		<guid isPermaLink="false">http://siebelunleashed.com/siebel-developers-life-made-easy-script-assist-new-st-escript-engine/#comment-51</guid>
		<description>Hi, Ankit. The only problem you can face with this new engine is if you are running Siebel 7.7.2.x, in which some standard BS doesn&#039;t compile. Here&#039;s the list:

Business Service
Alert Online Email Notification
CyberSource Adapter Service
EAI Create SearchSpec IntObj
Order - SAP 4x Maps
Taxware Adapter Service (eScript)
WorkFlow Patcher

If you need more info about this problem you can search for Alert 1176, or ask us ;-)

Regards!</description>
		<content:encoded><![CDATA[<p>Hi, Ankit. The only problem you can face with this new engine is if you are running Siebel 7.7.2.x, in which some standard BS doesn&#8217;t compile. Here&#8217;s the list:</p>
<p>Business Service<br />
Alert Online Email Notification<br />
CyberSource Adapter Service<br />
EAI Create SearchSpec IntObj<br />
Order &#8211; SAP 4x Maps<br />
Taxware Adapter Service (eScript)<br />
WorkFlow Patcher</p>
<p>If you need more info about this problem you can search for Alert 1176, or ask us <img src='http://siebelunleashed.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Regards!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
