Tag Archives: Events
Think-time functions in PeopleSoft
Think-time functions in PeopleSoft, unlike other functions suspend the component processing for a while. This post discusses think-time functions in detail and where not to use them.
PeopleCode Events
Be it big or small, business logic is coded into PeopleSoft applications by means of PeopleCode events. Though not all of them are extensively used, a PeopleSoft developer should be… Read more
PeopleCode FieldEdit Event
FieldEdit PeopleCode fires for the field and the row that just changed. So, to validate the input entered by a user into a field, you may write PeopleCode in the FieldEdit event of that particular filed.
PeopleCode Events: FieldFormula
The PeopleCode Event FieldFormula can get triggered in many different contexts and can execute the PeopleCode on every filed on each row in the Component Buffer. As this can degrade the performance of the system considerably, this event is hardly used.
PeopleCode Events: FieldDefault
If you want to set a default value to a field on your page from PeopleCode, then FieldDefault PeopleCode event is the place that you should be looking for. FieldDefault PeopleCode can be associated with record fields and component record fields.
PeopleCode Event: FieldChange
The PeopleCode FieldChange event fires just after a change to the contents of a field has been made. It fires on the particular field that has changed. You can find the FieldChange event in Record Fields as well as Component Record Fields.
PeopleCode Event: Page Activate
Pages in PeopleSoft have an Activate event that gets fired every time you navigate to the page. If there are multiple pages in a component, this event fires each time… Read more