Examine this PeopleCode program excerpt: Select the three correct statements. (Choose three.)
A. The OCP_ROWSET method runs automatically whenever an object is instantiated from the OCP_ROWSET class
B. OCP_ROWSET is the constrictor method for the OCP_ROWSET class
C. Executing the RO_ROWSET method instantiates an object of the OCP_ROWSET class
D. The OCP_ROWSET method must initialize an object of the Rowset class
E. The OCP_ROWSET method is added to the Rowset class, and, by extension, to any instances of the Rowset class
Select three changes to a record definition that require you to rebuild the SQL table. (Choose three.)
A. You change an ascending key to a descending key
B. You deselect the Alternate Search Key check box
C. You change the length of a non-key field
D. You deselect the Search Key check box (only) for a field
E. You change the label of a key field
Which two PeopleCode excerpts contain syntax errors? (Choose two.)
A. 1
B. 2
C. 3
D. 4
E. 5
You have a record definition open in Application Designer, and when you select the Build menu, you notice that the Current Definition option is disabled. (greyed out.) Why did this happen?
A. You have already build the table
B. The record definition Record Type is set to Dynamic View
C. You saved the record definition using a non-standard SQL table name
D. You are not connected to the database
Your client has stipulated that a bonus of greater than 10% requires prior approval. The following SaveEdit program was developed to issue a warning when the bonus exceeds that amount:
However, as written, this warning is reissued for previously approved and saved bonus amounts that exceed 10%. How should you revise the conditions in the If clause to display a warning for new or updates bonuses only?
A. Check the IsDirty property of the Field object
B. Check the IsNew property of the Row object
C. Check the IsChanged property of the Field object
D. Check the IsNew property of the Field object
E. Check the IsDirty property of the Row object
F. Check the IsNew property of the Record object
What should you do to change the default fluid homepage after signing in to PeopleSoft?
A. Modify the Default Homepage setting in a PeopleTools security permission list
B. Rename your set of homepages on the Personalize Homepage
C. Make sure that the fluid homepage you want to appear first the next time you sign in is displaying when you sign out of the system
D. Reorder the homepage list on the Personalize Homepage page so that the homepage you want is at the top of the homepage list
Examine the following code:
Which two statements are correct? (Choose two.)
A. ABSENCE_SQL contains an INSERT clause
B. ABSENCE_SQL contains a DELETE clause
C. ABSENCE_SQL is a SQL object
D. ABSENCE_SQL is a SQL definition name
E. ABSENCE_SQL contains a SELECT clause
F. ABSENCE_SQL is a SQL method
Instructors have complained that they do not have access to a newly registered component and page. The Instructor role that includes the Instructor permission list already exists; both are available for your use. Select the two correct methods that add access for just this user group. (Choose two.)
A. Modify the content reference (CREF) definition in the portal registry and enable the Author Access option
B. Re-run the Registration Wizard. Select the option to modify only a permission list, and add the Instructor permission list to this component
C. Modify the CREF definition in the portal registry and add the Instructor role
D. Modify the Instructor permission list definition and add access to the new component and page
E. Modify the CREF definition in the portal registry and add the Instructor permission list
F. Modify the CREF definition in the portal registry and enable the Public Access option
This SQL definition uses effective-date logic to return the current row from PSXLATITEM.
Which meta-SQL element should be substituted for date so the SQL correctly returns the current row as of the run date for all supported database platforms?
A. %CurretnDateIn
B. %CurrentDateOut
C. %Date
D. %DateTime
E. %EffDtCheck
Which three statements are correct? (Choose three.)
A. Derived/work fields and variables can be displayed on the page
B. Derived/work fields and variables provide temporary storage of calculated values
C. Derived/work fields and record fields provide permanent storage of values
D. Derived/work fields and record fields can be displayed on the page
E. Derived/work fields and record fields can include executable PeopleCode programs