Release Method for a Business Object
The Release method for a business object releases a business object and the resources for this business object on the Siebel Server. This method does not return any information.
Format
oBusObj.release()
No arguments are available.
Used With
Siebel Java Data Bean
Examples
The following example is for Siebel Java Data Bean:
import com.siebel.data.*;
{
...
// create Siebel Java Data Bean
SiebelDataBean Sieb_dataBean = null;
Sieb_dataBean = new SiebelDataBean();
// log in to Siebel Java Data Bean
...
// Create Siebel Bus Object.
// get the Bus Object from SiebelDataBean
SiebelBusObject busObj = null;
busObj = Sieb_dataBean.getBusObject("Account");
...
// Use the business Object
// Release the business object resources
...
busObj.release();
}