WorkingScripts

The Stuff that Just Works

WorkingScripts header image 5

Entries Tagged as 'PeopleTools'

Getting Information about PeopleSoft Components from Database

June 3rd, 2008 No Comments

SQLs below have proved to be great while working behind the scenes and creating report about PeopleSoft customizations. These are quick ways to get behind the scenes and see the objects the way PeopleSoft sees it.
Getting fields and records for a page:

select OCCURSLEVEL as level ,FIELDNUM as taborder, LBLTEXT as label ,
RECNAME as record ,FIELDNAME [...]

Tags:   · ·

Non-Shared Temp Tables Cleanup

March 7th, 2008 No Comments

Some of the processes that depend on shared table instances , can experience a dramatic differences in performance, in case all of the instances available are being used, or remaining locked by some orphan or failed process. One way to resolve this problem is to go online and check if tables should be “released”. Here [...]

Tags:   · · ·