Thursday, January 20, 2011

Application Engine error

If you see this error when running an Application Engine:

Warning: Application Engine Request is not active -- processing suspended

You need to run this in the database to clear it up:

--- Here xxxxx is the OPRID
SELECT * FROM PS_AEREQUESTTBL WHERE OPRID = 'xxxxx';

--- From the result above, determine which one to remove, and the run the
--- following to remove the entry. (Be sure to add more criteria if needed)
DELETE FROM PS_AEREQUESTTBL WHERE OPRID = 'xxxxx';

2 comments:

  1. This comment has been removed by the author.

    ReplyDelete
  2. Well done Ryan!
    In fact the AE was stucked and with this delete now it's working fine again
    thank you

    ReplyDelete