PeopleTools Security

来源:互联网 发布:机器人赛道编程 编辑:程序博客网 时间:2024/06/05 18:40

Operators

RecordDescriptionPSOPRDEFNStores all operators (users) in the PeopleSoft system. Also stores their employee ID (EMPLID), encrypted password, primary permission list, default navigator home page, process profile permission list and row security permission list.PSROLEUSERThe highest level of security access is defined by roles (think of them as groups). This table stores the roles the user belongs to.PSOPRCLSRoles link together permission lists which are the security objects that define access to components, pages, and other areas of the system. This view returns the permission lists that a user has access to via their roles. Note that prior to PeopleTools 8, permission lists were synonymous with classes and most of the security tables still use this convention.PSOPRALIASAliases can be mapped to a particular operator ID (user). The obvious alias is employee ID (EMPLID) but others include external organisation ID (EXT_ORG_ID) and customer ID (CUST_ID). All ways of referring to the same entity.PSOPRALIASTYPEThis is the setup table for operator aliasesPSOPRALIASFIELDThis is the setup table that maps operator aliases to records & fieldsPSUSERATTRUser attributes store the a hint password question & response for a user (if this is enabled)PSUSEREMAILEmail addresses for users.

Roles

RecordDescriptionPSROLEDEFNStores roles and their properties. Roles can be assigned dynamically through Query, PeopleCode or LDAP. Roles are also used in conjunction withWorkflow and routing.PSROLECLASSRoles are made of up of one or permission lists, and this table links the two together. Very handy.

Permission Lists

RecordDescriptionPSCLASSDEFNPermission lists are where the security really happens. They provide access to menus, components and pages and a host of other security including PeopleTools, Process security, Component Interfaces, Web Libraries, Web Services, Personalisations, Query and Mass Change.PSAUTHITEMThe link between permission lists and menusPSAUTHBUSCOMPThe link between permission lists and component interfaces and their methodsPSAUTHOPTNThe link between permission lists and personalisationsPSAUTHPRCSThe link between permission lists and process groupsPSAUTHSIGNONThe link between permission lists and signon timesPSAUTHWEBLIBVWA view linking permission lists and access to web libraries (really just Menus in PSAUTHITEM that begin with WEBLIB_).PSAUTHWSThe link between permission lists and web services (service operations)PS_SCRTY_ACC_GRPThe link between permission lists, trees and query access groupsPS_MC_OPR_SECURITYThe link between permission lists and mass change templates. This is an odd table, it uses the field OPRID but really it links permission lists

Check out this forum post for details about how to check which users have access to PeopleTools.

Portal

The PeopleSoft Enterprise Portal basically refers to the navigation system that links menus and components to the PeopleSoft online interface, navigation and search functionality. Access to anything in the online application is handled through portal security. The records associated with this include:

RecordDescriptionPSPRSMDEFNStores the structure of the portal registry. This data is stored in a hierarchical (tree) structure within the table. The field PORTAL_URI_SEG1 is the menu, PORTAL_URI_SEG2 is the component, and PORTAL_URI_SEG3 is the market.PSPRSMPERMStores permission lists associated with access to everything within the portal registry

Useful Queries

Find out which users (and from what permission lists) have access to a particular page:

select distinct OPRID, OPRCLASSfrom PSOPRCLSwhere OPRCLASS in (    select distinct CLASSID    from sysadm.PSAUTHITEM    where PNLITEMNAME = '<PAGENAME>');
原创粉丝点击