Siebel eScript Language Reference >

Siebel eScript Language Overview


Siebel eScript is a scripting or programming language that application developers use to write simple scripts to extend Siebel applications. JavaScript, a popular scripting language used primarily on Web sites, is its core language.

Siebel eScript is ECMAScript compliant. ECMAScript is the standard implementation of JavaScript as defined by the ECMA-262 standard.

Siebel eScript provides access to local system calls through two objects, Clib and SElib, so you can use C-style programming calls to certain parts of the local operating system. This allows programmers to write files to the local hard disk and perform other tasks that standard JavaScript cannot.

You should regard coding as a last resort. Siebel Tools provides many ways to configure your Siebel application without coding, and these methods should be exhausted before you attempt to write your own code, for the following reasons:

  • Using Siebel Tools is easier than writing code.
  • More important, your code may not survive an upgrade. Customizations created directly in Siebel Tools are upgraded automatically when you upgrade your Siebel application, but code is not touched, and it may need to be reviewed following an upgrade.
  • Finally, declarative configuration through Siebel Tools results in better performance than implementing the same functionality through code.

For more information on Siebel eScript programming, read the following topics.

Siebel eScript Language Reference