Reset/Clear BSFN Error Message from a jdeSetGBRError

ErpRob

Well Known Member
I'm trying to clear a specific error message in a custom application after a business function call.

So some reason the old. ->System Function "Delete Message" is no longer working and now I'm looking at forcing the clear with a BSFN.

Assuming the error was setup with a jdeSetGBRError. How can I specifically delete a message from the bottom of an online Application (APPL) with BSFN C Coding?

Thanks
Rob

*****



memset((void *)(&dsDE0022), (int)(_J('\0')), sizeof(dsDE0022));
jdeStrncpy(dsDE0022.szDescription, (const JCHAR *)(_J("QuantumCacheTaxParm")),
DIM(dsDE0022.szDescription));
if(lpDS->cWarningErrorFlag != _J('1'))
{
jdeSetGBRErrorSubText(lpBhvrCom, lpVoid, (ID)0, _J("078N"), &dsDE0022);
}
idReturnCode = ER_ERROR;
} /* cache fetch failed */
 
I am actually getting the same problem. I can't clear the error after having set it using the jdeSetGBRError. Can anyone help please?
 
Hi,

I'm replying to this topic, as I'm getting the same problem... did you find something?

I know you posted this topic back in june but maybe you've found something about claring those kind of errors.

Thanks
 
Here is the custom BSFN I wrote to clear this message in order to move forward on the main project I was working on.

Sorry its late. But I forgot I posted this original message.

Here is the .H File

Rob
 

Attachments

  • 117950-B5542230.h.txt
    2.5 KB · Views: 400
Here is the .c File

Rob
 

Attachments

  • 117951-B5542230.c.txt
    4 KB · Views: 422
Back
Top