What is PeopleCode events?
The Activate event segregates PeopleCode that is related to a specific page from the rest of the application’s PeopleCode. Place PeopleCode related to page display or page processing, such as enabling a field or hiding a scroll area, in this event.
What is PreBuild and PostBuild?
James Barril Posted June 12, 2008. PreBuild and PostBuild aren’t only used for hiding or unhiding pages. The main difference really is that PreBuild fires before any peoplecode code event on all the rows and fields in the component such as FieldDefault and RowInit. PostBuild runs after that.
What is PeopleSoft think time function?
Think-time functions are PeopleCode functions that suspend PeopleSoft processing to wait for an external event (user input, an external process to complete etc). PeopleBooks strongly recommends not using think-time functions in certain PeopleCode events.
What is sequence of events triggered in PeopleCode?
Field default attempts to set defaults for fields without a value. Field formula performs, after field default completes successfully. Rowinit is used to initialise the rows.Postbuild peoplecode performs after all the component build events have performed. Activate event is fired everytime the page is activated.
What is the PeopleCode program?
PeopleCode is a proprietary object-oriented programming language used to express business logic for PeopleSoft applications. Syntactically, PeopleCode is similar to other programming languages, and can be found in both loosely-typed and strongly-typed forms.
What is PreBuildEvent?
PreBuildEvent. This event executes before the build begins. PreLinkEvent. This event executes before the link step begins.
What is the use of state record in PeopleSoft?
State records are used in Application Engines as a storage location for data that needs to be passed across actions. An Application Engine can have more than one state records (a maximum of 200) associated with it out of which only one can be marked as a default state record.
What is Oracle and PeopleSoft?
PeopleSoft is a software that’s part of the Oracle software product line. The PeopleSoft application was originally designed for finance and human resources support, but over time, it has gone on to include more tools and applications for general business operations.
Where does itemselected PeopleCode execute in PeopleSoft?
In pop-up menus, ItemSelected PeopleCode executes in the context of the page field from where the pop-up menu is attached, which means that you can freely reference and change page fields, just as you could from a button. Note: This event, and all its associated PeopleCode, does not initiate if run from a component interface.
How does rowinit and fieldchange PeopleCode work?
In these RowInit/FieldChange pairs, the RowInit PeopleCode checks values in the component and initializes the state or value of page controls accordingly. FieldChange PeopleCode then rechecks the values in the component during page execution and resets the state or value of page controls.
How is activate event related to PeopleCode in Oracle?
The Activate event segregates PeopleCode that is related to a specific page from the rest of the application’s PeopleCode. Place PeopleCode related to page display or page processing, such as enabling a field or hiding a scroll area, in this event.
What do you call an event triggered by a PeopleCode program?
The term PeopleCode event should now be used instead. However, it’s often convenient to qualify a class of PeopleCode programs triggered by a specific event with the event name; for example, PeopleCode programs associated with the RowInit events are collectively referred to as RowInit PeopleCode.