PeopleSoft Application Developer II Application Engine & Integration

Page 1

Oracle

1Z0-242

PeopleSoft Application Developer II: Application Engine & Integration Click the link below to buy full version as Low as $25 http://www.examkill.com/1Z0-242.html

ExamKill is team of experienced and educated professionals working day and night to develop preparation material for different fields in IT. These industries are including HP, IBM, Comptia, Orcale, Apple, Adobe, Nortel, Novell, Checkpoint etc with the following features.

Free Samples:

Free samples download are available for almost every product to check before

buy.

Complete Course Coverage: Experienced professionals are making sure to cover complete course so that you pass final exam.

Updated Material: Preparation material is updated and new; you can compare us with other providers in the same industry.

Privacy Protection:

Examkill team makes sure not to reveal your private information

including your credit card and other secret information.

Excellent Customer Support: You will get reply from examkill support within 8 hours for all your questions/concerns about anything.

www.examkill.com


Question: 1 Evaluate this PeopleCode snippet. Local Array of Number &MyArray;Local Any &Len, &Result; &MyArray = CreateArray(3); &MyArray[1] = 100; &MyArray[2] = 200; &MyArray[3] = 300; &Result = &MyArray.POP(); &Len = &MyArray.LEN; &End = &MyArray[&Len]; What are the correct values for &Result and &End? A. &Result is 300 &End is 200 B. &Result is 300 &End is Null C. &Result is 300 &End is 300 D. &Result is Null &End is 300 E. &Result is 100 &End is 300

Answer: A Question: 2 View the Exhibit.

http://www.examkill.com/1Z0-242.html

Adobe Apple Cisco CompTIA HP EMC IBM Microsoft Oracle Juniper

2


An object-oriented PeopleCode program traverses the data buffer to get the value for Session Number (SESSION_NBR) in the Session Details record (PSU_CRS_SESSN) on the Course Sessions page. The program uses a built-in function to instantiate the Level 0 object, then uses object methods to instantiate the remaining data buffer objects. Select the option that represents the order in which the program instantiates the data buffer objects. A. &Row_Level0, &Row _Level1, &Record, &Field B. &Rowset_Level0, &Row_Level1, &Record, &Field C. &Rowset_Level0, &Rowset_Level1, &Row_Level1, &Record, &Field D. &Rowset_Level0, &Row _Level0, &Rowset_Level1, &Row _Level1, &Record, &Field

Answer: D Question: 3 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.) A. &Var2 specifies which row to fetch. B. &Var2 specifies which field to fetch. C. &Var1 is populated with TRUE if a row is fetched. D. &Var1 is populated with the number of rows returned. E. &Var2 is populated with EFFORT_AMT from the row fetched. F. &Var1 is populated with EFFORT_AMT from the row fetched. G. &Var1 is populated with EFFORT_AMT from the first row returned.

Answer: C, E

http://www.examkill.com/1Z0-242.html

Adobe Apple Cisco CompTIA HP EMC IBM Microsoft Oracle Juniper

3


