Siebel Object Interfaces Reference > Interfaces Reference > Miscellaneous Methods >

TheApplication Method


TheApplication is a global method that returns the unique object of type Application. This is the root of objects within the Siebel Applications object hierarchy. Use this method to determine the object reference of the application, which is later used to find other objects or to invoke methods on the application object.

Browser Script Syntax

theApplication()

VB Syntax

TheApplication

eScript Syntax

TheApplication()

Argument
Description

Not applicable

 

Returns

Application, an object for use in finding other objects or invoking methods

Usage

For example, when using Siebel eScript to determine whether you are logged in to a server database or local database, use TheApplication().InvokeMethod("GetDataSource").

Used With

Browser Script, Server Script

Example

The following example is in Siebel VB. It retrieves the login name from the application object and creates the Employee business object.

Dim oEmpBusObj as BusObject
Dim sLoginName as String

sLoginName = TheApplication.LoginName
Set oEmpBusObj = TheApplication.GetBusObject("Employee")

...

Set oEmpBusObj = Nothing

Siebel Object Interfaces Reference Copyright © 2008, Oracle. All rights reserved.