Moving Documents into Matters that are Nested under Tasks

Moving Documents into Matters that are Nested under Tasks



  1.  --The following script moves documents that are nested under Tasks to be nested under Matters instead.
  2. UPDATE
  3. __M_Documents_Digital_Files
  4. SET 
  5. Final_Folder_RelativePath = '\Task Attachments\',
  6. Final_Parent_Type = Relationships.Final_RelatedTo_Type,
  7. Final_Parent_Id = Relationships.Final_RelatedTo_Id
  8. FROM
  9. __M_Documents_Digital_Files Documents,
  10. __M_Tasks Parents,
  11. __M_Tasks_Related_Entities Relationships
  12. WHERE 1=1
  13. AND Documents.Final_Parent_Type = '__M_Tasks'
  14. AND Documents.Final_Parent_Id = Parents.Id
  15. AND Parents.Id = Relationships.Final_TaskEntry_Id
  16. AND Relationships.Final_RelatedTo_Type = '__M_Matters'