Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Tables in PeopleSoft

Status
Not open for further replies.

goree

IS-IT--Management
Apr 23, 2004
2
US
Is there anyway to get a list of all the tables in PeopleSoft and a description of what they are used for?

Thanks in advance
 
If you are just after the tables and relationships in PeopleSoft, all table names are stored in PSRECDEFN.

To find all object references for each of these tables - ie fields, panels, panelgroups etc this can be done through application designer with 'find object references' , or you could just run the following sets of sql (not sure how much this changes between versions):

SELECT DISTINCT RECNAME,
FIELDNAME
FROM PSRECFIELD
WHERE FIELDNAME = 'xxx'
AND SUBRECORD = 'Y' ORDER BY RECNAME

SELECT DISTINCT PNLNAME,
FIELDNAME
FROM PSPNLFIELD
WHERE RECNAME = 'xxx'
ORDER BY PNLNAME

SELECT DISTINCT PNLGRPNAME
FROM PSPNLGRPDEFN
WHERE SEARCHRECNAME = 'xxx'
ORDER BY PNLGRPNAME

SELECT DISTINCT PNLGRPNAME
FROM PSPNLGRPDEFN
WHERE ADDSRCHRECNAME = 'xxx'
ORDER BY PNLGRPNAME

SELECT DISTINCT RECNAME
FROM PSRECDEFN
WHERE RELLANGRECNAME = 'xxx'
ORDER BY RECNAME

I believe there are sets of ERD's around depending on the versions if you are looking more at that level.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top