Reputation: 1047
I created a microflow, which should retrieve an account of the user from the database, comparing his name with the name in the “Requester” parameter.
[Name = $Tasks.Requester]
The problem is, that I’m getting XPath error, and when I’m typing $Tasks. all available parameters belong to the Account entity, instead of the Tasks entity.
Upvotes: 0
Views: 1049
Reputation: 41
You must use slash (/) when constructing your XPath. So this should work in your case:
[Name = $Tasks/Requester]
Upvotes: 2