Creates a business object from a specified business object definition.
Syntax
IBusinessObject IcreateBusinessObject(string busObjName);
Parameters
Return Values
An IBusinessObject object to hold the new business object.
Exceptions
Notes
The Server Access Interface creates a business object of type busObjName and sends it back to the access client.
Example
The following code fragment creates a business object:
// This method creates a business object // Declare our object IBusinessObject exampleObj = null; exampleObj = aSession.IcreateBusinessObject("PayablesNetChange");