Question: 4 The Customer Orders page uses data from the ITEM table to perform price calculations. You decide to write a PeopleCode program to create a stand-alone rowset that will load data from the ITEM table into the data buffer. Select three PeopleCode statements that can be used with stand-alone rowsets. (Choose three.) A. &RS_Item = GetRowSet(SCROLL.ITEM); B. &RS_Item = CreateRowSet(RECORD.ITEM); C. &Price = &RS_Item(&i).ITEM.PRICE.Value; D. &RS_Item.Select("Where ITEM = :1", CUST_ORDER.ITEM); E. &RS_Item.Fill("Where CUST_TYPE = :1", CUST_ORDER.TYPE); F. &RS_Item = ScrollSelect(1,Scroll.ITEM, Record.ITEM, ("Where CUST_TYPE = :1", CUST_ORDER. CUST_TYPE);

Answer: B, C, E Question: 5 View the Exhibit.

On the Employee Review page, you have a business rule with these requirements: If Review Type is Supervisor, then the prompt for Reviewer ID returns only supervisors. If Review Type is Peer or Performance, then the prompt for Reviewer ID returns all employees. Select the three steps required to implement this business rule. (Choose three.) A. Associate the REVIEWER_ID field with REVIEWER_VW. B. Create REVIEWER_VW as a dynamic view of the EMPLOYEE table. C. Add the DERIVED.EDITTABLE field to the page and make it invisible. D. Set the prompt table edit for the REVIEWER_ID field to REVIEWER_VW. E. Set the prompt table edit for the REVIEWER_ID field to DERIVED.%EDITTABLE. F. Use a SQL Select statement in PeopleCode to populate the REVIEWER_VW view.

http://www.examkill.com/1Z0-242.html

Adobe Apple Cisco CompTIA HP EMC IBM Microsoft Oracle Juniper

4


G. Use a conditional statement in PeopleCode to populate the DERIVED.EDITTABLE field.

Answer: C, E, G Question: 6 You want to examine the component buffer for the Customer Orders (PSU_CUST_ORDER ) component. Which four steps are necessary? (Choose four.) A. Start the PeopleCode Debugger and set a breakpoint. B. Access the Structure view on the PSU_CUST_ORDER component. C. In Application Designer, select Component Buffers. D. Access the Customer Orders component in the browser and trigger the breakpoint. Return to PeopleSoft Application Designer when the breakpoint triggers. E. Open, or create, a PeopleCode program that will execute while Customer Orders is running in the browser. F. Drill down through the component hierarchy in the Structure view on the PSU_CUST_ORDER component. G. In Application Designer, select Debug, View Component Buffers.

Answer: A, D, E, G Question: 7 View the Exhibit. Your client is upgrading its purchasing application to use object-oriented PeopleCode to incorporate the benefits of application classes. The PeopleCode for the Purchase Order application is now encapsulated in an Application Package called PSU_PO. The assign_order_nbr function is now ORDER_NBR, a method of the ORDER class. You are tasked with modifying this program to call the new ORDER_NBR method.

http://www.examkill.com/1Z0-242.html

Adobe Apple Cisco CompTIA HP EMC IBM Microsoft Oracle Juniper

5


Which four PeopleCode statements will you use in the new program? (Choose four.) A. Class PSU_PO:ORDER; B. &New.ORDER_NBR(PSU_PO_HDR.ORDER_NBR); C. Import PSU_PO:ORDER; D. Declare method PSU_PO:ORDER:ORDER_NBR; E. &New = Create Order(); F. Local ORDER &New; G. Method ORDER_NBR (&ORDER_NBR As Field out);

Answer: B, C, E, F Question: 8 You want to see exactly when a PeopleCode program fires in the context of the Component Processor flow. Which two methods will work? (Choose two.) A. Insert a Print() statement in the program. B. Insert a WinMessage() statement in the program. C. Insert a MessageCatalog() statement in the program. D. Run the PeopleCode Debugger and insert a breakpoint on the program. E. Run the PeopleCode Debugger and select Debug, View Component Buffers.

Answer: B, D Question: 9 View the Exhibit.

A PeopleCode program at level 0 checks the values for Percent Available (PCT_AVAILABLE) at level 1. Analyze this code snippet.Local Rowset &RS_Level0, &RS_Level1;Local Row &Row_Level0, &Row_Level1;

http://www.examkill.com/1Z0-242.html

Adobe Apple Cisco CompTIA HP EMC IBM Microsoft Oracle Juniper

6


Local Record &Rec_TaskRsrc; Local Field & Fld_PctAvail ; &RS_Level0 = GetLevel0(); &Row_Level0 = &RS_Level0.GetRow(1); &RS_Level1 = &Row_Level0.GetRowset(Scroll.PSU_TASK_RSRC); &Row_Level1 = &RS_Level1.GetRow(1); &Rec_TaskRsrc = &Row_Level1.GetRecord(Record.PSU_Task_RSRC); &Fld_PctAvail = &Rec_TaskRsrc.GetField(Field.PCT_AVAILABLE); &Pct = &Fld_PctAvail.Value; Select the correct option. A. The program will produce the expected results. B. The program is missing a loop to process each row in the level 1 rowset. C. The program is missing a loop to process each rowset in the level 1 row. D. The program can be simplified to: &Pct = &RS_Level0.PSU_Task_RSRC.PCT_AVAILABLE.Value; E. This line of code is not needed: &RS_Level1 = &Row_Level0.GetRowset(Scroll.PSU_TASK_RSRC); F. The &RS_Level0 = GetLevel0(); function is missing the Level 0 scroll name.

Answer: B Question: 10 The Get Student Enrollments page uses a PeopleCode program to select and display rows based on user input. When the user clicks Refresh, FieldChange PeopleCode populates a stand-alone rowset using a Select method. When you test the program, the new rows are appended to the previous rows instead of replacing them. How do you fix this problem? A. Use a work scroll instead of a stand-alone rowset. B. Add &Rowset.Flush(); after the Select method. C. Use an Update method instead of a Select method. D. Add &Rowset.Flush(); before the Select method. E. Add &Rowset.Refresh (); after the Select method. F. Add &Rowset.Refresh(); before the Select method.

Answer: D

http://www.examkill.com/1Z0-242.html

Adobe Apple Cisco CompTIA HP EMC IBM Microsoft Oracle Juniper

7


Oracle

1Z0-242

PeopleSoft Application Developer II: Application Engine & Integration

Click the link below to buy full version as Low as $25

http://www.examkill.com/1Z0-242.html

We also provide PDF Training Material for: Hot Exam 1Z0-556

1Z0-875

1Z0-562

1Z0-878

1Z0-102

1Z0-557

1Z0-561

1Z0-874

1Z0-563

1Z0-852

1Z0-543

1Z0-871

1Z0-228

1Z0-058

1Z0-532

1Z0-877

1Z0-898

1Z0-897

1Z0-895

1Z0-873

1Z0-894

1Z0-889

1Z0-884

1Z0-870

1Z0-881

1Z0-880

1Z0-879

1Z0-872

http://www.examkill.com/1Z0-242.html

www.examkill.com

Adobe Apple Cisco CompTIA HP EMC IBM Microsoft Oracle Juniper

8


Turn static files into dynamic content formats.

Create a flipbook
Issuu converts static files into: digital portfolios, online yearbooks, online catalogs, digital photo albums and more. Sign up and create your flipbook.