Description
The number of items exceeding the threshold level.
Applies To
Foundation
Solution/Immediate Workaround
To decrease the number of items, check with the customer whether the archiving is working or not. Customers need to do an archive to free up the space in the list.
If the archiving is not working, please check whether the below value is applied or not. If not applied follow the below-mentioned steps:
ii) Add value for "WorkflowProcessAutoCopyEnable" key with value set to true.
iii) After some time, use the below queries to check whether the processes are started archiving or not.
where (ArchivalStatus = 1 and Inactive = 0)
select TOP 100 p.* from WFPROCESS p inner join WFPROCDEF d on p.defid = d.id
where (ArchivalStatus = 1 and Inactive = 0) ORDER BY p.CompletionDate ASC