Latest 1Z0-242 trainning materials

Aug 3, 2009

New 1Z0-242 trainning materials

Exam Number/Code: 1Z0-242
Questions and Answers:100 Q&As

Updated Time: 2009-09-21
Register for Exam: Prometric/Pearson VUE
Exam Name:PeopleSoft Application Developer II: App Engine & Integration

The following are the 1Z0-242 exam questions and answers we get from all of the world company exams vendors include : examsoon 1Z0-242 exam ,Testinside 1Z0-242 braindumps, Pass4sure 1Z0-242 practice exam , Testking 1Z0-242 study guides, exam4sure trainning materials. after you read the following 1Z0-242 exam demo questions and answers, you will see the high quanity of the exam

The 1Z0-242 exam products are designed to maximize your learning productivity and focus only on the important aspects that will help you to pass your 1Z0-242 test. We will provide you with 1Z0-242 exam questions and verified answers, that reflect the actual exam. These questions and answers provide you with the experience of taking the 1Z0-242 actual test. 1Z0-242 exam guides are not just questions and answers. 1Z0-242 questions have detailed for every answer, ensuring that you fully understand the questions and the concept behind the questions.

 
 
Exam : Oracle 1Z0-242
Title : Oracle Spplication Server 10g:Administration II

1. 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: BD

2. View the Exhibit.
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

3. 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.
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: BCEF

4. 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: CE

5. 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: BCE

6. 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

7. View the Exhibit.
On the Employee Review page, you have a business rule with these requirements:
1. If Review Type is Supervisor, then the prompt for Reviewer ID returns only supervisors.
2. 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.
G. Use a conditional statement in PeopleCode to populate the DERIVED.EDITTABLE field.
Answer: CEG

8. 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: ADEG

Free 640-802 Demo Download

Free demo for Oracle Other Oracle Certification 1Z0-242 exam (PeopleSoft Application Developer II: App Engine & Integration). You can check out the interface, question quality and usability of our practice exams

Free Download 640-802 Exam Pdf Demo
Free Download 640-802 Exam iEngine Demo

  • Share/Bookmark

No related posts.

Related posts brought to you by Yet Another Related Posts Plugin.

Posted by admin | Categories: Oracle |

Share with others

No Responses so far | Have Your Say!

Leave a Feedback

You must be logged in to post a comment.

Examsoon Hiexam Hiexam Hiexam Hiexam Exam4test Exam4test Exam4dumps Exam4dumps Exam4dumps Testinside Visualexams