The CreatorCon Call for Content is officially open! Get started here.

Copy fields from parent Business Rule issue

tindiz
Giga Guru

So I created the below Business Rule so that when I click on the New button under Child Case Related List the following fields will be copied over from parent to child: 

 

tindiz_0-1730214253078.pngtindiz_1-1730214272494.png

It is working as expected.

However, when I try to create a new Case (not a Child Case) and save it those fields that I put on the BR are getting empty.

On the list view, I can see those fields but when I open the record those fields are empty or set to the default one, for ex. Channel is Web but when I saved it I selected Phone -

 

tindiz_2-1730214449200.png

 

1 ACCEPTED SOLUTION

Priyanka Sharm1
Tera Expert

Hi @tindiz ,

 

You can try two things; either or both -

 

1. Use conditions: You have written that you want fields to be copied only for child case.

So, put a condition in the BR that checks whether current case is child. You can use 'parentISNOTEMPTY' or select Parent IS NOT EMPTY in the condition builder, that should help.

 

2. Check Other Business Rules: Look for any other Business Rules that might be set to execute on the Case table that could be affecting the same fields. If they run before yours and clear the fields, that would cause your issue. In that case, change the order of your BR accordingly.

 

Thanks 🙂 If you found my response helpful, please consider selecting "Accept as Solution" and marking it as "Helpful." 

View solution in original post

7 REPLIES 7

tindiz
Giga Guru

Anyone, please help....

Priyanka Sharm1
Tera Expert

Hi @tindiz ,

 

You can try two things; either or both -

 

1. Use conditions: You have written that you want fields to be copied only for child case.

So, put a condition in the BR that checks whether current case is child. You can use 'parentISNOTEMPTY' or select Parent IS NOT EMPTY in the condition builder, that should help.

 

2. Check Other Business Rules: Look for any other Business Rules that might be set to execute on the Case table that could be affecting the same fields. If they run before yours and clear the fields, that would cause your issue. In that case, change the order of your BR accordingly.

 

Thanks 🙂 If you found my response helpful, please consider selecting "Accept as Solution" and marking it as "Helpful." 

That worked for me! Thank you so much!