Creates a business object with a specified verb.
Syntax
IBusinessObject IcreateBusinessObjectWithVerb(string busObjName, string verb);
Parameters
Return Values
An IBusinessObject object that holds the new business object with the specified verb value.
Exceptions
Notes
The Server Access Interface creates a business object of type busObjName and initializes it with the verb verb. It then sends this business object back to the access client. Only verbs supported in the business object definition are valid.
Example
// Create the business object IBusinessObject exampleobj = null exampleObj = accessSession.IcreateBusinessObjectWithVerb("AcctsRecCurrent", "Retrieve");