123265 - no subject - Is there a way to find out what users se

Is there a way to find out what users select a person as their supervisor? It would be an organization view.

We had a username not change their supervisor and the supervisor in the profile is about three years old.

Since this was high level managers - it alerted us to this issue.

If I put my name in a report or rule - I would want to see everyone using me as their supervisor.

...

OriginalPostID-123265

  Discussion posts and replies are publicly visible

Parents
  • Here's essentially the same rules in slightly different notation.
    See if it evaluates any faster. It may not, but no harm in checking.

    rule!COMMON_userSupervisorMatch:
    supervisor(ri!theUser)=ri!theSupervisor
    /
    rule!COMMON_subordinates:
    with(
    local!allUsers: getdistinctusers(topeople(ri!group))
    filter(rule!COMMON_userSupervisorMatch,local!allUsers,ri!theSupervisor)
    )
Reply
  • Here's essentially the same rules in slightly different notation.
    See if it evaluates any faster. It may not, but no harm in checking.

    rule!COMMON_userSupervisorMatch:
    supervisor(ri!theUser)=ri!theSupervisor
    /
    rule!COMMON_subordinates:
    with(
    local!allUsers: getdistinctusers(topeople(ri!group))
    filter(rule!COMMON_userSupervisorMatch,local!allUsers,ri!theSupervisor)
    )
Children
No Data