PeopleSoft Administration | PeopleSoft Tutorial - Part 31

Archive

Category Archives for "PeopleSoft Administration"

PeopleTools 8.53 – How to Uninstall PeopleSoft PIA from IBM Websphere

You might need to uninstal the PeopleSoft Pure Internet Architecture from IBM WebSphere. In PeopleTools 8.53, you cannot uninstall PeopleSoft PIA simply by deleting <PIA_HOME>\webserv\<profile_name>, without uninstalling it from IBM WebSphere Administration Console. If you happen to delete <PIA_HOME>\webserv\<profile_name>, the IBM WebSphere registry becomes corrupt, and subsequent attempts to install PeopleSoft PIA will fail. The […]

Continue reading
3

How to Find PeopleSoft Processes/PSJobs in a Recurrence

Do you want to find out all processes and jobs running under a particular recurrence? Use this SQL below: SELECT process_job_name,  description, recurname FROM   ps_prcsrecur a, (SELECT p.prcsname  AS Process_Job_name, p.descr     AS Description, p.recurname AS recurname FROM   ps_prcsdefn p UNION SELECT jp.prcsjobame AS Process_Job_name, (SELECT j.descr FROM   ps_prcsdefn j WHERE  j.prcsname = jp.prcsname) AS Description, jp.recurname AS recurname FROM   ps_prcsjobdefn j,  ps_prcsjobitem jp WHERE  j.prcsjobname = jp.prcsjobname) b WHERE b.recurname = a.recurname AND a.recurname = :1 ORDER  BY 1

Continue reading

Query result set too large, (124,87). Result of (SQL Fetch) is over the maximum result size specified for the application server.

One of the common errors encountered while running a PSQuery is: “Query result set too large, (124,87). Result of (SQL Fetch) is over the maximum result size specified for the application server.“ As the error message suggests, this error has been caused due to huge result size, which the application server is unable to render […]

Continue reading
1 29 30 31 32 33 39
>