thanks Assume 2 State Records are assigned to an AE CTEST1AE
thanks
Assume 2 State Records are assigned to an AE. C_TEST1_AET which is SQL Table and Default State Record, And C_TEST2_AET which is Work Record. What would be the output for the below Program? MAIN Step1 DoSelect %Select (SNO, C_TEST2_AET.SNO) SELECT 10, 20 FROM PS_INSTALLATION PeopleCode MessageBox(0, \"\", 0, 0, \"C_TEST 1_AET - Process Instance: \" | C_TEST1_AET.PROCESS_INSTANCE.Value); MessageBox(0, \"\", 0, 0, \"C_TEST1_AET - SNO: \" | C_TEST1_AET.SNO.Value); MessageBox(0, \"\", 0, 0, \"C_TEST2_AET - SNO: \" | C_TEST2_AET. SNO. Value);Solution
Output would be
C_TEST1_AET - Process Instance: 123
C_TEST1_AET - SNO: 10
C_TEST2_AET - SNO: 20
