Online Access Free 1Z0-242 Practice Test
| Exam Code: | 1Z0-242 |
| Exam Name: | PeopleSoft Application Developer II: App Engine and Integration |
| Certification Provider: | Oracle |
| Free Question Number: | 102 |
| Posted: | Aug 28, 2026 |
Here is a snippet of PeopleCode that uses the Fetch method of the SQL class.
&SQL = CreateSQL("Select EFFORT_AMT from PS_PSU_TASK_EFFORT where TASK= :1", PSU_TASK_TBL.TASK);
&Var1 = &SQL.Fetch(&Var2);
Select the two correct statements. (Choose two.)
You created a component interface based on a component that has a parent PSU_CRS_SESSN and one non-effective-dated child record PSU_STU_ENROLL.
The component interface PeopleCode was created by a developer and a snippet of that PeopleCode is as follows:
&oPsuStuEnrollCollection = &oPsuCrsEnroll.PSU_STU_ENROLL;
For &i = 1 To &oPsuStuEnrollCollection.Count
&oPsuStuEnroll = &oPsuStuEnrollCollection.Item(&i);
If &oPsuStuEnroll.ENROLL_STATUS = "ENR" then
&oPsuStuEnroll.ENROLL_STATUS = "RES";
End-if
End-For;
Which statement best describes what this snippet of PeopleCode is trying to accomplish?
View the Exhibit, which shows Code Set Values. You will be using these code set values for the ORDER_STATUS field between System A (sender) and System B (recipient).
Which code set group, based on the data displayed in the exhibit, needs to be associated with System A?
View the Exhibit that shows the message tree structure for the STUDENT_INFO message. Based on this structure, which two statements describe the message? (Choose two.)