- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-02-2024 08:41 AM
Hi All,
I have a child and a parent table. A workflow script is supposed to create a record on the child table but it does create the record on the parent table as well. I tried writing a before-business rule on the parent table to prevent the record creation on the parent table but it is also blocking the record creation in the child table. Script below:
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-02-2024 08:45 AM
@Darshan8 You can't prevent this from happening this is an OOTB behaviour and a parent table will always have record from the child tables. If you try to prevent this by a business rule the record would not get created on the child table at all.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-02-2024 08:45 AM
@Darshan8 You can't prevent this from happening this is an OOTB behaviour and a parent table will always have record from the child tables. If you try to prevent this by a business rule the record would not get created on the child table at all.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-02-2024 12:06 PM
Thank you Sandeep!