LOT-803 Lotus Certification Braindump
ExamSoon LOT-803 Exams
IBM Using LotusScript in IBM Lotus Domino 8 Applications
O rder : LOT-803 Exam
Practice Exam: LOT-803
Exam Number/Code: LOT-803
Exam Name: Using LotusScript in IBM Lotus Domino 8 Applications
Questions and Answers: 151 Q&As
Free LOT-803 Braindumps
Exam : IBM LOT-803
Title : Using LotusScript in IBM Lotus Domino 8 Applications
1. For agents that run on new and modified documents, newly received mail documents, or newly modified
documents, what method can you use to make each document as "processed" to ensure that a document gets
processed by the agent only once (unless it's modified, mailed, or pasted again)?
A. NotesView.UpdateAll
B. NotesDocument.SetProcessed
C. NotesDocumentCollection.Stamp
D. NotesSession.UpdateProcessedDoc
Answer: D
2. The error message "Error loading USE or USELSX module" can be caused by which of the following?
A. An improperly defined Const value
B. An ODBC connection that cannot be made
C. An attempt to use NotesUIWorkspace in a background scheduled agent
D. A script library that can't be found or needs to be recompiled using "Recompile All LotusScript"
Answer: D
3. Ichiro needs to write an agent to read a comma-delimited ASCII file of data about parts that his company uses
when building computers. The data is from one of the parts suppliers, and includes 10 fields in each record. Ichiro
needs to extract the Part Number, Part Description, and Price from each input record and update his company's
Inventory database with the current data. How should Ichiro proceed?
A. Create a user-defined data Type to represent a Part. Write a 'getter' method for each of the 3 fields that need to be
accessed from the data Type.
B. Create a user-defined class to represent the ASCII file. Write a 'getter' method to retrieve each record, and use the
NotesStream.SplitText method to extract the fields.
C. Create a user-defined class to represent the Parts data. Use notesDOMTextNode.SplitText( "," ) to parse each
field into the approp