Reputation: 200
We have about 200 projects that have been uploaded with the incorrect project code into Acumatica ERP. Is it possible to bulk delete all the projects at once, rather than deleting one by one? The problem with deleting projects is that it's time consuming since you have to first change the status of each task to "cancelled" or "planned" before deleting the project record.
Thanks
Upvotes: 0
Views: 1218
Reputation: 1712
You can create a Generic Inquiry with option 'Enable Mass Record Deletion'.
Upvotes: 2
Reputation: 1864
EDIT: Misunderstood as customization project
Un-Publish all projects first
Below tables should do the trick. Please try on a test DB first.
Delete from CustObject
Delete from CustProject
Delete from CustomizationDesign
Delete from CustomizationPublished
Upvotes: -1
Reputation: 3783
A good way to do bulk operations in Acumatica is by using integration services. The typical use case people have in mind with import scenarios is importing records, but you can use it to update existing records, and delete them.
For your particular request, I'm not 100% sure you can do both operations from the same scenario so I would suggest the following:
Upvotes: 1