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';
This comment has been removed by the author.
ReplyDeleteWell done Ryan!
ReplyDeleteIn fact the AE was stucked and with this delete now it's working fine again
thank you