The record that stores this information is PSPNLGROUP. So if you run the following query:
select * from PSPNLGROUP where PNLGRPNAME = 'JOB_DATA'
One thing that you may not want to see in your queries is the & character used for keyboard shortcuts. To strip these out you can use the REPLACE command in Oracle like so:
select REPLACE(ITEMLABEL, '&', '') as ITEMLABEL from PSPNLGROUP where PNLGRPNAME = 'JOB_DATA';
By the way pages used to be called panels and components used to be called panel groups which is why the PeopleTools record and field names aren't what you would expect.
No comments:
Post a Comment