1

Possible Duplicate:
Feature Request: Better flagging for cases invisible to the assignee

Hello!

We run FB Version 6.1.44 (DB 632, Build 369)

Issue: frequently, we (by accident) assign a case to a user who cannot see the case. This happens because of the way FB security works.

The solution is for the creating/editing user to change the project the case is in, so the target user (the assignee) can see it.

How can we query FB to see all these "lost" cases?

Thank you!

flag

closed as exact duplicate by adambox♦♦ Apr 9 at 16:05

2 Answers

1

Here's a starter query:

SELECT b.ixBug, a.iPermission FROM Bug b
LEFT JOIN Project p ON b.ixProject = p.ixProject
LEFT JOIN ACL a ON p.ixGroup = a.ixSection AND b.ixPersonAssignedTo = a.ixPerson

I'm really not sure what the WHERE clause will look like. We may want:

WHERE a.iPermission IS NULL

Or we may have to do some more joining.

link|flag
0

Moved to a feature request (sorry Rich, your answer is nice, but is of no use to us in day to day use of FB)

http://fogbugz.stackexchange.com/questions/9770/feature-request-better-flagging-for-cases-invisible-to-the-assignee

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.