...
Current Batch class by AQ (Managed packaged), code is hidden, thus, we cannot control the default size of the batch which is 10
There are Process Builder and Flow by AQ which design is are also hidden - LIST DOWN NAME HERE anderson.pagtabunan Aldrin Rasdas (UofSyd) :
Contact Default CAE Category
tbc--
One Usyd flow that were disabled to isolate testing
USYD_Transactions_afterInsertUpdate
...
Created Batch record with Batch items and transaction records comparable to original related Production record.
Closed batch and received error on Utility Log (CPU limit not indicated on Details as UAT has different AQ package version).
Close the batch record using anonymous Apex script
Code Block |
---|
String smartBatchId = 'a0ZBm000000AdT7MAK'; |
...
AQB.ProcessBatchItems aqSmartBatch = new AQB.ProcessBatchItems(smartBatchId); |
...
Database.executeBatch(aqSmartBatch, 1); |
4. Received a successful log.
...