GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Peoplesoft  >  PeopleTools

 Print  |  
Question:  what is the use of temporary records and state record in application engine



October 10, 2009 09:26:36 #4
 bandisdevi   Member Since: April 2008    Total Comments: 14 

RE: what is the use of temporary records and state record in application engine
 

Temporary table: To allow other users to access the same table that has been using by the AE program. These are mainly used in batch processing. These can store specific data to update without affecting the main application table. This is a database object. To increase the performance of AE program. Used to process data of tables having huge amounts of data in less time.

State record: We can use to pass variables between sections to section. Process instance is the mandatory field. We can insert the data into state record through %select, %selectinit. We can retrieve the data from the state record through %bind. The name of the state record must end with AET. When the AE program completes successfully, the row of data in the state record is deleted.

     

 

Back To Question