pass4side@hotmail.com
Exam Number/Code: 1z0-241
Exam Name: PeopleSoft Application Develper I: PeopleTools&PeopleCode
Language(s): English
Price: $ 125.00
Questons and Answers : 210 Q&As
Updated: 2009-12-24
It is well known that Other Oracle Certification 1z0-241 - 1z0-241 exam test is the hot exam of Oracle certification. gopass4side offer you all the Q&A of the 1z0-241 real test . It is the examination of the perfect combination and it will help you pass 1z0-241 exam at the first time!
The Other Oracle Certification 1z0-241 Questions and Answers as well as our other Other Oracle Certification 1z0-241 exam training tools are not only priced to be easy on your budget - but each one is also backed with our guarantee. gopass4side guarantees that after using our Cisco certification training tools, you will be prepared to take and pass your Other Oracle Certification 1z0-241 exam.
Our on-site online training experts create all of the Oracle 1z0-241 exam products available through gopass4side. Our main goal is to get your certified with a firm understanding of the core material. Whereas other online distributors only concern themselves with helping you obtain the paper, we strive to educate the certification candidate and better prepare them for their IT career.
Why choose gopass4side 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.
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