Important Update: Archer Community Scheduled Maintenance on November 23–24 - New Community Launching Soon! Learn More..
000029797
After attempting to delete Application Content using the Delete Content button, the process never completes and appears hung.
The Status displays a message and no longer updates "Processing .. Step X of Y."
The DeleteModuleContentWorkflow job had an issue and failed to complete properly.
Delete Pending Job
Note: Before running the DELETE SQL commands against the Instance database, it's strongly recommended performing a SQL backup of the Instance database.
SELECT TOP 5 mj.module_id, js.job_id, js.job_status_id, jsd.job_status_name, js.update_date
FROM tblJobStatus js
JOIN tblModuleJobStatus mj ON mj.job_id = js.job_id
JOIN tblJobStatusDef jsd ON jsd.job_status_id = js.job_status_id
WHERE js.job_type_id = 7
AND js.job_status_id <> 3
AND mj.module_id = ###
ORDER BY js.update_date DESC
3. In the results that are returned, take note of the job_id for a job that failed to complete. In the following sample results, the job_id in this example is 5.
4. Run the following SQL statement to delete a row from tblModuleJobStatus...replace ### with the job_id in step 3:
DELETE tblModuleJobStatus WHERE job_id = ###
5. Run the following SQL statement to delete the row from tblJobStatus...replace ### with the job_id in step 3:
DELETE tblJobStatus WHERE job_id = ###
6. Reopen the Application to confirm the Delete Content button is enabled.