Articles in the Siebel Scripting Category
Interview Question, Siebel 8.x, Siebel Scripting »
Post by Rachna Agarwal
The new features added for siebel 8.O eScript
1. The ST eScript Engine is enabled by default in Siebel 8.0
2. The Fix and Go option makes script testing more efficient by allowing scripts to be edited and the debugging process to continue without having to recompile the program after each change.
An Overview, Siebel Scripting »
Post by Rachna Agarwal
Browser Script executes in and is interpreted by the browser. Browser Scripts are written in
JavaScript and interact with the Document Object Model (DOM) as well as with the Siebel Object Model available in the browser through the Browser Interaction Manager. A developer can script the behavior of Siebel events as well as the browser events that are exposed through the DOM. The DOM for Internet Explorer and Netscape Navigator are different. Using Siebel Tools you can write scripts for the appropriate browser type by selecting the appropriate …
An Overview, Siebel Scripting »
The Siebel applications include two programming languages. Siebel VB is a Visual Basic-like programming environment that includes an editor, debugger, interpreter and compiler. Siebel VB runs on the Windows operating system only. Siebel eScript is, similarly, a JavaScript-like programming environment, which uses the same tools that Siebel VB uses. Siebel eScript runs on both Windows and UNIX operating systems. With these built-in languages, you can extend and configure your Siebel application beyond the capabilities provided by declarative object property definition. The languages are integrated with other Siebel tools, such as …
Siebel Scripting »
Purpose:Local Web Service is available in Siebel Enterprise Application version 7.5 and higher. Local Web Service provides customers with the ability to invoke inbound Web Service locally. When calling Local Web Service by the outbound Web Service, the request will not pass through the web server but directly call to the inbound Web Service. By using this characteristic you can use Local Web Service to test web service on a dedicated client.Follow given steps for setting up an Inbound Web Service as a Local Web Service
Interview Question, Siebel Scripting »
In general a developer or BA should avoid Siebel scripting where possible or to go for that to a minimum . Attempt to meet business requirements by configuring in Siebel Tools where possible and generally implementing scripts for minor functionality where a given functionality cannot be met using declarative configuration.
Here are the list of Best practices for sibel scipting by siebel experts.
Server Administration, Siebel Knowledge, Siebel Scripting »
How Do You Send Email via Siebel Scripting or Object Interfaces Using Outbound Communication Manager
The Communications Outbound Manager processes outbound communications, for email, fax, wireless message, or page channels. It also supports outbound capabilities for Siebel Email Response and for the Send Email, Send Fax, and Send Wireless Message commands.
For further information, refer to Siebel Bookshelf version 7.5.x > Siebel Communications Server Administration Guide > Administering Siebel Communications Server > Administering Communications Outbound Manager.
Here is the eScript sample code:
//—-start
//instantiate the business service and the propertysets
var bs = TheApplication().GetService(“Outbound Communications Manager”);
var …

