Siebel Object Interfaces Reference > Siebel eScript Quick Reference >

Applet Methods for eScript


Table 84 lists a summary of the applet methods' syntax.

Table 84. Applet Methods Syntax Summary
Method
Description
Syntax

BusComp Method

Returns the business component that is associated with the applet.

var applet;
var myBusComp;
myBusComp = applet.BusComp();

BusObject Method

Returns the business object for the business component for the applet.

var applet;
var busObject;
busObject = applet.BusObject();

InvokeMethod Method

Calls an argument-specified specialized method.

var applet;
applet.InvokeMethod(methodName, methodArg1, methodArg2, ..., methodArgn);

Name Method

Returns the name of the applet.

var applet;
var sApplet;
sApplet = applet.Name();

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