function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
aparna d 1aparna d 1 

Update child records from parent using process builder

Hi,

I am stuck in process builder . Can anyone help me .opportunity contain 4 stage picklist fields , and Release checkox fileld in case. 
stage1 = A,B,C,D,E 
stage2 =A,B,C,D,E 
stage3 =A,B,C,D,E 
stage4 =A,B,C,D,E  
 Requirement is   1) any one of picklist field is changed to A/B/C  then Release checkbox field should be checked 
                             2) any one of field is not equals to A/B/C changed to something else  then Release checkbox should be unchecked

​​​​​​​
 
NagendraNagendra (Salesforce Developers) 
Hi Aparna,

Sorry for this issue you are facing.

May I suggest you please refer to below help article which helps you to start off. Hope this helps.

Kindly mark this as solved if the reply was helpful.

Thanks,
Nagendra
Khan AnasKhan Anas (Salesforce Developers) 
Hi Aparna,

Greetings to you!

Please refer to the below links which might help you further with the above requirement.

https://force-base.com/2016/10/02/process-builder-update-child-records-based-on-changes-in-the-parent-record/

https://help.salesforce.com/articleView?id=000213419&type=1

I hope it helps you.

Kindly let me know if it helps you and close your query by marking it as solved so that it can help others in the future. It will help to keep this community clean.

Thanks and Regards,
Khan Anas
aparna d 1aparna d 1
Thanks for replating actualy i am stuck in formula. i have created process builder but not getting expected output.
AND(  [Opportunity].RecordType.DeveloperName == "RecordType" , 
      OR( 
	     (AND( (ISPICKVAL( [Opportunity].stage__c , "A" )) , (ISPICKVAL( [Opportunity].stage__c , " B" )) ,
               (ISPICKVAL( [Opportunity].stage__c , " c" )) , ISCHANGED([Opportunity].stage__c  ))),	  
      	 (AND( (ISPICKVAL( [Opportunity].stage1__c , "A" )) , (ISPICKVAL( [Opportunity].stage1__c , " B" )) ,
               (ISPICKVAL( [Opportunity].stage1__c , " C" )) , ISCHANGED([Opportunity].stage1__c  ))),	 
         (AND( (ISPICKVAL( [Opportunity].stage2__c , "A" )) , (ISPICKVAL( [Opportunity].stage2__c , " B" )) ,
               (ISPICKVAL( [Opportunity].stage2__c , " C" )) , ISCHANGED([Opportunity].stage2__c  ))),	    
         (AND( (ISPICKVAL( [Opportunity].stage3__c , "A" )) , (ISPICKVAL( [Opportunity].stage3__c , " B" )) ,
            (ISPICKVAL( [Opportunity].stage3__c , " C" )) ,  ISCHANGED([Opportunity].stage3__c  ))),
		 )
    )
can you please tell me where did i mistake