cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
alstearns
Frequent Visitor

Importing tables that relate to another table (in a parent/child style relationship)

Hello All, 

 

I'm very new to Power Apps, specifically model driven apps.

 

I've imported all of our "Accounts" from salesforce to an Account table in the dataverse.

 

Now I want to import all of our "Opportunities" to a "jobs" table i've built in the dataverse.

 

How do I import all of these "Opportunities" into the "jobs" table and have them show under the "related" tab of the Accounts?

 

1 Account to be related to many "Jobs" and "appointments"

 

 

9 REPLIES 9
EricRegnier
Most Valuable Professional
Most Valuable Professional

Hi @alstearns,

This should be pretty simple. First ensure you have a lookup column on Jobs that points to the Account table. This will display out-of-the-box the Jobs on the Related tab of the Account form.  Then, import the opportunities/jobs in the Jobs table the same way you did for Accounts but ensure you see the Account column on Jobs, you can use the Primary Column value of the Accounts which is the Account Name.
Hope this helps!

Hi Eric, 

 

Thank you and sorry for the delayed response, had some time off for the new year.  

 

I do have "lookup" column on the "Jobs" Table that points to the Account Table.

 

Where im getting lost is in the import.  That Lookup field that points at the account doesnt show up as a mappable field when importing.  I can easily have the the exact account name on the source record in salesforce (I've already done that), but I dont know what column to map to that account name from the source too when that lookup field doesnt show up in mapping in the destination columns.  Do I need to run a flow or something to migrate that account name data from a separate account name field on the job table to the account lookup column?

 

What do you mean by "ensure you see the Account Column on jobs", is there a step to get that account lookup field to display in mapping that I am missing?

dpoggemann
Most Valuable Professional
Most Valuable Professional

Hi @alstearns ,

 

Please review and let me know if this isn't your situation...

  1. On your Jobs table you should have a field that is a Lookup to the Account table right?  Example field would be Account Name
  2. When you import the Opportunities from Salesforce into the Jobs table, one of the columns that you should be able to import is the "Account Name" column.  
  3. If you have imported your Accounts already then when you import the Jobs and populate the Account Name with the name it will automatically create the relationship to the related Account table.  Note - This requires the Account Name to be unique in the Account table or the record will fail to import.   If you have duplicate values you will need to map to another field that would be unique (example:  Account Number) field.  This can be done through the data import wizard to map to an alternate field in the Account table https://arcticit.com/getting-the-most-out-of-the-dynamics-365-data-import-wizard/ 

 

Hope this helps. Please accept if answers your question or Like if helps in any way.
Thanks,
Drew

Hi Drew, 

 

  1. On your Jobs table you should have a field that is a Lookup to the Account table right?  Example field would be Account Name
    1. I DO have an data type "lookup" field on the jobs table that points to the accounts name
  2. When you import the Opportunities from Salesforce into the Jobs table, one of the columns that you should be able to import is the "Account Name" column.  
    1. NO lookup fields show up to map at all when im in the import mapping fields to an existing table screens,  including that specific lookup to the account column.
  3. If you have imported your Accounts already then when you import the Jobs and populate the Account Name with the name it will automatically create the relationship to the related Account table.  Note - This requires the Account Name to be unique in the Account table or the record will fail to import.   If you have duplicate values you will need to map to another field that would be unique (example:  Account Number) field.  This can be done through the data import wizard to map to an alternate field in the Account table https://arcticit.com/getting-the-most-out-of-the-dynamics-365-data-import-wizard/ 
    1. I have already imported ALL the Accounts, however with a database of 200k+ I cant say for sure that there isnt going to be two different accounts with the same name so Account Number may be the better data set to use. 
    2. I have been doing imports through Power Apps-Table-selecting "Import" at the top button bar -Choose Data Source (selecting Salesforce Objects)-Connection Settings Screen (hitting next, I have played around with "include relationship columns" and didn't see a change or that lookup field show up, Choose Data Screen (selecting the Opportunity object from the list)-from there are the columns to map to the fields in salesforce.
    3. How does the lookup column that looks at the account relate the two tables if i cannot map the account name or number from salesforce into it?
    4. If I go with the Account Number, how do I get the lookup field to "look" at the account number data that's on the Account table records I've already imported and match it with the account number (lookup field) on the Job/Opportunity table.
    5. Do I need to delete the current account table and all the data imported and do a new account table with "Account Number" as the Primary Column since the current one has Account Name as the Primary Column?

i am facing the same issue, having salesforce accounts & opportunities imported in dataverse and trying to build the relationship between Id (accounts) and AccountId (Opportunities). 
Did you find any solution for that problem?

I ended up using the unique numbers on the salesforce entities (Accounts and Opps) and created the lookup fields (columns) in the dataverse pointing to them on the parent record.  I added a couple subgrid's on my accounts, one on two different tabs showing only related too opps. and imported my opps separated by the record type (our two different job types) in the Power Query Import so the existed as separate tables in the dataverse.  This also ensures my users are creating the correct type of opportunities for the accounts moving forward, since they create new opps from these same Subgrids. 

 

I was never able to get all of our appointments to sync to opps in import, finding this to be due to countless user errors over the years in salesforce relating appts to accounts or not relating them at all if they made them from the wrong entity, so it was not always that one entity from salesforce that the lookup field on the dataverse was looking for, causing the import to always fail.  Instead I added the lookup field on the appointments and elected to import the related unique id and put it on the appointment form right by the lookup so it can be referenced in cases of service work, when past appointments need to be references in the dataverse search.  The user can than link the appointment to the opp manually as they work through things as they come up naturally.  Luckily the dataverse search, if configured correctly, makes finding things easy on the user side. 

 

The import of data was the most stressful, grinding wheels aspect of my power apps experience, i had to do it many times with it failing before i could get it to take. 

 

ALSO, important step that is easy to overlook, your opportunities will fail if they dont have a parent account, so always make sure your account important is done first and that nobody is creating new accounts and opps while you are doing the import.  So if your accounts are importing, and by the time you are importing opps, someone has added a new account and opp in salesforce (the account being missed from the account import) your opportunity import will fail, since it will be pointing to an account record in the lookup field that does not exist in the dataverse.

Hi, thanks a lot for you valuable hints, I will go through the steps this week. I have also added subgrids to show the related opportunities for an account.
I just stumbled across one sentence.. "The user can than link the appointment to the opp manually ..."

Does that mean you need to do that manually for all accounts? This is what I actually wanted to avoid, simply use the sfdc ID (Acct table) and AccountID (Opportunity table) and auto-relate the records, so that opps show up in the subgrid of an account.
As I said I will go through the steps and check the outcome.

thanks a lot for the guidance

HI @Stefan68, this dates from a while but did you get this resolved. I see you're using SFDC? Can you elaborate more on your scenario and integration between SFDC and Power Apps/Dataverse? Thanks 

hi, no resolution on that unfotunately.

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

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!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

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

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

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.    

Updates to Transitions in the Power Platform Communities

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

Users online (1,683)