Magdalena wants to allow the users of her application to rearrange and change the settings for some views (including private views), to allow them to optimize their experience in the application. How does she best do this?
Sam wants to display a column only if the current user is associated with the Manager role. Otherwise, the column should be hidden. Which one of the following will allow him to do this?
Hermes wants to program a button to allow a user to modify the Status field to a value of "Approved" on the document that they are currently editing in the Lotus Notes client. Which of the following fragments of LotusScript code will do that?
Mahesh must ensure that only users with the DbAdmin role can edit the Price field on the Product form. The other fields on the form are editable by all users. How can Mahesh restrict who can edit the Price field?
Jim is designing a new application that will be deployed to multiple sites using database replicas. Which one of the following will he be able to replicate?
Therese wants to write some LotusScript code that steps through every document in a view and displays the "Title" field. She currently has the following code written:
Dim session As New NotesSession Dim db As NotesDatabase Dim view As NotesView Dim doc As NotesDocument Set db = session.CurrentDatabase Set view =
db.GetView( "By Category") Set doc = view.GetFirstDocument Do Until (doc Is Nothing) Print doc.Title(0) '** MISSING CODE ** Loop
What does she need to add on the ** MISSING CODE ** line to make the code work properly?
Erin has created a categorized view in her Human Resources database that supports unread marks. When users access the view and try to expand some categories, no documents appear even though the users see unread marks beside the category. Which one of the following could be the problem?
Danielle is updating the "companyName" field on all documents in a view. The field may include varying text, but the field always includes the text "Blue Corporation". For example, one of the documents has "Blue Corporation, a wholly-owned subsidiary of GigantaCorp" as the contents of the companyName field. What formula can Danielle include in her agent to change the "Blue Corporation" text in each companyName field to now be "Green Enterprises".