back to top

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.

Contact Customer FX for your CRM project
We let our expertise speak for itself - let us know how our all-star team can help on your CRM project
About the Author

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Infor CRM Sync for Exchange: Action Required by August 31, 2026

Using Infor CRM Sync for Exchange with Microsoft 365? Your Exchange administrator must update tenant settings by August 31, 2026 to prevent sync disruption.

[Webinar] What’s Coming Next for Infor CRM SLX and Why v10 Matters

See what’s coming next for Infor CRM SLX, including new marketing workflows, automation improvements, and reasons to consider upgrading to v10.

Disable Caching in Infor CRM SLX Web Client

In the rare case caching is causing issues in the Infor CRM SLX web client, it is possible to disable specific types of caching by making edits using Application Architect, and then deploying.

Exploring AI Options for Infor CRM v10

I've started taking a closer look at the AI capabilities built into Infor CRM v10. Over the next several posts, I'll share what I learn. From the built-in features and supported AI providers to implementation considerations, costs, and practical use cases.

Infor CRM SLX 10.0: Delegate Ownership Changes for “Everyone” Records

Learn how the new EveryoneOwnerAssignment secured action in Infor CRM SLX 10.0 allows designated users to change ownership of Everyone-owned records without requiring Administrator access.

Related Articles

Infor CRM Sync for Exchange: Action Required by August 31, 2026

Using Infor CRM Sync for Exchange with Microsoft 365? Your Exchange administrator must update tenant settings by August 31, 2026 to prevent sync disruption.

[Webinar] What’s Coming Next for Infor CRM SLX and Why v10 Matters

See what’s coming next for Infor CRM SLX, including new marketing workflows, automation improvements, and reasons to consider upgrading to v10.

Disable Caching in Infor CRM SLX Web Client

In the rare case caching is causing issues in the Infor CRM SLX web client, it is possible to disable specific types of caching by making edits using Application Architect, and then deploying.

Exploring AI Options for Infor CRM v10

I've started taking a closer look at the AI capabilities built into Infor CRM v10. Over the next several posts, I'll share what I learn. From the built-in features and supported AI providers to implementation considerations, costs, and practical use cases.

Related Videos