Primary Permission List Defaults

From TekiWiki
Jump to: navigation, search

Primary Permission List Defaults (previously known as Operator Defaults) are essential to PeopleSoft HRMS. Your operator (user) has (or should have) a Primary Permission List set. Each Permission List used as a Primary Permission List should have a set of HR defaults set.

If these are defaults are not set, you may see the following effects:

  • Hire and Job Component Interfaces fail to save
  • Employee Self Service users cannot add a new address (the address page does not appear)

The solution is to:

1: Discover the Primary Permission List of the operator:

PeopleTools > Security > Operators

2: Add the defaults here:

Set Up HRMS > Foundation Tables > Organisation > Org Defaults by Permission List

To find all the Primary Permission Lists missing, use the following SQL:

select distinct OPRCLASS 
from PSOPRDEFN o
where
o.OPRCLASS not in (
	select d.OPRCLASS
	from PS_OPR_DEF_TBL_HR d
	where 
	d.OPRCLASS=o.OPRCLASS
)

To find operators missing a Primary Permission List:

select OPRID 
from PSOPRDEFN o
where
o.OPRCLASS is null