| Bookshelf Home | Contents | Index | Search | PDF | ![]() ![]() |
Siebel eScript Language Reference > Siebel eScript Language Overview > Basic Siebel eScript Concepts >
Case Sensitivity
Siebel eScript is case-sensitive. A variable named
testvaris a different variable than one namedTestVar, and both of them can exist in a script at the same time. Thus, the following code fragment defines two separate variables:var testvar = 5
var TestVar = "five"Identifiers in Siebel eScript are case-sensitive. For example, to raise an error from the server, the TheApplication().RaiseErrorText method could be used:
TheApplication().RaiseErrorText("an error has occurred")
If you change the capitalization to
TheApplication().raiseerrortext("an error has occurred")
the Siebel eScript interpreter generates an error message.
Control statements are also case-sensitive. For example, the statement
whileis valid, but the statementWhileis not.
| Bookshelf Home | Contents | Index | Search | PDF | ![]() ![]() |
Siebel eScript Language Reference Published: 18 April 2003 |