Hi Forum
Wondering if anyone here knows how i might do the following ?
I am trying to find all the areas of our filepan where a specific group is applied which i can do via the following Oracle SQL
Select d1.DataID, d1.Name "Name", k1.Name "Group Name"
From DTree d1, DTreeACL d2, KUAF k1
Where d2.RightID IN (Select id From KUAF
Where Name LIKE %1
And Type=1)
And d1.DataID = d2.DataID
And d2.RightID = k1.ID
And d1.OwnerID = -2000
Now the only thing i would like to do is igonre one leg of our fileplan from a specific folder down , our fileplan is hierarchial and there is one leg of it i would like to ignore a root folder and all children.
Wondering if anyone had an idea how to perform this ?
Regards
Mike.