I have experience building PowerApps against SQL but now have a project using D365 as the data source.
I've built a Canvas PowerApp using the Dynamics 365 connector (which has been very problematic) and I have been advised that I should use the CDS connector instead.
Using the D365 connector the following filter is delegable:
ClearCollect(colServiceLocations,Filter('Service Locations',dsl_serviceprovidertype=860910000))
Using the CDS connector this same Filter (changing the schema name for a Display Name) I get a delegation warning and also an incompatible type warning.
ClearCollect(colServiceLocations,Filter('Service Locations','Service Location Type (Service Locations)' =860910000))
'Service Location Type (Service Locations)' appears to be a complex type (record). I just want to compare the Service Location ID to my know ID value.
Is is possible to make filters such as these (there are many in the App) work and be delegable with CDS connector?
Thanks!
OK, I think I have the syntax for a local option set:
Filter(
'Service Locations',
'Service Location Type' = 'Service Location Type (Service Locations)'.X Y Z'
)
Filter([Entity],[Field] = '[Field] ([Entity])'.OptionName)
Sorry for delayed response - out of the office.
OK, taking a look at this more urgently now as I'm getting banners in the web studio advising me to move to the new CDS connectors for improved performance and reliability (which would be nice as speed and reliability of the D365 connector is a major issue for us).
When I check for the option set name in CDS, it is listed as 'Local option set'.
How do I get the name of the a Local Option Set?
If I try to supply just the numeric value for the option, or the option name I get an 'Incompatible Type' error.
Hi @PaulD1 ,
Could you please share a bit more about the 'Service Location Type' column in your CDS Entity? Is it a Option Set type column or Two Options type column?
1. If the 'Service Location Type' column is a Option Set type column in your CDS Entity, please modify your formula as bellow:
ClearCollect(
colServiceLocations,
Filter(
'Service Locations',
'Service Location Type' = [@'OptionSetName'].Option1 // 'OptionSetName' represents the Option Set the 'Service Location Type' column related to in your CDS Entity
)
)
2. If the 'Service Location Type' column is a Two option type column in your CDS Entity, please modify your formula as bellow:
ClearCollect(
colServiceLocations,
Filter(
'Service Locations',
'Service Location Type' = 'Service Location Type (Service Locations)'.Option1
)
)
More details about the Option Set column in CDS Entity, and how to filter based on Option Set column, please refer to the following blog:
Best regards,
mmbr1606
22
Super User 2025 Season 1
stampcoin
17
ankit_singhal
11
Super User 2025 Season 1