PeopleSoft Application Develper I: PeopleTools&PeopleCode : 1z0-241 Exam

640-801 pic
Exam Number/Code: 1z0-241
Exam Name: PeopleSoft Application Develper I: PeopleTools&PeopleCode
Questions and Answers: 210 Q&As
Price:$ 125.00
Update Time: 2009-12-24

  Download PDF Demo : 1z0-241 demo

If you want to buy 1z0-241 exam dumps, you can click here!


Why choose Greatexam 1z0-241 braindumps

Quality and Value for the 1z0-241 Exam
100% Guarantee to Pass Your 1z0-241 Exam
Downloadable, Interactive 1z0-241 Testing engines
Verified Answers Researched by Industry Experts
Drag and Drop questions as experienced in the Actual Exams
Practice Test Questions accompanied by exhibits
Our Practice Test Questions are backed by our 100% MONEY BACK GUARANTEE.

Greatexam 1z0-241 Exam Features

    + Quality and Value for the 1z0-241 Exam

  • Greatexam Practice Exams for Oracle 1z0-241 are written to the highest standards of technical accuracy, using only certified subject matter experts and published authors for development.
  • + 100% Guarantee to Pass Your 1z0-241 Exam

  • If you prepare for the exam using our Greatexam testing engine, we guarantee your success in the first attempt. If you do not pass the Other Oracle Certification 1z0-241 exam (ProCurve Secure WAN) on your first attempt we will give you a FULL REFUND of your purchasing fee AND send you another same value product for free.
  • + Oracle 1z0-241 Downloadable, Printable Exams (in PDF format)

  • Our Exam 1z0-241 Preparation Material provides you everything you will need to take your 1z0-241 Exam. The 1z0-241 Exam details are researched and produced by Professional Certification Experts who are constantly using industry experience to produce precise, and logical. You may get questions from different web sites or books, but logic is the key. Our Product will help you not only pass in the first try, but also save your valuable time.
  • + 1z0-241 Downloadable, Interactive Testing engines

  • We are all well aware that a major problem in the IT industry is that there is a lack of quality study materials. Our Exam Preparation Material provides you everything you will need to take a certification examination. Like actual certification exams, our Practice Tests are in multiple-choice (MCQs) Our Oracle 1z0-241 Exam will provide you with exam questions with verified answers that reflect the actual exam. These questions and answers provide you with the experience of taking the actual test. High quality and Value for the 1z0-241 Exam:100% Guarantee to Pass Your Other Oracle Certification exam and get your Other Oracle Certification Certification.

1z0-241 News


 
 
Exam : Oracle 1Z0-241
Title : PeopleSoft Application Developer I: People Tools & PeopleCode


1. Select the two properties of a summary page. (Choose two.)
A.It is display-only.
B.It contains only level zero.
C.It contains no related fields.
D.It references one record definition.
Answer: AC

2. Examine this PeopleCode snippet:
Local Rowset &RS_Level0, &RS_Level1;
Local Row &Row_Level0, &Row_Level1;
Local Record &Rec_EMPLOYEE;
Local Field &Fld_ROLE;
&RS_LEVEL0 = GetLevel0();
&ROW_LEVEL0 = &RS_Level0.GetRow(1);
&RS_LEVEL1 = &ROW_LEVEL0.GetRowSet(SCROLL.DEPT);
&ROW_LEVEL1 = &RS_LEVEL1(1);
&REC_EMPLOYEE = &ROW_LEVEL1.EMPLOYEE;
&FLD_EMPID = &REC_TASKRSRC.EMPID;
&ID = &FLD_EMPID.Value;
Can the code given above be replaced with the following statement?
&ID = GetField().Value
A.No. The record must be specified.
B.No. The row and record must be specified.
C.Yes, if the code is placed on the current row.
D.Yes, if the code is placed on the EMPID field.
E.Yes, if the code is placed on the EMPLOYEE record.
Answer: D

3. Select the three true statements about PeopleSoft field definitions. (Choose three.)
A.All PeopleSoft field definition names are in uppercase.
B.Date, Time, and DateTime fields all have a fixed length.
C.When you work with Number and Signed Number field types, the sum of integer and decimal positions cannot exceed 40.
D.Altering an existing field definition's default label can have consequences at both the record definition level and the page definition level.
E.For a Long Character field, enter a field length of 256 to enable the database platform to determine the maximum length of the field.
Answer: ABD

4. Select the most efficient way to determine the effect of modifying a definition.
A.Examine the SQL in the PeopleTools tables.
B.Use the XREF reports and visually examine the modifications.
C.Use the Find Definition Reference utility in Application Designer.
D.Use the Cross Reference utility in the PeopleTools, Utilities folder.
Answer: C

5. Select the three statements that are true about search records. (Choose three.)
A.Search records build the search page for the component.
B.Search records are referenced only at level zero in the component.
C.Search records rarely reference views; they are usually SQL tables.
D.Search records populate level zero on all pages that are in the component.
E.Search records provide a high-level key to the primary records that are referenced in the component.
Answer: ADE

6. View the Exhibit.
Select the page that most likely uses this subpage.
A.
B.
C.
D.
Answer: D

7. View the Exhibit.
As the component processor loads a component, it executes PeopleCode programs according to buffer allocation rules.
Each row in the table represents a PeopleCode program and its associated definition, scroll level, and event.
In what order will the programs execute?
A.A, B, C, D, E
B.C, A, D, E, B
C.C, E, A, D, B
D.E, C, A, B, D
E.E, D, C, B, A
Answer: D

8. For the Employee Expenses application, a PeopleCode program could be placed either on the EMPLOYEE record or on the EMP_EXPENSE component. You decide to place it on the component.
Which is a valid reason for choosing to place the program on the component instead of the record?
A.The program updates multiple database tables.
B.The program validates data across multiple records.
C.Component PeopleCode executes before record PeopleCode, so it is more efficient.
D.The record definition is used on several components, but this program should run only on this component.
E.The program initializes fields on the search page, and the search record is associated with the component.
F.The component contains several record definitions and you do not want to duplicate the code in each record.
G.Component PeopleCode is more reusable because component PeopleCode is available for execution on other components.
Answer: D