About This Code
Brief Description:
Working with Notes time
Contributor:
Andrew Jones
Last Modified:
17 Jun 2002
OpenNTF Disclaimer
All of the program code and information presented in the OpenNTF.org Code Bin are provided "as-is", and should be used at your own risk. OpenNTF.org make no express or implied warranty about anything in the Code Bin, and OpenNTF.org will not be responsible or liable for any damage caused by the use or misuse of anything from this site. OpenNTF.org makes no guarantees about anything. Please thoroughly test all of the knowledge and code you find here before you attempt to use them in your production environment.
Code / Description
2. This agent determines the earliest and latest creation dates for all the documents in the current database, and creates a DateRange object using these dates. import lotus.notes.*;
public class working2agent extends AgentBase {
public void NotesMain()
{
try
{
Session s = getSession();
AgentContext ac = s.getAgentContext();
Database db = ac.getCurrentDatabase();
DocumentCollection dc = db.getAllDocuments();
Document doc = dc.getFirstDocument();
if (doc == null)
System.out.println("No documents");
else
{
DateTime dt1 = doc.getCreated();
DateTime dt2 = doc.getCreated();
doc = dc.getNextDocument(doc);
while(doc != null)
{
//if dt1 > Created, Created -> dt1
if(dt1.timeDifference(doc.getCreated())>0)
dt1 = doc.getCreated();
//if dt2 < Created, Created -> dt2
if(dt2.timeDifference(doc.getCreated())<0)
dt2 = doc.getCreated();
doc = dc.getNextDocument(doc);
}
DateRange dr = s.createDateRange(dt1, dt2);
System.out.println("Date range of documents:");
System.out.println(dr.getText());
}
}
catch (Exception e)
{
e.printStackTrace();
}
}
Usage / Example