Does anyone know how to retrieve the hierarchical model of a account based on it's id?
I tried using this query but all i got is the first set of child nodes.
select a.Name,a.parentId,a.ownerid,a.id from Account a where Parent.id ='00711314'
|
Does anyone know how to retrieve the hierarchical model of a account based on it's id? I tried using this query but all i got is the first set of child nodes.
|
|||
|
|
|
SOQL does not support hierarchical retrieval, you have to retrieve level by level, for each level generate a list of id's and then retrieve next level using Keep in mind though that governor limitations apply and if you have large trees you'll run into a limit quite easily. |
|||
|
|
|
|||||
|
|
As already stated you can not make use of hierarchical retrieval with SOQL. When I've needed this functionality with other objects (and when I know there are < 10k rows) I've selected all records, then used a map of lists to build up the hierarchy in memory instead:
You can then make use of a recursive function to perform operations etc. on the data, for instance (untested):
This code is inefficient and untested (I've just written this version straight into the browser) but it should give you an idea of how you can deal with hierarchical data on the platform. |
|||
|
|