HRMS TABLES
I want to know all the hrms tables available in peoplesoft. can i find the list of all hrms table names in one table, if so please provide the name of that table.
I want to know all the hrms tables available in peoplesoft. can i find the list of all hrms table names in one table, if so please provide the name of that table.
If you are just after tables, start with the following query:
select RECNAME, RECDESCR from PSRECDEFN where RECTYPE = 0 and RECNAME not like 'PS%' order by RECNAME;
A RECTYPE of 0 indicates a table. The condition RECNAME not like 'PS%' excludes the PeopleTools tables which (largely) start with PSabc (e.g. PSOPRDEFN).