Checklist Templates on Task Forms
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-27-2023 09:48 AM
Is there an easy way to display a specific checklist template on a task form whenever it is opened by an end user?
Would a Business Rule work? Or, should I write a custom script?
Thanks,
Ken
2 REPLIES 2
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-27-2023 11:34 AM
If you are using workspaces to fulfill tasks, consider using playbooks instead.
Otherwise, you can create a business rule to attach a specific checklist to a task.
Example script:
new ChecklistUtil().createChecklistFromTemplate(checklist_sys_id, task_table_name, task_sys_id)
You can get the checklist_sys_id from the checklist_template table.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2023 03:54 PM
Thanks Mike.