Siebel Object Interfaces Reference > COM Data Server Quick Reference >

Business Service Methods for COM Data Server


Table 29 lists a summary of the Business Service methods' syntax.

Table 29. Business Service Methods Syntax Summary
Method
Description
Syntax

GetFirstProperty Method

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

Dim oService as SiebelService
Dim sName as String
sName = oService.GetFirstProperty(ErrCode as Integer)

GetNextProperty Method

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

Dim oService as SiebelService
Dim sName as String
sName = oService.GetNextProperty(ErrCode as Integer)

GetProperty Method

Retrieves the value stored in the specified property.

Dim oService as SiebelService
Dim sValue as String
sValue = oService.GetProperty(propName as String, ErrCode as Integer)

Name Method

Returns the name of the business service.

Dim oService as SiebelService
Dim sName as String
sName = oService.Name

InvokeMethod Method

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

Dim oService as SiebelService
oService.InvokeMethod(methodName as String, InputArguments as SiebelPropertySet, OutputArguments as SiebelPropertySet, ErrCode as Integer)

PropertyExists Method

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

Dim oService as SiebelService
Dim propExists as Boolean
propExists = oService.PropertyExists( propName as String)

RemoveProperty Method

Removes a property from a business service.

Dim oService as SiebelService
oService.RemoveProperty(propName as String, ErrCode as Integer)

SetProperty Method

Assigns a value to a property of a business service.

Dim oService as SiebelService
oService.SetProperty(propName as String, propValue as String, ErrCode as Integer)

Siebel Object Interfaces Reference