Business Object Methods for the Mobile Web Client Automation Server

The following table describes a summary of business object methods you can use with the Mobile Web Client Automation Server.

Method Description Format

GetBusComp Method for a Business Object

Returns the name of a business component.

Dim busObject as SiebelBusObject

Dim busComp as SiebelBusComp

set busComp = busObject.GetBusComp(BusCompName as String)

GetLastErrCode Method for a Business Object

Returns the error code for the error that Siebel CRM logged most recently.

Dim busobject as SiebelBusObject

Dim iErr as Integer

iErr = busobject.GetLastErrCode

GetLastErrText Method for a Business Object

Returns the text message for the error that Siebel CRM logged most recently.

Dim busobject as SiebelBusObject

Dim sValue as String

sValue= busobject.GetLastErrText

Name Method for a Business Object

Returns the name of the business object.

Dim busObject as SiebelBusObject

Dim sName as String

sName = busObject.Name