You need to sign in to do that
Don't have an account?

The flow failed to access the value for myVariable_current.Account.PersonEmail because it hasn't been set or assigned.
I have a Process builder that Adds the Email of the Account that is related to the opportunity in the Oppotunity object. I have made Account Phone field on Opportunity for that.
-
I am Getting Errors as -
The flow failed to access the value for myVariable_current.Account.PersonEmail because it hasn't been set or assigned.
In the PB always check null otherwise surely you will get the error like this.
Add the one more criteria in the Define Criteria 1st screenshot:
AND(NOT(ISBLANK([Opportunity].Account.PersonEmail)),NOT(ISNULL([Opportunity].AccountId)))
OR try the below thing:
[Opportunity].Account.PersonEmail is null Boolean FALSE
[Opportunity].Account is null Boolean FALSE
Can you please Let me know if it helps or not!!!
If it helps don't forget to mark this as a best answer!!!
Thanks,
Raj
All Answers
Criteria Will Opportunity.AccountId is not null
In the PB always check null otherwise surely you will get the error like this.
Add the one more criteria in the Define Criteria 1st screenshot:
AND(NOT(ISBLANK([Opportunity].Account.PersonEmail)),NOT(ISNULL([Opportunity].AccountId)))
OR try the below thing:
[Opportunity].Account.PersonEmail is null Boolean FALSE
[Opportunity].Account is null Boolean FALSE
Can you please Let me know if it helps or not!!!
If it helps don't forget to mark this as a best answer!!!
Thanks,
Raj
Hey @maharajan
Are you sure that the second rule should be
[Opportunity].Account is null Boolean FALSE
not
[Opportunity].AccountID is null Boolean FALSE
[Opportunity].AccountID is null Boolean FALSE
Can you please Let me know if it helps or not!!!
If it helps don't forget to mark this as a best answer!!!
Thanks,
Raj