It sounds like you have a filter doing a Run Process with that command. The actual Remedy command is Application-Release-Pending Application-Release-Pending Causes database operations caused by the current workflow to be sent to the database immediately. Note: Use this advanced feature with caution. The command allows workflow to see the results of previous workflow by causing the previous workflow’s actions to be entered into the database.
Since Remedy is case sensitive the application server does not know what the all uppercase command is so it thinks it is a command to be run on the server. Since the server doesn't know what it is you get the error. You can use the following SQL (This is for Oracle. Other DBs should be similar) to find which filter has the command. select f.Name, p.COMMAND from Filter f, Filter_Process p Where p.FILTERID = f.FILTERID and p.COMMAND like '%APPLICATION-RELEASE-PENDING%' Fred __________________________________________ From: Action Request System discussion list(ARSList) [mailto:[EMAIL PROTECTED] On Behalf Of Vijayalakshmi Paulraj Sent: Wednesday, December 03, 2008 11:38 PM To: [email protected] Subject: APPLICATION-RELEASE-PENDING: not found Hi All, Whenever I restart my Remedy server, I am receiving this error as below “APPLICATION-RELEASE-PENDING: not found” Any ideas on how to rectify this? Please pass on. We are running V7.0.01 Patch 8 on SunOS. Thanks & Regards, Vijayalakshmi Paulraj

