Monday, October 31, 2016

Campus Solutions 9.0 October 2016 Bundle #43 is now available.

Functional documentation is available for Campus Solutions Bundles on My Oracle Support PeopleSoft Campus Solutions 9.0 Documentation - Bundles, Feature Packs, Additional Features, and Other Releases (Doc ID 2047464.1). Select the link for CS 9.0 Bundle #43 Functional Documentation.

For information about the latest updates to PeopleBooks you can refer to Most Recent Versions of Campus Solutions 9.0 Chapters (Doc ID 1523915.1)

Current Adviser Webcasts Schedule and Archived Downloads can be found by going to My Oracle Support, PeopleSoft Enterprise Adviser Webcast Schedule and Archived recordings (Doc ID 1456265.1). The webcast related to this bundle is: PeopleSoft Financial Aid Regulatory 2017-2018 Release 2 (9.0 Bundle 43,9.2 PUM Image 3).

Monday, October 17, 2016

PeopleSoft HCM Update Image 19

This video provides highlights of many of the new features in PeopleSoft HCM Update Image 19


PeopleSoft FSCM Update Image 21

This video provides highlights of many of the new features in PeopleSoft FSCM Update Image 21.


Wednesday, October 12, 2016

Pausing Peoplecode Processing Using Java Class

Honestly, in my years and years of developing in PeopleSoft, I probably used this java class tips to pause my peoplecode processing time twice as far as I remember.

When I need it, this one comes pretty handy:

GetJavaClass("java.lang.Thread").sleep(1000);

Note: 1000 is in milliseconds, which equates to 1 second sleep time.

Monday, October 10, 2016

The PeopleSoft Global Payroll Fluid Payslip Video Feature Overview

PeopleSoft Global Payroll now includes the Global Payroll Fluid Payslip feature, that allows your employees to access and analyze their payslips on their smartphones. Now, your employees can review payslips in multiple currencies, and analyze all of the components of their payslip from their mobile devices, reducing the number of calls to Managers, the HR Department, and your Helpdesk.


HELP! My Custom Fluid Page NOT Rendering Correctly On My Phone

While PeopleSoft fluid or generally known as "Responsive Design" may be new to some but not to others, I thought I would share a little simple trick to get your custom fluid page to render correctly on a small form factor device, such as smart phone.

Building a fluid page needs a little bit of getting used to, but by far it is still a lot easier than building a responsive design web page from scratch. Thanks to PeopleTools for this handy tool, we can now build a "responsive design" page in minutes not hours.

After you built a "Hello World" fluid page from scratch, tested it on the browser, and everything looked good initially, you would think "WOW, I did it and woohoo!".

Sorry to pop your bubble, I will say don't get excited too fast. You are not done testing. Remember! why are you building a fluid page? What devices that most of your users will access your fluid page from?

One of the main reasons why you start building more fluid pages than classic nowadays is because you heard this phrase a lot "Think Mobile First".

So back to your testing exercise, browser testing is not enough, you need to test this in your mobile phone for a small form factor. If it looks good, then you can congratulate yourself and move on.

How do I know if it looks good or not? See my examples below:



The one on the left looks great and this is what you are hoping to see on your mobile phone too.

So, you start asking yourself, WHY?

Two screenshots below were captured from two fluid page source code. One on the left is good, one on the right is NOT.



Here is a solution for you. Go to the app designer and add these two lines of code in your page activate peoplecode.



Retest your new page now on your mobile phone. Congratulations! your page renders correctly.



Don't Forget...Think Mobile First!

Happy Coding...