Hello here!
I am new to Common Data Service and coming from - as many - an SQL-based background, this matter can be quite hard to understand at times.
In the current datamodel I got several entities, please refer to the attached image.
The design declares that on the screen for "this tasks used articles" we show a list of Categories under under which the used articles are shown. Normally I would use some INNER JOIN magic, but this doesn't seem to be possible within CDS, or am I missing something?
Edit:
I'm using Canvas as primary UI
End Edit
Kind regards,
Gerben.
Solved! Go to Solution.
OK, it sounds like you are stuck trying to figure out how to hop from your list of Tasks all the way across Article Usage, Articles, and to Categories, but not sure how to retrieve the records at a 1:N or N:N relation as opposed to an N:1. Is that about right?
So, strictly speaking you could do this in PowerApps because 1:N and N:N relationships are accessible as objects on an entity, just like attributes, so getting all Articles Usages for a Task should be as simple as Task.'Article Usages' and getting all Categories for an Article should be as simple as Article.Categories. BUT, in order build a string out of all that, you will need to do some serious concatenate-loop-concatenate-loop gymnastics, and I, personally, hate that kind of stuff.
So, let's use a better query tool than jumping one record at a time. PowerAutomate gives you way more useful record querying, looping, and concatenation abilities with a visual map that makes it really intuitive, so that's where I'd recommend you do it. You can tie a PowerAutomate flow to just about anything in canvas apps, including a Gallery datasource, and you can even run a custom fetchxml query from inside a powerautomate flow so you could just code your way right past this problem in a syntax that--while very different from SQL--should still be pretty easy for you to pick up if you don't already know it.
This blog (not mine; I just found it with a quick internet search so don't blame me if it isn't 100% accurate) covers the plumbing for how to call a PowerAutomate Flow from your Canvas app and return a response object. It is focused on a button scenario, but the same concepts would apply for returning something to use as a data source for your gallery. Give it a try and see if this makes it easier for you to get the query results you want.
If you're trying to create a view in a model-driven App, then the UI allows you to display fields from the entity on which the view is defined, and fields from any entity with which it has an N:1 relationship, but that's as far as it goes. However, views can use filter criteria based on multiple levels of relationship (and N:N relationships).
If you need to display data from more levels of relationships, you can create additional derived fields using calculated fields, rollup fields, or workflows to set derived fields. None of these feel ideal from a data modelling perspective, but it is sometimes necessary
@GerbenB, a few clarifying questions
Hello @GarethPrisk,
Table(Gallery1.Selected, {aa123_name: "General"})
So Gallery2 is filled with the selected category AND the general category.
I am playing around with possibilities and I am currently using the following snippet to filter the article per category (The filter is not complete since it does not test whether the article is related to "this task"
Filter([@Articles], ThisItem.Category in Categories)
However, due to the fact that I cannot use Categories (name of the relation between Article and Category I am unable to check for any existing relations. The error that I receive is "the specified column is not accessible in this context"
I also kn that using "in" is bad-practise but I needed to test it.
OK, it sounds like you are stuck trying to figure out how to hop from your list of Tasks all the way across Article Usage, Articles, and to Categories, but not sure how to retrieve the records at a 1:N or N:N relation as opposed to an N:1. Is that about right?
So, strictly speaking you could do this in PowerApps because 1:N and N:N relationships are accessible as objects on an entity, just like attributes, so getting all Articles Usages for a Task should be as simple as Task.'Article Usages' and getting all Categories for an Article should be as simple as Article.Categories. BUT, in order build a string out of all that, you will need to do some serious concatenate-loop-concatenate-loop gymnastics, and I, personally, hate that kind of stuff.
So, let's use a better query tool than jumping one record at a time. PowerAutomate gives you way more useful record querying, looping, and concatenation abilities with a visual map that makes it really intuitive, so that's where I'd recommend you do it. You can tie a PowerAutomate flow to just about anything in canvas apps, including a Gallery datasource, and you can even run a custom fetchxml query from inside a powerautomate flow so you could just code your way right past this problem in a syntax that--while very different from SQL--should still be pretty easy for you to pick up if you don't already know it.
This blog (not mine; I just found it with a quick internet search so don't blame me if it isn't 100% accurate) covers the plumbing for how to call a PowerAutomate Flow from your Canvas app and return a response object. It is focused on a button scenario, but the same concepts would apply for returning something to use as a data source for your gallery. Give it a try and see if this makes it easier for you to get the query results you want.
We're going to test it out with Power Automate. Thanks for the tip.
User | Count |
---|---|
25 | |
21 | |
6 | |
6 | |
5 |
User | Count |
---|---|
28 | |
25 | |
10 | |
8 | |
6 |