3/02/2012

Browscap.properties file does not exist


While accessing PeopleSoft site getting following error 
Browscap.properties file does not exist

For example
Http://localhost:8080/ps/signon.html : Browscap.properties file does not exist

Windows 7 comes with Internet Explorer 8 by default in most countries. You might have come across some PeopleSoft website that are not properly displayed in Internet Explorer 8, this is because these websites were designed for older version of Internet Explorer. Microsoft has addressed this issue in Internet Explorer 8 with Compatibility View feature which helps make websites that are designed for older browsers look better in Internet Explorer 8. 

How to turn on the windows 7 or higher version of Internet Explorer Compatibility View :
First of all launch the Internet Explorer, and then Click on the Tools Menu Bar item on the top of the Internet Explorer browser. Here, you will see a list of options, select the Compatibility View option to enable the compatibility View. 
                                                
 


 

2/16/2012

AllowEmplIdChg Function


Syntax: AllowEmplIdChg (is_allowed)

By default, the Component Processor does not allow an user to make any changes to a record if a record contains an EMPLID key field and its value matches the value of the user’s EMPLID. 

(I.e.) By default Employee cannot make changes his/her own data even if he/she is in correct history mode, however he can make changes to other Employee record. For example, if the EMPLID is KU0007 and he is searching for his data in search page once he entered into the component. If he tries to change his data he will get the following message when he tries to save

You are not allowed to update your own data. (15, 13)

You attempted to save a record containing an Emplid field whose value matched the value defined in your operator profile.  The system does not allow you to update your own data.  Contact another authorized user to update your data, or contact your system administrator to enable this edit to be overridden
 
However other employee can make changes to KU0007’s data. This is PeopleSoft Inbuilt function.

In some situations, though, such changes are warranted. For example, you would want employees to be able to change information about themselves when entering time sheet data.
This AllowEmplIdChg function enables the user to change records whose key matches the user’s own EMPLID, or prevents the user from changing these records.

The function takes a single Boolean parameter 
  • When the parameter set to True allows the employee to update their own data.
  • When the parameter is set to False, the employee is prevented from updating this data.
After permission is granted, it stays through the life of the component, not the page.
Conditions for AllowEmplIdChg
  1. EMPLID should be in that record.
  2. EMPLID should be key in that record.
  3. EMPLID should be set as Required in record field properties.
  4. In the component buffer the value of the EMPLID matches to the value of the user’s EMPLID.