Siebel Object Interfaces Reference > Interfaces Reference > Business Component Methods >

ActivateMultipleFields


Use ActivateMultipleFields to retrieve data for the fields specified in the property set.

Syntax

Boolean ActivateMultipleFields(SiebelPropertySet sps)

Argument
Description
SiebelPropertySet
Property set containing a collection of properties representing the fields that are to be activated

Returns

TRUE if success; FALSE if failure

Used With

Server Script, Mobile/Dedicated Web Client Automation Server, COM Data Control, COM Data Server, Java Data Bean, CORBA Object Manager

Example

Here is an example for Java Data Bean:

import com.siebel.data.*;
...
//Create Siebel Data Bean.
//login into Siebel Data Bean
...
//Create Siebel Bus Object.
//Get the Bus Object from SiebelDataBean
...
//Create Siebel Bus Comp siebBusComp
//Get the business component using SiebelBusObject

SiebelPropertySet ps = new SiebelPropertySet();
ps.setProperty("Account Products","");
ps.setProperty("Agreement Name","");
ps.setProperty("Project Name","");
ps.setProperty("Description","");
ps.setProperty("Name","");
siebBusComp.activateMultipleFields(ps);
...

See Also

SetMultipleFieldValues
GetMultipleFieldValues


 Siebel Object Interfaces Reference 
 Published: 18 June 2003