Queries for PeopleSoft Objects
Page information and objects
-- Information and Properties on a page select * from pspnlfield where pnlname = 'EXTRA_ACTIVITY_TBL';
All records where a Field is used
-- Find all the Records a field is used SELECT DISTINCT recname, fieldname FROM psrecfield WHERE fieldname = 'ELEVENTH_GRADE';
All the pages that a field exists on
-- Find all the pages where a field is used SELECT pnlname FROM pspnlfield WHERE recname='EXTRACUR_ACTVTY' AND fieldname = 'DESCR';
All the pages that a record is used on
-- Find pages a record is used on SELECT DISTINCT pnlname FROM pspnlfield WHERE recname='EXTRACUR_ACTVTY';
Check for outstanding Run Controls
Simply change this to a delete if you have a process that failed and you want to restart from the beginning.SELECT * FROM ps_aeruncontrol WHERE oprid = 'YOURUSERID';
No comments:
Post a Comment