Home arrow Discussion Forum
psadmin.org
Welcome, Guest
Please Login or Register.    Lost Password?
*Unchanged in Compare Reports (1 viewing) (1) Guest
Go to bottom Post Reply Favoured: 0
TOPIC: *Unchanged in Compare Reports
#127
Guest (Visitor)
Click here to see the profile of this user
Birthdate:
*Unchanged in Compare Reports 2 Years, 2 Months ago  
Hello

I am using PT - 8.18, HRMS - 8.3 and Oracle Database 9. I compared a project between dev and test databases. After Comparision , the app designer shown *Unchanged in source and *Unchanged in Target for one peoplecode object. When I see the code behind this peoplecode , it has some difference between source and target. But, I am just wondering what exactly *Unchanged mean in both source and target.
Please let me know.

Thanks
Enter code here   
Please note, although no boardcode and smiley buttons are shown, they are still useable
 
Logged Logged  
  Reply Quote
#157
Praveen Joshi (Visitor)
Click here to see the profile of this user
Birthdate:
Re:*Unchanged in Compare Reports 1 Year, 9 Months ago  
*unchanged in target Environmen means LASTUPDATEDATETIME stamp of target is less that of source and the object is modified by the user.
Enter code here   
Please note, although no boardcode and smiley buttons are shown, they are still useable
 
Logged Logged  
  Reply Quote
#234
Rohit Talwar (Visitor)
Click here to see the profile of this user
Birthdate:
JOLTPOOLING 3 Months, 2 Weeks ago  
Just want to share, this is how the JOLTPOOLING is being taken care at the servlet level, this same snippet is being used in the all the servlets like psc, psp, SchedulerTransfer, PSAttachServelt, etc. We disable/enable them at the servlet basis only in web.xml. Whereas the web.xml act as the servlet configuration file and even also also termed as weblogic descriptors files (web.xml, weblogic.xml). Once you make this change then this snippet is called in in the respective servlet. For reading these codes, we need to use the Java Dcompiler to read all the servlet files at the location (PS_HOME\webserv\peoplesoft\applications\peoplesoft\PORTAL\WEB-INF\classes\psft\pt8) to understand the JOLTPOOLING, how it has been embeded in all the servelets meant for PeopleSoft. In WL console, we would find the link for JOLTPOOLING but it would be empty as in Peoplesoft JOLTPOOLING is being taken care at the servlet level.





public void init(ServletConfig servletconfig)

throws ServletException

{

super.init(servletconfig);

PIAContext piacontext = PIAContext.getPIAContext();

piacontext.init1(servletconfig);

CacheUtil.loadCacheContext(piacontext);

configDir = servletconfig.getInitParameter("configDir");

PSAuthenticator.initConfiguration(servletconfig);

String s = servletconfig.getInitParameter("joltPooling");

if(s != null)

{

LoginInfo.setJoltPooling(s);

} else

{

LoginInfo.setJoltPooling("false");

}

String s1 = servletconfig.getInitParameter("maxPoolSize");

if(s1 != null)

{

LoginInfo.setMaxPoolSize(Integer.valueOf(s1).intValue());

}

log = Logger.getSingleton();

config = servletconfig;

}
Enter code here   
Please note, although no boardcode and smiley buttons are shown, they are still useable
 
Logged Logged  
  Reply Quote
Go to top Post Reply
Powered by PsAdmin.orgget the latest posts directly to your desktop
© 2010 PSADMIN.org
PSAdmin.org is for & by the PeopleSoft Administrators to share their Experience.