Hi,
I have deleted one permission list from Main Menu > PeopleTools > Security > Delete Permission list navigation . But still while i run the below mentioned query it is showing the permission list.
SELECT B.DEPTID, A.DESCR, B.SETID, B.ROWSECCLASS,A.SETID,A.DEPTID,A.EFFDT
FROM PS_SCRTY_TBL_DEPT B, .PS_DEPT_TBL A
WHERE B.DEPTID = '0000014296'
AND A.EFFDT =
(SELECT MAX(A_ED.EFFDT) FROM PS_DEPT_TBL A_ED
WHERE A.SETID = A_ED.SETID
AND A.DEPTID = A_ED.DEPTID
AND A_ED.EFFDT <= CURRENT DATE)
AND A.SETID = B.SETID
AND B.DEPTID = A.DEPTID
AND A.SETID = 'USALL '
ORDER BY 4, 1
Please suggest me why the permission lists are showing after deletion also?
| Title | Under | Posted on |
|---|---|---|
| MD5 - SHA checksum of a file. | PeopleSoft Technical | 02/07/2012 - 5:29am |
| nVision Tabular Report through PIA with prompts | PeopleSoft Technical | 02/02/2012 - 10:07pm |
| Can we create an AE to mass update Position - Jobcode data? | PeopleSoft Technical | 01/18/2012 - 3:11am |
| Pay Components on job data can be defaulted and setup based on the rules? | PeopleSoft Functional | 01/05/2012 - 4:58am |
This is happening beacause when u delete permission list it deletes from data from peopletools tablel PSCLASSDEFN not from application table PS_SCRTY_TBL_DEPT .
Post new comment