1z0-241 | What Breathing 1z0-241 exam question Is?


Q21. View the Exhibit.

This is a portion of a PeopleCode program that sets grid display properties. Note that it begins with a GetGrid() function.Select both the definition and the event on which this program should be placed. (Choose two.)

A. Page

B. Grid

C. Record

D. RowInit

E. Activate

F. PreBuild

G. Component

H. PostBuild

Answer: AE

Q22. Select the three tasks that you can perform using the Registration Wizard. (Choose three.)

A. Add pages to existing components.

B. Add components to existing menus.

C. Add components to a portal registry.

D. Add components to a permission list.

E. Create new menus and add components to the new menus.

Answer: BCD

Q23. When considering key structure, which three options are mutually exclusive? (Choose three.)

A. Key

B. Search Key

C. Descending Key

D. Alternate Search Key

E. Duplicate Order Key

Answer: ADE

Q24. Select the two most likely reasons to specify an Add search record in a component. (Choose two.)

A. The component requires the Add action.

B. The component writes to a different table in Add mode.

C. The component requires a different search key in Add mode.

D. The search record is a view and the component requires the Add action.

E. The search record is a security view and you must maintain row-level security in Add mode.

Answer: DE

Q25. View the Exhibit. What is OCP?

A. a page definition

B. a record definition

C. an application class

D. an application package

E. a presentation definition

F. an application class superclass

G. an application class subpackage

Answer: D

Q26. Which two statements are true regarding the purpose of server definitions? (Choose two.)

A. Server definitions enable you to change the settings that the server uses to transfer output to the Report Manager.

B. Server definitions enable you to determine which processes you want to schedule through PeopleSoft Process Scheduler, and identify servers that you want slated to run specific types of processes.

C. Server definitions' Operation page enables you to send messages to a group (role ID) or individuals (user ID) when an activity occurs on the server, such as an error or a shutdown.

D. Server definitions ensure that jobs continue processing without interruption and that they run on time after a hardware or software failure on a server hosting a PeopleSoft Process Scheduler Server Agent.

E. Server definitions' Notification page enables you to specify the days and times during which the server is operational.

Answer: BD

Q27. This PeopleCode snippet is in PreBuild:

&Object = GetLevel0();

Which two statements are true? (Choose two.)

A. &Object is a stand-alone row.

B. &Object is a stand-alone rowset.

C. &Object represents the entire component buffer.

D. &Object is a row object that contains the level 0 rowset.

E. &Object is a rowset object that contains the level 0 row.

F. &Object is a record object that contains the level 0 record.

Answer: CE

Q28. Select the two rules about PeopleSoft prompt table mechanics. (Choose two.)

A. The prompt matches fields based on name, data type, and length.

B. The prompt automatically filters the rows based on higher-level key values in the buffer.

C. The prompt selects the highest-level key on the prompt record definition unless the EFFDT field is present.

D. The prompt automatically selects for the lowest-level key on the prompt record definition ignoring the EFFDT and EFF_STATUS fields.

Answer: BD

Q29. The primary role of Oracle's PeopleSoft Process Scheduler is to support the PeopleSoft application environment. Which three statements are true regarding the usage and advantages of PeopleSoft Process Scheduler? (Choose three.)

A. You can perform certain processes (such as running reports, loading benefit enrollment forms, calculating payroll deductions, and so on) in the background of the online system.

B. PeopleSoft Process Scheduler has two purposes. The first is to provide different methods of viewing reports, based on the level of access granted. The second is to assign users to a Report Manager Administration role in PeopleSoft Security, so they can delete reports from the database.

C. You can take advantage of the distributed computing environment at your site, whereby you can schedule performance-sensitive jobs to run on a powerful server while the online system is still available to end users.

D. You can extract the precise information that you are looking for by using visual representations of your PeopleSoft database, without writing SQL statements.

E. You can schedule a process request to run on any date or during any time interval that your business requires, such as monthly, daily, hourly, or by the minute.

Answer: ACE

Q30. Examine this PeopleCode snippet:

&Row_Level1 = &RS_Level1(&I);

&Rec_EMP = &Row_Level1.EMP;

&Fld_Role = &Rec_EMP.Role;

&Pos = &Fld_Role.Value;

Select the option that correctly combines these four statements into one valid PeopleCode statement.

A. &Pos = &RS_Level1.&I.EMP.Role.Value;

B. &Pos = &RS_Level1(&I).EMP.Role.Value;

C. &Pos = &Row_Level1(&I).EMP.Role.Value;

D. &Pos = &Row_Level1(RECORD.EMP).Role.Value;

E. &Pos = &RS_Level1.Row_Level1.Rec_EMP.Role.Value;

Answer: B