EDIT: Found the error was the row limit. I had more contacts than the 500 / 2000 max limit. It pulls all the data in, then filters. Is there any way to push the query to limit the incoming data in dynamics?
Hi all,
New to dynamics.
Requirements:
I only need to go 1 level deep, i.e. accounts linked directly to the selected account
I have this code that lists all accountid that I'm interested in
ClearCollect(
ListConnections,
{_record1id_value: GUID(SelectedID)}
);
Collect(
ListConnections,
Filter(
Connections_1,
_record2id_value = GUID(SelectedID)
)._record1id_value
)
that returns a collection of all accounts and immediate related accounts.
I'm trying to return contacts.
Filter( Contacts_1, GUID(_parentcustomerid_value) in ListConnections._record1id_value )
Somthing like this, but it never returns anything. I can see the _parentcustomerid_value and _record1id_value match, but it will not join correctly.
Thank you!
Have you tried using CDS views? This delegates the query to the server.
Hi @SteveCampbell ,
I found that you have posted similar issue within this forum already, please check my response within the following thread:
https://powerusers.microsoft.com/t5/Creating-Apps/Filter-contacts-from-Dynamics-365/td-p/365468
Based on the formula you provided, I think there is something wrong with it. Actually, the 'Company Name' (parentcustomerid) column is a Polymorphic lookup field in CDS Entity, which could references records from Accounts Entity or Contacts Entity, please check the following article for more details:
In addition, the 'in' operator is not delegable within Common Data Service connector within PowerApps. If you use 'in' operator in your formula, you would face a Delegation warning issue.
Please check the following article for more details:
If you faced a Delegation warning issue with your formula, you could not delegate the data process to your data source, instead, you could only process your data locally. In default, you could only process 500 records locally at most. You could change the "Data row limit for Non-delegable queries" option to maximum value -- 2000 within Advanced settings of App settings of your app, then you could process 2000 records locally at most.
Best regards,
User | Count |
---|---|
137 | |
136 | |
78 | |
73 | |
69 |
User | Count |
---|---|
222 | |
137 | |
78 | |
60 | |
56 |