1.
Logical transformations are required to _____.
2.
You created a component interface with the standard methods of Create, Find, Get, Cancel, and Save. You secured the component interface and provided full access to all the methods. You want to test the GET method to access the online information. Which three steps will you use to test the GET method? (Choose three.)
3.
You created a component interface and now must implement it on an online component. The PeopleCode must instantiate the component interface. Which five steps are needed to instantiate the component interface? (Choose five)
4.
You created a component interface based on a component that has a parent PSU_STUDENT_TBL and one non-effective-dated child record PSU_STUDENT_EXP.
The component interface PeopleCode was created by a developer and a snippet of that PeopleCode is as follows: &oPsuStudentExpCollection =
&oStuProfile2.PSU_STUDENT_EXP; &item = &oPsuStudentExpCollection.ItemByKeys("PT"); If &item <> Null Then &j = &item.ItemNum; &oPsuStudentExp =
&oPsuStudentExpCollection.Item(&j); If &oPsuStudentExp.SKILL = "PT" And &oPsuStudentExp.PROFICIENCY = "L" Then &oPsuStudentExp.PROFICIENCY =
"M"; End-If; Else&oPsuStudentExp = &oPsuStudentExpCollection.InsertItem(1); &oPsuStudentExp.SKILL = "PT"; &oPsuStudentExp.PROFICIENCY = "M";
&oPsuStudentExp.DATE_LAST_MAINT = PSU_CRS_SESSN.END_DATE; End-If;
Which statement best describes what this snippet of PeopleCode is trying to accomplish?
5.
You are asked to create a new service operation that will enable a third-party system to inquire on an item price and receive the response in real time. Which
operation type would you use when you create the service operation?
6.
You have been asked to create the handler for an asynchronous service operation that is being sent outbound to several external nodes. When the service
operation is sent, you need to be able to add criteria to filter the nodes. Which method will you implement in the handler PeopleCode to accomplish this?
7.
You have recently installed PeopleSoft HCM system. To populate employee information into the PERSONS table from your legacy system, you will read in a CSV flat file. Which are the four steps you need to create the file layout on the HCM system to import the data? (Choose four.)
8.
Which IntBroker class method do you use to send a synchronous request?
9.
You have been asked to import a CSV file. You create the file layout definition for the record structure and enter your default file name on the Preview tab. When
you preview the file, only the first column of the preview grid is populated. What will you do to correct this problem?
10.
When you service-enable a component interface, the request message shape for the Get method contains _____.