Hi there,
i want to do an initial load of e.g. all Companies from Dataverse into a SharePoint list with a manual trigger flow.
I only get the AccountID field in the dynamic content.
How can i retreive the GUID of each record? Is there an expression availabe?
Thx and regards
Martin
Solved! Go to Solution.
You should be able to find property called account or use expression items('apply_to_each')?[accountid']
Hi Mira, Not sure what you mean with fetchxml. Can you share some details please? I‘m using the standard Dataverse connector with „List rows“.
Thx Martin
What I mean is that you are not using Fetchxml Query to limit the returned rows and I guess you aren't using it, to get the columns you want you need to use Select Columns and add a comma and add comma separated list of the fields you want to get values from.
@Mira_Ghaly thx! From my initial question: can you share an example on how to also get the GUID value for each row?
@Mira_Ghaly yes, i'm using an apply to each loop. But additionally to the accountnumber, which i can get via the dynamic content, i want to have the GUID (e.g. 3b292359-a5ae-e911-a975-000d3a38c9b5). That's what i'm looking for.
It may be late, but my helps for someone who is having this issue.
When we are looping through with data verse items example list row. inside the loop, you can find the a column with same as table / entity name along with other columns. You should notice just below to the column as this is unique identifier ....... So this is the row id or GUID of the current item. I learn this with some effort. hope this helps.
This worked for me.
in my tabel NetElement calling NetElement.NetElement gives me the GUID (uniquer id number )for this record.
Thanks, saved my day