Hello All,
I am attempting to build a flow that is triggered via a selected record from a model-driven app.
I am using 'get a row by ID' against the 'selected record' to look up a record in the dataverse. This works fine.
What I am trying to do from there is get some of the fields from WITHIN one of the lookup fields of that record. I would be happy to set it as a variable at this point. I just dont know how to reference it. I did it by accident once and now I cant for the life of me figure it out. Just my luck!
For an example to hopefully make more sense:
I have an Accounts Record that I have retrieved with 'Get Row by ID'. This Accounts Record has a User field in it that is a lookup.
How would I go about referencing say the Qualifications Field of the User object within that lookup?
Thank you in advance!
Solved! Go to Solution.
HI @Sheikx800,
Following your example, you can simply get the User fields/columns with another Get a row by ID action on the User record, for "Row ID" pass the user ID from the Account object via the intellisense. This might give you more flexibility to retrieve additional columns from the user if need be.
If you're keen to user the expand instead, the lookup column name is case sensitive. E.g.
https://org.api.crm6.dynamics.com/api/data/v9.2/cre7b_cars(5e7fb565-b090-ea11-a811-000d3a795cf5)?$ex...cre7b_ParentModel($select=cre7b_name)
More info on this: https://docs.microsoft.com/powerapps/developer/data-platform/webapi/query-data-web-api#retrieve-data...
Hope this helps!
Hi @Sheikx800,
You would use the Expand Query to get attributes from your user lookup. Make sure you are using the Name and not the Display name of the columns. You can retrieve this via the maker portal (make.powerapps.com) > Data > Tables > "table name" > Columns > Name
e.g. in your example, your expand query may look something like:
solutionprefix_user(solutionprefix_qualifications)
---
Please click Accept as Solution if my post answered your question. This will help others find solutions to similar questions. If you like my post and/or find it helpful, please consider giving it a Thumbs Up.
HI @Sheikx800,
Following your example, you can simply get the User fields/columns with another Get a row by ID action on the User record, for "Row ID" pass the user ID from the Account object via the intellisense. This might give you more flexibility to retrieve additional columns from the user if need be.
If you're keen to user the expand instead, the lookup column name is case sensitive. E.g.
https://org.api.crm6.dynamics.com/api/data/v9.2/cre7b_cars(5e7fb565-b090-ea11-a811-000d3a795cf5)?$ex...cre7b_ParentModel($select=cre7b_name)
More info on this: https://docs.microsoft.com/powerapps/developer/data-platform/webapi/query-data-web-api#retrieve-data...
Hope this helps!
Thanks very much Chris for you very quick reply - You steered me down the right path and I have been trying to read up on Expand Query. I am struggling to find write-ups about the syntax for writing expand query and my knowledge is lacking in this area. There are lots of recommendations of a 3rd party app called XRMToolBox and FetchXMLBuilder but I try to avoid 3rd party stuff and I feel its probably way more than I really require.
Just writing it as you describe, I am getting "Could not find a property named <entityName>". So I feel like I am close but something is not quite right. Its strange that its giving me this error because it definitely does exist within the table. I am time-poor so I have been sitting down to nut it out here and there but I am not quite there yet. Thanks for your assistance.
Eric - Thank you for the extra information. Even if I wanted to do another 'Get row by ID' I wouldn't be able to do it without using expandquery because the 'value' of the lookup field is not the GUID of the record. Unless I am very much mistaken, if I do 'get row by ID' and point at the lookup field, it would look up the primary name for that record and that, in my case, is not necessarily a unique field.
Okay so after Eric's post I took a closer look at the (type) and (value) variables for the Lookup fields that were available and found that (Value) was actually the GUID for the record. As you described, I am now able to use 'Get row by ID' and reference the Lookup(Value) to get the record and the data I require. So Eric, thank you for giving me one way of accessing the data required!
A visual for anyone else wanting some idea of how this worked out for me:
With that said, the primary objective of this post was to work out how to access this data via the Expand Query that Chris mentioned (even though that wasn't the name of the post). I would very much like to be able to do this because it would no doubt be more efficient for flow processing and I feel it'll be something I'll need to know in the future regardless. May as well try figure it out here! Any idea why I would be getting that error? I have tried using the name and display name of the lookup field in the Expand Query and neither seem to work. I feel like I need to be using a specific syntax but no other resources I have found seem to suggest this.
Thanks again!
Okay so I FINALLY managed to get this working after significant anguish and many hours. It was stupidly simple and I knew the entire time it would be which is what kept me going.
@EricRegnier - It was your underlined comment about things being CASE SENSITIVE that was what ended up saving the day. It turns out that the name COLUMN on the Table page doesnt actually give you the right case-sensitive name to reference the field. Which is, IMHO, insane. You need to reference the SCHEMA NAME in the query for it to work correctly. The only place I have found the schema name referenced directly (and by that I mean copy-pasting it will work) as it should be in the query is inside the power apps advanced settings area with all the database customisation tools:
You can get it out of the normal Data->Tables pages as well but only manually by clicking on the field you want and copying it from there:
I hope this saves some people the same struggle in the future. Thanks again @ChrisPiasecki and @EricRegnier for steering me in all the right directions. You can only lead a horse to water. 🙂
Hi @Sheikx800,
So lets take the example from here, which is the Account table trying to retrieve related Contact fields. In the expand, you start with the lookup name on the Account table, then include which attributes on the related Contact table you want to include.
Lookup column name on the primary table = primarycontactid
Related columns to include = contactid, fullname
To get the lookup column name:
To get the related column names you want to include:
Hope this clarifies.
---
Please click Accept as Solution if my post answered your question. This will help others find solutions to similar questions. If you like my post and/or find it helpful, please consider giving it a Thumbs Up.
Hi @ChrisPiasecki , @Sheikx800 , @EricRegnier ,
This is still somewhat difficult to implement. Is there some video you guys could reference here?
@Sheikx800 - did you in the end use the double Get Row by ID?
@ChrisPiasecki - can you replace the GUID with a dynamic GUID based on the element that triggered the flow on the first place?
Lastly, will this all work the same if the lookup table is looking up multiple tables, albeit with the same parameter names? As this example: https://www.youtube.com/watch?v=UuK92K0CLQE&ab_channel=365.Training
Guys, many thanks for investigating this!
@akptech, possible to ellaborate on your scenario? What exactly are you trying to do and what is your Web API query?
Hi @EricRegnier , thanks for getting back to me.
My scenario is as following:
I've got a "Component Order" as a parent class to "Components" lookup from multiple tables (a list of components that will make up a specific Door Type). The Components have some unique properties, but they all share some parameters such as cost and classification code.
Say we have a class: "Handle" and a class "Hinge" with a classification code and a price tag as its property.
I would like to relate those prices and classification codes to the parent class, depending on the Lookup child class I pick. So if I pick a handle object from a multi-table selection lookup, the Component Order will relate the handle properties and copy them over to the Component Order. This instantiation wrapper will let me use the type properties and multiply them with instance properties such as quantity.
I made a post about this here:
https://powerusers.microsoft.com/t5/Microsoft-Dataverse/multi-table-lookup-Accessing-other-column-da...
Regarding the Web-API query question - Apologies, I don't know how to address that. How can I obtain it?
Thank you so much for looking into it!
Adam
Dear Community Members, We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd. During this period, members will not be able to Kudo, Comment, or Reply to any posts. On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities. What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!
We are excited to announce the Summer of Solutions Challenge! This challenge is kicking off on Monday, June 17th and will run for (4) weeks. The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions in the Forums to as many questions as you can. Answers can be provided in all the communities. Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”) - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024 Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods. You must enter into each weekly Entry Period separately. How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different. Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers. At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing. Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner. A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random. Individuals will be contacted before the announcement with the opportunity to claim or deny the prize. Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners. Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event. ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE** Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersNumber of SolutionsSuper UsersNumber of Solutions @anandm08 23 @WarrenBelz 31 @DBO_DV 10 @Amik 19 AmínAA 6 @mmbr1606 12 @rzuber 4 @happyume 7 @Giraldoj 3@ANB 6 (tie) @SpongYe 6 (tie) Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersSolutionsSuper UsersSolutions @anandm08 10@WarrenBelz 25 @DBO_DV 6@mmbr1606 14 @AmínAA 4 @Amik 12 @royg 3 @ANB 10 @AllanDeCastro 2 @SunilPashikanti 5 @Michaelfp 2 @FLMike 5 @eduardo_izzo 2 Meekou 2 @rzuber 2 @Velegandla 2 @PowerPlatform-P 2 @Micaiah 2 Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower Apps anandm0861WarrenBelz86DBO_DV25Amik66Michaelfp13mmbr160647Giraldoj13FLMike31AmínAA13SpongYe27 Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 4:Community MembersSolutionsSuper UsersSolutionsPower Apps DBO-DV21WarranBelz26Giraldoj7mmbr160618Muzammmil_0695067Amik14samfawzi_acml6FLMike12tzuber6ANB8 SunilPashikanti8
On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners. The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights. Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.
We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for. We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer. Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together. Here's to new beginnings and endless possibilities! If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport. To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages