A straight forward SQL to get edit tables behind field(s) for a specific record. The SQL execludes any edit tables that start with "%" as those are dynamic edit tables with values populated by PeopleCode at run time and thus will not be of a good use in this query.
SELECT R.FIELDNAME , R.EDITTABLE FROM PSRECFIELDDB R , PSDBFIELD F WHERE R.RECNAME = :RecordName AND SUBSTR(R.EDITTABLE,1,1) <> '%' AND R.EDITTABLE <> ' ' AND R.FIELDNAME = F.FIELDNAME AND F.FLDNOTUSED = 0;
A query that will take a PeopleSoft role name as an input and returns all pages that could be access by that role. The query will also indicate what kind of operations a user can perform on that page. Example, Add Update/Display and so forth.
A query that takes a PeopleSoft role name as a value and returns Permission List(s) associated to that role.
A section to collect and organize PeopleSoft Role related queries.
Another permission list query to list Content References accessed by a specific Permission List.
A query that will list all peopletools objects (Query, Application Designer, Data Mover) that a specific permission list could access.
A query to identify pages that could be accessed by a specific permission list.
A query to help you identify Roles that are assigned to a specific permission list.
A subrecord in PeopleSoft is a way to group fields together and place them on a record, view, or a temp table. Here is a query you can use to identify records that have a specific subrecord.
A section to collect and organize PeopleSoft permission lists related queries.
| Title | Under | Posted on |
|---|---|---|
| what is bursting in xmlp | PeopleSoft Technical | 09/06/2010 - 2:21am |
| Running SQR from Process Scheduler | PeopleSoft Technical | 09/04/2010 - 10:16am |
| How to run nvision report through portal | PeopleSoft Technical | 08/31/2010 - 4:45am |
| Any1 here who can help? | PeopleSoft Technical | 08/31/2010 - 2:12am |
Recent comments
4 hours 34 min ago
4 hours 37 min ago
4 hours 38 min ago
4 hours 39 min ago
4 hours 40 min ago
1 day 1 hour ago
1 day 3 hours ago
1 day 21 hours ago
1 day 21 hours ago
2 days 12 hours ago