Welcome Guest. Sign in or Signup

3 Answers

Parallel Processing in App Engine

Asked by: 6891 views Application Engine

Parallel processing is a means of completing a huge task fast by splitting it into multiple parts and then doing many of them simultaneously. Does PeopleSoft Application Engine support parallel processing? How can you achieve this in Application Engines?

Related Questions

3 Answers



  1. Ravi on Apr 05, 2013 Reply

    PeopleSoft application engine supports parallel processing. This can be achieved by use of temporary tables.

    One possible way to implement this is – partition the data on key fields. Run the AE process for parameters which will access only one or set of partitions. In such cases each AE instance processes it’s own set of data using a dedicated temporary table instance.

    +6 Votes Thumb up 0 Votes Thumb down 0 Votes



  2. suresh on Apr 20, 2014 Reply

    first of all we have to devide the the actual data into suitable parts (4 to 6 ) are recommended.
    and then we have to crate instances to each part

    +1 Votes Thumb up 0 Votes Thumb down 0 Votes

  3. Best Answer


    bude on Feb 27, 2019 Reply

    The parallel processing can be performed by using Temp table.This can be achevied by following steps:

    1)Define a Temp record.
    2)Set the instances in online pools(PIA->peopletools)
    3)Add the temp table in application engine property tab.
    4)Add the instances in batch pool indicates dedicated temp table.
    5)Build the temp table.Finally through %Table we can refer table instances which share created by temp table.

    0 Votes Thumb up 0 Votes Thumb down 0 Votes


Answer Question