Home > Domino Tips > Developer > Java > Alert Or Reminders For Message Crazy Managers.
Domino Tips:
EMAIL THIS
 TIPS & NEWSLETTERS TOPICS 

JAVA

Alert Or Reminders For Message Crazy Managers.


Michael Cunningham
06.26.2000
Rating: --- (out of 5)


Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   


This agent may save you time from sending reminders or alert messages out to
people in your company. Put this agent in your mail database or elsewhere for
specific functionality. Any message that you are used to sending out on a
regular basis should be automated if possible. You can even use this to let
your manager know each week that you are working on your timesheet or weekly
status report and will get that into them shortly.

If you would like to receive a generic database with the agent described above
(you can copy & paste into your mail template); e-mail me.
Mike@flexibleminds.com

- Michael Cunningham

Code

import lotus.domino.*;

public class JavaAgent extends AgentBase {

public void NotesMain() {

try {
Session session = getSession();
AgentContext agentContext = session.getAgentContext();

Database db = agentContext.getCurrentDatabase();
'Indicate the view in which you want to find the important document that
should not be overlooked.
View view = db.getView("TheViewYouAreUsing");
'The collection is based off the key value that indicates an important
document.
DocumentCollection dc = view.getAllDocumentsByKey("YourLookupKey");
'Send this to yourself (so you are aware of when/what was sent out and send
to the other interested parties as well.
String mailto = ("Mike Cunningham");
String mailtocustomer = ("Manager1");
String mailtocustomer2 = ("Coworker");
if (dc.getCount() > 0) {
Document mail = db.createDocument();
mail.appendItemValue("Form", "Memo");
mail.appendItemValue("Subject", "Fax Delivery Alert");
mail.appendItemValue("Body", "Please review the 'No Fax Sent' view in the
Fax Central database. The records show at least one fax did not get sent
out.");
//mail memo to user specified
mail.send(false, mailtocustomer);
mail.send(false, mailtocustomer2);
mail.send(false, mailto);
};
} catch(Exception e) {
e.printStackTrace();
}
}
}

Rate this Tip
To rate tips, you must be a member of SearchDomino.com.
Register now to start rating these tips. Log in if you are already a member.




Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   



RELATED CONTENT
Java
Java code inserts data from Notes documents into a SQL table
Java code shortens strings in a SQL table
How to execute a stored procedure in Lotus Notes Domino using Java
How to return an HTML representation of a Lotus Notes rich-text field
Shrink Lotus Notes databases with many attachments
Converting Lotus Notes Domino Web pages to PDF files with a Java agent
A bevy of Notes/Domino development tips
Converting Web pages to images using Java
Creating Microsoft Word documents from Lotus Notes
FAQ: Java for Lotus Notes and Domino

RELATED RESOURCES
2020software.com, trial software downloads for accounting software, ERP software, CRM software and business software systems
Search Bitpipe.com for the latest white papers and business webcasts
Whatis.com, the online computer dictionary

DISCLAIMER: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.



Domino & Lotus Notes Security Solutions: Authentication, Antispam, Encryption and Antivirus
HomeTopicsITKnowledge ExchangeTipsAsk the ExpertsMultimediaWhite PapersDomino IT Downloads
About Us  |  Contact Us  |  For Advertisers  |  For Business Partners  |  Site Index  |  RSS
SEARCH 
TechTarget provides technology professionals with the information they need to perform their jobs - from developing strategy, to making cost-effective purchase decisions and managing their organizations' technology projects - with its network of technology-specific websites, events and online magazines.

TechTarget Corporate Web Site  |  Media Kits  |  Site Map




All Rights Reserved, Copyright 1999 - 2009, TechTarget | Read our Privacy Policy
  TechTarget - The IT Media ROI Experts