Welcome Guest. Sign in or Signup

5 Answers

Restart Enabled App Engine

Asked by: 10834 views Application Engine

PeopleSoft Application Engine provides a Restart feature. This helps the App Engine to resume processing from where it had stopped earlier. How would you develop a Restart Enabled App Engine?

Related Questions

5 Answers



  1. anpvikas on Mar 08, 2012 Reply

    The entries about the previously failed App Engine is stored in PS_AERUNCONTROL table.

    0 Votes Thumb up 0 Votes Thumb down 0 Votes



  2. MATHURA on Apr 19, 2013 Reply

    select ‘Restart Enabled’ check box in App Engine properties

    +1 Votes Thumb up 0 Votes Thumb down 0 Votes



  3. nigam.abhishek on May 21, 2013 Reply

    uncheck disable restart checkbox in the progrm properties can make AE restartable but it only makes sense if we use a state record which is a SQL table and retains the values so that application engine could restart from the point it failed.

    +13 Votes Thumb up 0 Votes Thumb down 0 Votes



  4. Johny on Jul 29, 2016 Reply

    1.The Disable restart should be unchecked in application engine properties(Advance properties )
    2. The Disable restart should be unchecked in config manager , application engine tab
    3.One of the AET should be a SQL table
    4.Section type should be either prepare only or Critical updates
    5.In step level add Order by clause in sql
    6. Good to clear the temp tables after each process

    0 Votes Thumb up 0 Votes Thumb down 0 Votes



  5. Johny on Aug 31, 2016 Reply

    1. AET record need to be SQL table
    2. In program properties Disable restart need to be unchecked
    3. In Config Mngr -> Process Tab ,Disable restart need to be unchecked
    4.The Section type must be Prepare only /Critical Updates
    5.Add order by clause in the sql used
    6. if Temp tables are used better to clear the temp tables after the successful run.

    Thanks
    Johny

    0 Votes Thumb up 0 Votes Thumb down 0 Votes


Answer Question