Improving Performance
The PeopleSoft Online Help website is set up to handle all installed product families. However, if you do not have all product families installed, you can optionally disable unneeded product families to improve performance for some browsers. To do this, modify the docroot/js/common.js file and comment out the unneeded product families. You can find the product families in the section titled “Product line code array.” To comment out a product family, add two slashes (//) at the beginning of the line for each prodlines entry in the array.
In the following example, Customer Relationship Management (crm), Campus Solutions (cs), and Portal Solutions (ps) are commented out (highlighted in bold):
/* * Product line code array * Uncomment lines for product line that are not installed. */ var prodlines = new Array(); //prodlines[prodlines.length] = "crm"; //Customer Relationship Management prodlines[prodlines.length] = "elm"; //Enterprise Learning Management prodlines[prodlines.length] = "epm"; //Enterprise Performance Management prodlines[prodlines.length] = "fscm"; //Financials Supply Chain Management prodlines[prodlines.length] = "hcm"; //Human Capital Management //prodlines[prodlines.length] = "cs"; //Campus Solutions prodlines[prodlines.length] = "pt"; //PeopleTools //prodlines[prodlines.length] = "ps"; //Portal Solutions