Wednesday, July 24, 2013

ELM Full Sync Integration Guided Process : VFO from Oracle

Oracle have posted a VFO on ELM Full Sync Integration Guided Process.

Watch it here.



New PeopleSoft Video Feature Overview (VFO) Homepage

As you might know already, VFOs are short and concise videos which demonstrates new functionality in PeopleSoft Applications.

Oracle's PeopleSoft Info Dev team have launched a new home page for PeopleSoft VFOs here.

Check it out.



PeopleTools Patch

Oracle had released new patches for PeopleTools 8.51, 8.52 and 8.54 last week.

All of the below listed patches are available via MOS.

PeopleTools 8.51.24
PeopleTools 8.52.17
PeopleTools 8.53.05

So are you gonna apply PeopleTools patch yet or have you applied it already?

Wednesday, July 10, 2013

PT 8.53 Integration Network : VFO from Oracle

Here is yet another interesting Video Feature Overview from Oracle. This time, it's on PeopleTools Integration Network in PeopleTools 8.53.

Tuesday, July 2, 2013

Shortcut for Record Field name

Since there is no code completion feature available in PeopleTools App designer (at least as of PT8.53), we need to write the complete record field names when we want to use them in the PeopleCode.

For example if you would want to set the style property of the field, then you would need to write,

JOB.POSITION_NBR.Style = "PSERROR";

If you are writing the piece of code in any events associated with JOB.POSITION_NBR field, then you can write ^ (caret) instead of the record field name. Upon saving the PeopleCode, ^ (caret) will be converted to the record field name.


^.Style = "PSERROR";