Siebel eScript Language Reference > Siebel eScript Commands >

Business Object Objects


A Siebel business object groups one or more business components into a logical unit of information. Business objects are highly customizable, object-oriented building blocks of Siebel applications. Business objects define the relationships between different business component objects (BusComps) and contain semantic information about, for example, sales, marketing, and service-related entities. Methods of business object objects are documented in the Siebel Object Interfaces Reference.

Method
Description

GetBusComp() Method

The GetBusComp() method returns the specified business component.

Name() Method

The Name() method retrieves the name of the business object.

Do not store Siebel objects such as business objects and business components as properties of custom objects, such as shown in the following example:

var oParms = new Object;
oParms.bo = TheApplication().GetBusObject("List Of Values");

Siebel eScript Language Reference