jdeErrorGetCountEx()

Krishna M

Member
Hello,
I am looking for some documentation for this API - jdeErrorGetCountEx(). I searched through all available published API documentation but could not find anything. I appreciate any information regarding this or any related Error API's. Thanks.
 
Hi,

That API can be used to get the warning and error count of a business function. For example:

int iErrorCount = 0;
int iWarningCount = 0;

ID idReturnCode = jdeCallObject(...);
jdeErrorGetCountEx(lpBhvrCom, &iErrorCount, &iWarningCount, lpVoidInfo);
 
Back
Top