An Application Engine program inserts rows into PS_VENDOR. The program encounters an error and abends (ends abnormally). You correct the error, but now
PS_VENDOR is in an unknown state. Select the correct statement.
You add a dynamic call to an Application Engine program following these steps:
Add the fields AE_APPLID and AE_SECTION to the state record if they are not already present.
Build the state record.
Verify that the state record is the default state record for the Application Engine program.
In a PeopleCode action, use a conditional test to populate the fields AE_APPLID and AE_SECTION with an Application Engine program name and section name,
respectively.
Following the PeopleCode action, add a Call Section action. Select the correct statement.
An Application Engine program requires a loop that will exit after 1000 rows have been processed. The COUNTER field in the state record is incremented in each
iteration of the loop. Which option contains code that could be used in a Do While action to test for COUNTER?
An Application Engine program section uses a SQL Select statement to select fields from the CUST_ORDERS table, and then calls a section that uses a SQL Insert
statement to update the CUST_HISTORY table based on those fields. How are the field values passed between the SQL statements?
An Application Engine program has a SQL action with the following code: INSERT INTO %Table(AETEST_TAO) (PROCESS_INSTANCE , AE_INT_1 ,
AE_APPLID , AE_SECTION) SELECT %ProcessInstance , %Bind (AE_INT_1) , %AEProgram , %AESection FROM PS_INSTALLATION
What is the purpose of the %Table construct?