An SQL that goes against a specific component and bring back ALL related records.
| 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 |
Comments
This SQL is very useful.
I want to get the list of all components ,corresponding records,pages,fields, People Code Events in a query or else is there any way to find it out
u can use this query to get the above result
select * from PSPROJECTITEM where projectname='project name';
PSPROJECTITEM record will capture the objects present in the project only.
If you want to get the list of components, pages, rec, fields then you need to refer differernt tables. I am listing that below
SELECT * FROM PSPNLGROUP ; /* All the Components */
SELECT * FROM PSRECDEFN; /*All the records and views*/
SELECT * FROM PSPNLFIELD WHERE PNLNAME = 'H_HR_CHNG_ASGMNT'; /* Covers record and field associated in a page */
Thanks.
Hari.A
Post new comment