|
Posted by rhaazy on 08/23/06 20:20
I figured the query out, simple actually:S
select tblOrgSystem.OrgSystem, A.OrgNode,
B.OrgNode from
tblOrgSystemNodeParent join tblOrgSystem on tblOrgSystem.OrgSystemID =
tblOrgSystemNodeParent.OrgSystemID join tblOrgSystemNode A on
A.OrgNodeID = tblOrgSystemNodeParent.OrgNodeID
join tblOrgSystemNode B on
B.OrgNodeID = tblOrgSystemNodeParent.OrgNodeID
However I still can't figure the XML portion of this out, I would like
it to look like this:
USA
Manistique
M-Sales
M-IT
Houston
H-Sales
H-IT
CANADA
etc....
I want to bind this to a treeview so it can be easily navigated.
Navigation:
[Reply to this message]
|