Returns business object information in a format for logging and tracing.
Syntax
char * dump(char * buf, int bufSize);
Parameters
Return values
An integer that indicates the outcome of the operation.
Notes
If the saved business object does not fit in the buffer, the dump() method returns the error code -1.
Examples
BusinessObject *pObj; int status; . . . status = pObj->dump(buf, 255);
See also