Performs the action for the active verb of a business object. This method is the primary public interface for the business object handler.
public int doVerbFor(BusinessObjectInterface theBusObj,
ReturnStatusDescriptor rtnObj);
An integer that indicates the outcome status of the verb operation:
When a business object arrives from the integration broker, the connector framework creates a status descriptor object and sends it as an argument in its call to the doVerbFor() method, which performs the action of the business object's active verb.
The doVerbFor() method should take the following steps:
See also the description of the BusinessObjectInterface class.