How To Change PS stylesheet using SQL | PeopleSoft Tutorial
1

How To Change PS stylesheet using SQL

Stylesheets as the name suggests is the piece of code that adds style to your PeopleSoft application. When you log into PeopleSoft application, all the menus, colors , design are controlled by stylesheets. PeopleSoft application comes with a default stylesheet which can vary between different Application releases.

Here are the default stylesheets for different PS application versions:

  • 9.0 and earlier – PSSTYLEDEF
  • 9.1 – PSSTYLEDEF_SWAN
  • 9.2 – PSSTYLEDEF_TANGERINE

If you wish, you can also change the default stylesheet to meet your requirements. Here is the post on how to change PeopleSoft stylesheet when logged into PeopleSoft application. 

Recently I was doing some testing in PeopleSoft Update Manager Image and by mistake made some incorrect changes to stylesheet. Default stylesheet was PSSTYLEDEF_TANGERINE and I changed it to DEFAULT_THEME_TANGERINE_ALT and saved my changes.

When I logged in again, I got all kind of errors related to stylesheets. Here are the errors :

Page Style Create failed for page PTPG_PGVIEWER .
The runtime processing code was unable to create a style for this page. For iClient this likely means that default page style is missing in the stylesheet. 

PeopleSoft Home screen was pretty messed up and I couldn’t do anything. Even the Navbar wasn’t loading properly.

As system wasn’t letting me to navigate to PeopleTools to fix the stylesheet, I knew I had to do it at backend or had to redeploy the PS image again (which I had no desire to).

So here is how I fixed it.

PeopleSoft Stylesheet information is stored in a delivered PeopleTools table i.e. PSOPTIONS. To find out the current stylesheet you can run following SQL.

SELECT STYLESHEETNAME FROM PSOPTIONS;

Now to update this stylesheet run the update command to change it back to desired stylesheet. In my case, I knew the default stylesheet was PSSTYLEDEF_TANGERINE.

UPDATE PSOPTIONS SET STYLESHEETNAME=’PSSTYLEDEF_TANGERINE’;
COMMIT;

Restart you PS application and try again. It will most likely fix your issue.

Please be very careful when updating delivered PeopleTools changes as incorrect updates can drastically impact your PeopleSoft application.

Prashant
 

  • CamiloCV says:

    Tks !!, you save my live! It work 100% for me

  • >