Siebel Object Interfaces Reference > Siebel eScript Quick Reference >

Business Service Methods for eScript


Table 91 lists a summary of the business service methods' syntax.

Table 91. Business Service Methods Syntax Summary
Method
Description
Syntax

GetFirstProperty Method

Retrieves the name of the first property of a business service.

var oService;
var sName;
sName = oService.GetFirstProperty();

GetNextProperty Method

After the name of the first property has been retrieved, retrieves the name of the next property of a business service.

var oService;
var sName;
sName = oService.GetNextProperty();

GetProperty Method

Retrieves the value stored in the specified property.

var oService;
var sValue;
sValue = oService.GetProperty(propName);

Name Method

Returns the name of the business service.

var oService;
var sName;
sName = oService.Name();

InvokeMethod Method

Calls a specialized method or a user-created method on the business service.

var oService;
oService.InvokeMethod(methodName, InputArguments, OutputArguments);

PropertyExists Method

Returns a Boolean value indicating whether the property specified in the argument exists.

var oService;
var propExists;
propExists = oService.PropertyExists( propName);

RemoveProperty Method

Removes a property from a business service.

var oService;
oService.RemoveProperty(propName);

SetProperty Method

Assigns a value to a property of a business service

var oService;
oService.SetProperty(propName, propValue);

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