Hello everyone,
I am trying to read data back from dataverse once it has been updated. Typical scenario:
We add a new value in dynamics365. We add the Item, the cost of the item, quantity and the account to which we assign the item to. After that I want to read all those values and send a short summary via email
My flow approach:
dataverse -> when a record is updated
Initialize variable 1 to 4 as follows:
Item (String)
Cost (Float)
Quantity (Integer)
Account Name (String)
send an email
Item: var1
quantity: var2
cost: var3
account: var4
The first 3 work fine, the last one sends out a long string of random number + digits, something like this:
79e82be4-e60c-ky11-68e4-000d3a490616
As far as I understand it - I am trying to accest data that is in a different table, hence the issue (correct me if I am wrong here) In order to do this I need the account name unique ID from the table. Is there a way to either find out what the rows unique id is, without having access to the table or is there another way of doing it
Thanks.