Issue
Is there a way to prevent users from creati","articleBody":"
How to prevent users from creating a task board for a particular table?
Issue
Is there a way to prevent users from creating a task board for a particular table?
Cause
Use Case:
- Deny creation of e.g. Requested Items
- Deny creation of Projects
- Deny creation of e.g Release Task
Resolution
There is no supported way to do this. The customer will have to make some customizations.
An example of something the customer can try:
If you want to do the exclusion list some task extended tables but not all, you could make a system property with a comma-separated list of tables you don't want in VTBs, and then a BR that checks if the sys_class_name is in that sys_property. You would use a before-insert business rule to the vtb_board table, specify the condition to prevent the targeted users from creating the board, and use current.setAbortAction(true).You would also need to check if it's a freeform or not and you would need to check the lane field to see if the 'Lane field' IS '__KANBAN__', the board is a 'Flexible' board'
This would be customization and not supported by us but you can try this and see if it works.