The only Peoplecode events you should be using

By Chris Malek | Mon, Nov 7, 2011

When designing pages and components in PeopleTools, there are many different peoplecode events that you can use. In fact, there are too many options. We write alot of PeopleCode and here is our opinion of where 95% of your code should be. You generally want to place 99% of your code at the component level and not at the record level.

PeopleCode events to use

  • Component PostBuild
    • For code you need to trigger once when the component loads.
  • Component SavePostChange
    • For updating other records and sending notifications after the transaction has committed.
  • Component Record FieldChange
    • For record field change peoplecode. Add it at the component level always not at the record level. If you need the same behavior across components, then create a function.
  • Component Record RowInit
    • For logic you need to trigger when a row is loaded from the database. Add it at the component level always not at the record level. If you need the same behavior across components, then create a function.
  • Component Record SaveEdit
    • For enforcing valid fields and such. Notice we do not add it at the component record.field level. We have every piece of validation logic in one event so it is easier to modify later.

PeopleCode Events to avoid

These are the events where you generally do not want to place any code.

Addtional Reading

Effectively Organizing your PeopleCode

Article Categories
Author Info
Chris Malek

Chris Malek is a PeopleTools® Technical Consultant with two decades of experience working on PeopleSoft enterprise software projects. He is available for consulting engagements.

About Chris Work with Chris
Looking for pain-free PeopleSoft web services? 😀
PeopleSoft Simple Web Services (SWS)

Introducing a small but powerful PeopleSoft bolt-on that makes web services very easy. If you have a SQL statement, you can turn that into a web service in PeopleSoft in a few minutes.

Book
Integration Broker - The Missing Manual

I am in the process of writing a book called "Integration Broker - The Missing Manual" that you can read online.