Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3631040
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T00:20:47+00:00 2026-05-19T00:20:47+00:00

I have an issue where I need to find the top level parent account

  • 0

I have an issue where I need to find the top level parent account for a child. The best I’ve been able to do is filter up from the child w/

 SELECT id, name, parent.id, parent.parent.id, parent.parent.parent.id,
 FROM Account WHERE id=CHILD_ID

Then iterate through until you find a null parent.id indicating top level account. Not very elegant and doesn’t guarantee “top level” account, I would have preferred something like

SELECT id, name, 
    (SELECT id, name, 
     FROM Accounts WHERE id = CHILD_ID)
FROM Account WHERE parent.id = null

But that doesn’t work as salesforce apparently does not let you traverse parent-child relationships from account to account. Anyone have any suggestions here?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T00:20:47+00:00Added an answer on May 19, 2026 at 12:20 am

    You’re right – there’s no way to do this in a single SOQL query. Note that your second, desired, query wouldn’t give you the correct results either (it would only return a record if the child account’s immediate parent had no parent).

    Your best bet is to do what you said in your first code block. You can traverse relationships up to 5 objects deep, so you can include parent.parent.parent.parent.parent.id in your SOQL select. Iterate through the fields – if none of them are null, then issue a second SOQL query that changes CHILD_ID to parent.parent.parent.parent.parent.id’s value. That way you’re guaranteed to eventually find a parent with no parent (since salesforce guarantees no cycles).

    You could make this more elegant by only ever selecting parent.id in the query and doing more individual queries, but that will run you up against API/governor limits, so it’s probably not a great idea.

    If you could use a custom object instead of Account, you could do something like the second query, since you would be able to traverse the parent-to-child relationship from that custom object to itself, but I’m still not sure there’s a single query that will give you what you want.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an issue where I need to find out what objects are retaining
I have an issue where I need to find a string in a file,
We have an issue where we need to modify keys for users that are
I rarely use SQL and have a unique issue I need to solve. I
I have an issue with a my SQL query. I need to execute a
I have searched for this but nobody have the same issue.. Now I need
So here's my issue. I have an image that I need to shrink. The
I have just been through one of my apps converting the authentication from authlogic
We have an issue with the HTML produced from the Oracle BI publishing engine,
Here is the issue: I have a page index.php and onclick of select element

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.