Language Method for an Application
The Language method returns the language code of the language that the active Siebel application is running. For example, ENU.
Format
Application.InvokeMethod("Language");
No arguments are available.
Used With
To use this method, you can use an Application.InvokeMethod call with Server Script.
Examples
The following example uses Siebel VB:
Dim curLang As String
curLang = TheApplication.InvokeMethod("Language")
The following example uses Siebel eScript:
var curLang;
curLang = TheApplication().InvokeMethod("Language");