Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Problem

When users attempt to move a document to a different archive or to an inbox, they get the message “Documents pending PDF conversion or workflow action are not available for this operation”:

Solution

In SQL, there will be a large number of records in the PdfPending table under the customer’s GlobalSearch database:


 

To determine if these documents are actually waiting to be processed or not, check the message queue for ss_fulltext in computer or server management. If you see messages queued in Message Queuing\Private Queues\ss_fulltext\Queue messages, make sure the ssContentSearch service is running before proceeding:

 

If no queued messages are found and if the ssContentSearch service is running, proceed to the next step.

To resolve the issue, first make a backup of the customer’s SQL database in SQL Server Management Studio.

Note: always perform a FULL backup.

 

After the backup has been created, run the following command – be sure that the customer’s GlobalSearch database is selected:

USE SmartSearch;
truncate table [YOURDATABASENAME].[dbo].[PdfPending];


Once this has been completed, check to see if any documents remain in the PdfPending table (there should be none) and make sure documents can be moved without encountering the document action pending message.



  • No labels