You need to sign in to do that
Don't have an account?
Automating Processes with the Lightning Process Builder Challenge
So I completley new to salesforce developer and find this challenge not very freindly to begginers. Here is what I did:
- selected account object
- When conditions are met, set conditions of city, state, country, zip, street / is changed / boolean / true
- any of the conditions are met / or
- update records
- [Account].Parent Account ID.ChildAccounts
- No criteria—just update the records
- Shipping City Reference [Account].Parent.ShippingCity
Shipping Country Reference [Account].Parent.ShippingCountry
Shipping Zip/Postal Code Reference [Account].Parent.ShippingPostalCode
Shipping State/Province Reference [Account].Parent.ShippingState
Shipping Street Reference [Account].Parent.ShippingStreet
Removing the link to the Parent should do the trick. You are currently referencing Parent Accounts to update Child Accounts.
The Challenge asks you to update the Contacts address details if the Account details change.
You should:
select Account object
When conditions are met, set conditions of city, state, country, zip, street / is changed / boolean / true
any of the conditions are met / or
update records
[Account].Contacts
No criteria—just update the records
Mailing City Reference [Account].ShippingCity
Mailing Country Reference [Account].ShippingCountry
Mailing Zip/Postal Code Reference [Account].ShippingPostalCode
Mailing State/Province Reference [Account].ShippingState
Mailing Street Reference [Account].ShippingStreet
If this resolves the issue for you, please Mark this as Best Answer and mark the query as Resolved