List/Grid

Tag Archives: Index

PeopleSoft Component Interface

PeopleSoft Component Interface

PeopleSoft Component Interface (CI) exposes a PeopleSoft Component for synchronous access to other applications written in PeopleCode, Java or C++. We can consider CI as the means by which PeopleSoft enforces encapsulation by limiting external access to just what is made available through the CI and nothing more.

PeopleSoft Standalone Rowsets

PeopleSoft Standalone Rowset

If we need to access data in records that are outside of the component buffer, we need to use Standalone Rowsets. This post will take you through the steps involved in creating and manipulating data using standalone rowsets.

PeopleSoft Subrecords

PeopleSoft Subrecord

PeopleSoft Subrecords are collection fields that are grouped together into one entity so that they can be used as building blocks for multiple records. Subrecords doesn’t have an existence in… Read more »

PeopleSoft Data Mover

PeopleSoft Data Mover

PeopleSoft Data Mover, as the name suggests, is a PeopleTool that is used to import / export data between databases. Apart from this, Data Mover can be used for a variety of functions.

Peoplesoft Component Buffer

PeopleSoft Component Buffer

Component Buffer is the area in the memory that stores data associated with the presently active component. When a page in any component is opened, the system retrieves all of the data records for the entire component and stores them in one set of record buffers, organized by scroll level and then by page level.

PeopleSoft Application Engine

PeopleSoft Application Engine is a PeopleTool used to carry out background SQL processing. Application Engines are neatly structured into blocks and offer an alternative to writing COBOL or SQR programs for background SQL processing. Application Engine has five types of programs. We can specify the type in the Program Properties dialog box for your program definition.

PeopleCode Events

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

PeopleCode is an object-oriented proprietary language used to express business logic for PeopleSoft applications. Though PeopleCode resembles programming languages, some aspects of the PeopleCode language are specifically related to the… Read more »

PeopleSoft State Records

PeopleSoft State Record

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… Read more »

PeopleSoft Search Record

A search record is a very import part of the component processing. In this post, I will tell you what its relevance is and how making changes to a search record can affect the search page.