Sunday, October 24, 2010
Application Server failed to boot
Posted by Alok.Bhardwaj at 10:02 PM 0 comments Links to this post
Labels: AIX, application server, JRE
PeopleTools client error on workstation
Posted by Alok.Bhardwaj at 9:59 PM 0 comments Links to this post
Labels: client, PeopleTools, vcredist_x86.exe
Oracle installation hangs
Posted by Alok.Bhardwaj at 9:55 PM 0 comments Links to this post
Labels: hangs, installation, Oracle
Tip on Oracle 11.1.0.6 installation on AIX 6.1
package value="xlC.aix50.rte" version="9.0.0.0"
Posted by Alok.Bhardwaj at 9:51 PM 0 comments Links to this post
Monday, September 20, 2010
Bind Variables on PeopleSoft Home Page
resolution (Resolution # 1, copied from Oracle PeopleSoft Metalink site)
From PT 8.48 and above, one will not be able to find out the record WEBLIB_MENU. The design has been changed. Below is another resolution (Resolution # 2) how to pass the bind
variables like User ID, Instance name etc on the home page.
Resolution # 1 (Prior to PT 8.48, Oracle PeopleSoft Metalink, resolution ID # 623430.1)
E-PIA : How do you add/modify bind variables to change the look and feel. [ID 623430.1]
Resolution # 2 (PT 8.48 and above)
1. Open up App Package PT_BRANDING > Class BrandingBase in application designer. Search for the string ‘add &addjs’. Add the below code above the comment which contains the string ‘add &addjs’:
&greeting = "User: " %UserId " in Database: " %DbName;
/* Added to show the bind variables on the home page */
&greeting = "User: " %UserId " on Database: " %DbName;
/* add &addjs to PT_IFRAME_HDR_SWAN (bind 22) and PT_IFRAME_HDR(bind 23) */
If this looks fine in presentation, its okay, however, the style/font of this variable "&greeting" can be taken care by PSHOMEPAGE Style Sheet
2. Open the PSHOMEPAGE Style Sheet in application designer, locate the "greeting" style class and replace this piece of code with the below code:
/*.greeting {
color: #FFFFFF;
font-family: Arial, Helvetica, sans-serif;
font-size: 12pt;
font-weight: bold;
}*/
/* Customized for the home page bind variables looks*/
.greeting {
color: #FFFFFF;
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
font-weight: bold;
}
The above delivered code is commented and below is the customized one. You can use more alterations according to your choice.
Hope this will be of some help.
Cheers!!!
Posted by Alok.Bhardwaj at 5:51 AM 0 comments Links to this post
Labels: Bind Variables, Home Page, PeopleSoft Telephone format
Thursday, January 21, 2010
Folder and content missing on Portal
This is a very common issue when a new page/component get transferred from one instance to another or when someone create a new component. Portal registry index plays a major role in that and that is why sometimes after migration, we find the migrated content is not visible. For the same, below are some steps which needs to be done.
1. Bouncing the webserver and clearing its cache
This is required to get the new or migrated component on the portal. Webserver gets the information of the new object and reflect the same. For the cache, you can also specify the Cache Stale Interval value under PeopleTools > Web Profile > Web Profile Configuration. On the caching tab there is the Cache Stale Interval value. By default this is set to 86,400 seconds or 24 hrs. You will also want to uncheck the caching boxes on this page.
2. Manual solution
If bouncing the webserver is not a feasible solution, below steps can be done.
-- Go to the Structure and Contents. PeopleTools > Portal > Structure and Contents.
-- Click on appropriate content which is not coming up.
-- Change its sequence number from zero to something else.
-- Save.
-- Go back to the same content again.
-- Change its sequence number back to zero.
-- Save.
-- Signout from the application.
-- Clear your browser's cache.
-- Signin again and check.
From Peoplebooks about the Browser Cache settings
Browser cache can be set for either the user or the entire system. There are a few methods that may help, however it is recommended that in a production environment, unless you are using a kiosk situation or users are sharing computers, that you leave the defaults of these cache settings as delivered.
This type of caching is held in browser cache for the time specified or when a forced refresh occurs. By default this is set to 900 minutes. To change this setting, for everyone, do the following:
a) Navigate to PeopleTools->Personalization->Personalization Optionsb) Enter PPTL for the Option Category Levelc) Click the View All link on the gridd) Click the Format tab on the gride) Click the Set Option Default Value link for the METAXP User Optionf) To disable, set the default value to 0g) Signout of the current session, Delete browser cache, and sign back in for the change to take effect.
The app server or web server does not have to be rebooted for this to take.
NOTE:
To set this option for just the user logging on you need to go to the My Personalizations link at the bottom of the Portal menu structure and choose General options. Then set the override value of the Time page held in cache to 0. This does NOT require an app server reboot however you will need to delete your browser cache.
Posted by Alok.Bhardwaj at 2:56 AM 4 comments Links to this post
Labels: content missing, Portal folder
Monday, July 13, 2009
SchedulerTransfer servlet - posting issue
Issue: Distribution agent failed to post the files to report repository.
Error message: The XML file returned by the web server is invalid. XML document object creation failed.
Solution: This is an issue with SchedulerTransfer servlet which requires authentication. When a report needs to get transfer to report repository, distribution agant use SchedulerTransfer servlet for this purpose. SchedulerTransfer servlet checks for the default local node and if there is no authentication there, it will get fail. The Default Local Node must have the Authentication Option set to 'Password'. Application server needs a restart post this change.
Navigation below...
Peopletools > Integration Broker > Integration Setup > Nodes > Default Local Node must have Password Authentication
PeopleTools->Portal- > Node Definitions
Posted by Alok.Bhardwaj at 9:22 PM 1 comments Links to this post
Labels: Posting, Process Scheduler, Report Distribution
