Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm attempting to access a grandchild object.

I have 3 Objects,

     Opportunity,
          Quote,
              QuoteLineItems,

Opportunity is a Parent to Quote and Quote is a Parent to QuoteLineItems.

Unfortunately, writing a query for this is proving challenging. I'm using Force.com explorer and there's no direct relationship from Opportunity to QuoteLineItems. You can can only nest Select statements one level deep.

I'm looking to write a query that will grab all the fields from these object (I can manually enter the fields) but I'm not sure how the join logic works.

Select ID, (Select ID From Quotes) From Opportunity.

Somehow I need to join in the Quotelineitems in this query.

Any thoughts?

share|improve this question

1 Answer

up vote 3 down vote accepted

From the API docs "In each specified relationship, only one level of parent-to-child relationship can be specified in a query."

Going the other direction (child-to-parent), you can traverse five levels. So, something like this may work for you:

SELECT Id, Quantity, Quote.Name, Quote.Opportunity.Name FROM QuoteLineItem ...

share|improve this answer
1  
Exactly that. The following similar query is permitted: List<OpportunityLineItem> oppLI = [SELECT Id, OpportunityId, PricebookEntry.Product2.Name, PricebookEntry.Product2.Family FROM OpportunityLineItem] – Adam Dec 20 '11 at 23:54
Thanks Guys. Unfortunately I have to take a different approach than this, but the confirmation that my initial hunch was correct was what you provided. The education was very helpful. Thanks again! – Bryan Harrington Dec 21 '11 at 17:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.