Siebel eScript Language Reference > Siebel eScript Language Overview > Basic Siebel eScript Concepts >

Identifiers


Identifiers are merely names for variables and functions. Programmers must know the names of built-in variables and functions to use them in scripts and must know some rules about identifiers to define their own variables and functions.

Rules for Identifiers

Siebel eScript identifiers follow these rules:

The following identifiers, variables, and functions are valid:

George
Martha7436
annualReport
George_and_Martha_prepared_the_annualReport
$alice
CalculateTotal()
$SubtractLess()
_Divide$All()

The following identifiers, variables, and functions are not valid:

1george
2nancy
this&that
Martha and Nancy
ratsAndCats?
=Total()
(Minus)()
Add Both Figures()

Prohibited Identifiers

The following words have special meaning for the Siebel eScript interpreter and cannot be used as identifiers:

break

case

catch

class

const

continue

debugger

default

delete

do

else

enum

export

extends

false

finally

for

function

if

import

in

new

null

return

super

switch

this

throw

true

try

typeof

while

with

var

void


 Siebel eScript Language Reference 
 Published: 18 April 2003