I am very new to lotus notes and java. I am trying to get all documents which are modified by specific time. I can not use getallmodifieddocuments because , notes version R5.
I am trying to get it as follows:
String query = Select Form = Protocol & ( last value from $revision ) > input datetime stamp
DocumentCollection dc = db.search ( query );
Then get all documents and process them.
Is it possible.
- I can not get to $revision value to get print by getitemvaluestring ( $revision )
- Is query even possible to implement?
I will appreciate if any other way !