Error: Overflow in internal run stack

Hi All,

When i am trying to post the statement i am getting the below mentioned error, kindly suggest.

Path->retailheadwaurters->journals->openstatements->functions->post statement

Image uploaded in the following path http://www.picfront.org/d/96gx

http://www.picfront.org/d/96gx

Kindly assist me…

You have an infinite loop of calls there - run() (line 49) calls post() and post() (line 51) calls run(), which calls post(), which calls run()… unless the stack is full.

I don’t know the code, but the call from post() to run() is particularly suspicious.

Thanks martin for your valuable information…