You are on page 1of 2

How many peoplesoft system tables are there and how i know all the names of thso

e tables.
If i have one field, how can i find whether it is existing in peoplesoft tables
or not. how can i find in which table that field is present.I tried with "Objec
t Reference" i am getting many results like "That field is present in the follow
ing line of peoplecode" will you please help me

Answer
Hi,
Peoplesoft system tables can be found in those tables:
PSRECDEFN and PSRECFLDEFN.
select * from PSRECDEFN where RECNAME like 'PS%' and RECDESCR > ' '
You can find the field in records as well. you have option to exclude the people
code.
I hope it helps.
thanks
Mahendra

select * from all_objects where object_type='PACKAGE' and object_name like 'PS%'


;
select * from PSRECDEFN where RECNAME like 'EX_EE_ORG_DTL%' and RECDESCR > ' ';
select * from PSAEAPPLDEFN where ae_applid like 'Y00_EX_AA_AE%';
SELECT * FROM PSAUTHITEM;
SELECT * FROM PSQRYSTATS;

select * from PSAEAPPLDEFN where ae_applid like 'Y00_EX_AA_AE%';


select * from PSAEAPPLDEFN where ae_applid like 'Y00%';
select * from PSAEAPPLDEFN;
select * from PSRECDEFN where RECNAME like 'EX_EE_ORG_DTL%' and RECDESCR > ' ';
select * from PSRECDEFN where RECNAME like 'Y00_EX_AA_AE%' and RECDESCR > ' ';
select * from PSRECDEFN where RECNAME like 'Y00%' and RECDESCR > ' ';
select * from PSRECDEFN where RECNAME like 'PS%' and RECDESCR > ' ';

select * from psaeappldefn where ae_applid = 'Y00_EX_AA_AE';


select * from psaesectdefn where ae_applid = 'Y00_EX_AA_AE';
select * from psaesectdtldefn where ae_applid = 'Y00_EX_AA_AE';
select * from psaestepdefn where ae_applid = 'Y00_EX_AA_AE';
select * from psaestmtdefn where ae_applid = 'Y00_EX_AA_AE';
select * from psactivitydefn;
select * from psflddefn where flddefnname like 'Y00%';
select * from psfldfielddefn where flddefnname like 'Y00%';
SELECT a.*
FROM PS_PRCSDEFN A, PS_PRCSDEFNPNL B
WHERE A.PRCSTYPE = B.PRCSTYPE
AND A.PRCSNAME = B.PRCSNAME
and a.prcsname like 'Y00_EX_AA_AE%';
SELECT * FROM PS_PMN_PRCSLIST WHERE PRCSNAME = 'Y00_EX_AA_AE';
select to_char(sysdate,'d') from dual;
SELECT * FROM PS_EX_TIME_APRVL where approval_oprid='CJHATTIN' order by syncdttm
desc;
SELECT * FROM PS_ROLEXLATOPR;
SELECT * FROM PSOPRALIAS;
SELECT * FROM PSOPRDEFN;
SELECT * FROM XLATtable_VW where fieldname like 'Y00%';
select * from PSSQLDEFN;
select * from psprojectdefn where projectname like 'Y00%EX%';
select * from PSPROJECTITEM where projectname like 'Y00_EX%';
select * from ps_prcsjobdefn where prcsjobname like 'Y00_FIN%';
select distinct table_name from all_tables where table_name like 'PS%PRCS%' orde
r by 1;
select * from PS_PRCSJOBITEM where prcsjobname like 'Y00_EX01%';
select LPAD(' ', 2*level-1)|| prcsjobname, prcsjobseq, prcsname, level
from ps_prcsjobitem
connect by prior prcsjobname= prcsname
start with prcsname like 'Y00_EX%';
select * from ps_prcsjobitem where prcsname='Y00_EXFIX_AE';
SELECT a.*
FROM PS_PRCSDEFN A, PS_PRCSDEFNPNL B
WHERE A.PRCSTYPE = B.PRCSTYPE
AND A.PRCSNAME = B.PRCSNAME
and a.prcsname like 'Y00_EXFIX_AE%';

You might also like