- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-02-2024 08:43 PM
Hi everyone,
I'm currently facing this issue where there are duplicate records that are being generated in an HR Task under checklist.LIST.
Any idea how to prevent this from happening? It's also affecting the mobile app as it's currently showing duplicate checklist items.
Thank you!
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-02-2024 09:23 PM
@amielalcala You can create an onBefore insert business rule on the checklist table and check if a checklist record already exist for a Document (HR Task sys_id in your case). You can use current.setAbortAction(true); to terminate the new record creation if the record already exist.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-02-2024 09:23 PM
@amielalcala You can create an onBefore insert business rule on the checklist table and check if a checklist record already exist for a Document (HR Task sys_id in your case). You can use current.setAbortAction(true); to terminate the new record creation if the record already exist.