Login / Register  search  syndication  about

          SalesLogix Questions & Answers

Your place to get answers to your SalesLogix related questions.

 Home  |   Subscribe via RSS  |   Subscribe via E-mail  |   

Is there a way to capture all of the accountid's related to SalesLogix accounts in a tree view in order to use all of them in one sql statement?

Question: Is there a way to capture all of the accountid's related to SalesLogix accounts in a tree view in order to use all of them in one sql statement?

Answer: That being said, the best way to achieve this would be through Code: - On Node Select, get the AcctID, then resolve the relationships by querying each account. (Also, make sure you add some checks to prevent an Infinite Loop just in case you have a Closed Loop on the Relationship). Best bet would be to create an Array of the AcctIDs and then use that array to go after the products. Otherwise, you would have to put a limit as to how many levels down you want your code to work for. For instance, the following statement gets up to 3 levels down: SELECT A.PARENTID, ACCOUNTID AS CHILDID FROM ACCOUNT UNION SELECT A.PARENTID, C2.ACCOUNTID AS CHILDID FROM ACCOUNT A INNER JOIN ACCOUNT C2 ON A.ACCOUNTID = C2.ACCOUNTID UNION SELECT A.PARENTID, C2.ACCOUNTID AS CHILDID FROM ACCOUNT A INNER JOIN ACCOUNT C2 ON A.ACCOUNTID = C2.PARENTID INNER JOIN ACCOUNT C3 ON C2.ACCOUNTID = C3.PARENTID ParentID is the Root, and then you get up to 3 levels down from the statement shown above. You could place it on a View, then call it by just passing the ParentID, and it will return you all the IDs that are associated to it downstream. Bottom line, I believe you should be looking for a Recursive function to build you this relationship. Maybe you can do this within SQL by using a Function to return you a Table and embed that into a View. (off course, then you need to figure out how that would work across remotes.

What's This?
  
Bookmark and Share

About SalesLogix Support

   Your SalesLogix Business Partner for SalesLogix Support.


Related Content
   Is there an issue with the SalesLogix Web Administrator version 8.0 in regards to adding users to Team Membership?
Question: In my database, it appears two users belonging to the same teams, have access to a different am
Posted on May 22, 2013 by SalesLogix Support to SalesLogix Questions & Answers
 
   FREE Open Source Add-ons for SalesLogix version 8 web
SalesLogix is developing a number of FREE add-on solutions for SalesLogix version 8 web. Some of the
Posted on May 22, 2013 by Scott Weber to SalesLogix Product Blog
 
   What is the best way to delete unused Groups in SalesLogix?
After several years of using SalesLogix – we have hundreds of groups, most of which are no longer used as
Posted on May 21, 2013 by SalesLogix Support to SalesLogix Questions & Answers
 
   Can the SalesLogix Application architect's build process be automated?
Can the SalesLogix Application architect's build process be automated, or called from a batch file? W
Posted on May 16, 2013 by SalesLogix Support to SalesLogix Questions & Answers
 
   Is it possible to Sync SalesLogix Attachments based on Account Manager?
Is it possible to only sync SalesLogix Attachments from the accounts where the user is the account manag
Posted on May 15, 2013 by SalesLogix Support to SalesLogix Questions & Answers
 
Comments

No Comments
All contents Copyright © 2013 Customer FX Corporation
Customer FX Corporation
2324 University Avenue West, Suite 115
Saint Paul, Minnesota 55114
Tel: 800.728.5783

  Follow @CustomerFX on twitter
Follow the best news, tips, and articles
  Subscribe to Customer FX on youtube
Watch SalesLogix tutorial videos from Customer FX
Login / Register