Hello all,
I'm running into trouble trying to get the HR Business Role to be able to see all active and inactive employees via IT Shop. I've tried writting the WHERE Clause for the "Employees authorized to add and edit employees" In arameter as the 1 - 5 listed in Web Designer below and still am only able to see Active Employees.
Is there some other setting that I should be looking to change?
-------------------------------------------------------------------------------------
1.
isinactive = 0
and
exists (Select UID_Person from Person where UID_Person = '%useruid%'
and UID_Person in
(Select UID_Person from PersonInOrg where UID_Org in
(Select UID_Org from Org where Ident_Org = 'HR Role')
)
)
------------------------------------------------------------------------------------
2.
isinactive = 0 AND isinactive = 1
-------------------------------------------------------------------------------------
3.
isinactive = 0 AND isinactive = 1
and
exists (Select UID_Person from Person where UID_Person = '%useruid%'
and UID_Person in
(Select UID_Person from PersonInOrg where UID_Org in
(Select UID_Org from Org where Ident_Org = 'HR Role')
)
)
------------------------------------------------------------------------------------
4.
1 = 1
------------------------------------------------------------------------------------
5.
exists UID_Person in (select UID_Person in Person)