Applet Methods for Siebel eScript

The following table describes a summary of the applet methods you can use with Siebel eScript.

Method Description Format

BusComp Method for an Applet

Returns the name of the business component that an applet references.

var applet;

var myBusComp;

myBusComp = applet.BusComp();

BusObject Method for an Applet

Returns the name of the business object for the business component that an applet references.

var applet;

var busObject;

busObject = applet.BusObject();

InvokeMethod Method for an Applet

Calls a specialized method.

var applet;

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

Name Method for an Applet

Returns the name of an applet.

var applet;

var sApplet;

sApplet = applet.Name();