Link to home
Start Free TrialLog in
Avatar of yim11
yim11

asked on

Document revision history in a Notes R5 field

Hello,

I am trying to add a doc revision history at the bottom of a Notes form/doc. I just need date/time and user name of last 3 edits. I _really_ need to keep this as simple as possible. I've tried a few code snippets online but nothing has worked so far. Last code attempt is posted. Thanks in advance for any assistance.
This formula allows you to keep a revision history in a single computed field. Unlike most such revision trackers, it does not rely on the QuerySave event. The formula tests if the current user's name is in the most recent entry in the field. If so, only the date is updated so you don't get multiple entries for the same person if there is no intervening editor. The results display like this:
 
Joe Smith 10/29/2001 12:40:08 PM
George Bush 10/29/2001 12:40:46 PM
Rob Pinion 10/29/2001 12:50:15 PM
George Bush 10/29/2001 12:50:41 PM
 
 
Code
 
 
thisUser:=@Name([CN];@UserName);
 
REM "To use this function change the field name below from displayUpdater to your field name";
REM "The field should be Text, computed, allow multiple values, display separate entries with New Line"; 
thisfield:=displayUpdater;
 
REM "Assign all current lines in this field to a temporary variable";
existingLines:=thisfield;
 
REM "Each new line will have the user's name and the current date-time";
newLine:=thisUser+" "+@Text(@Now);
 
REM "Now compare to see if the current user is the most recent editor";
REM "Get the last entry since it contains the most recent editor";
 
REM "First get a count of the number of lines --- elements --- already there";
numLines:=@Elements(existingLines);
 
REM "If there's only one line assign it to lastEntry var, otherwise assign the last entry to lastEntry var";
lastEntry:=@If(numLines=1;existingLines;@Subset(existingLines;-1));
 
REM "Test whether the last line contains the name of the current user";
REM "Later we want to replace that line rather than adding a new line every time he saves the doc";
isSameUser:=@Contains(lastEntry;thisUser);
 
REM "Now get all lines but the last line";
allButLast:=@If(numLines=1;"";@Subset(existingLines;numLines-1));
 
REM "If the doc is being saved, then if this is same user return all but the last line followed by the new line";
 
REM "If this is not the same user, return everything preexisting plus a new line";
 
REM "If the doc is not being saved just show the contents of the field";
 
@If(@IsDocBeingSaved;@If(isSameUser;allButLast:newLine;thisfield:newLine);thisfield)

Open in new window

Avatar of SysExpert
SysExpert
Flag of Israel image

WHat is not working ?

Have you defined the field displayUpdater as required by this code ?

What is happening ?

Any errors ?

have you tried the debugger ?


 
I hope this helps !
Avatar of yim11
yim11

ASKER

Thanks for the reply - I have defined the field displayUpdater to match my field name, when I say nothing is happening I mean that as literally as possible. Absolutely nothing is displayed - no field, no error, no data or information. I'm pretty sure that's due to the field being set to computed. Never run the debugger without an actual error so not sure how to do that. Sorry I don't have more info, let me know what else is needed.

Thanks,
-jim
have you tested this in a clean DB, in a simple form first, with nothing else but 1 other field ?

Avatar of yim11

ASKER

I have now. And was able to get it to work on a clean db and a couple basic fields (needed a text field to actually edit to make sure it was working) - and it does work in the sandbox. I copied the entire field/info over to the form I'm working with and it doesnt work. My first thought is that since this code was based on not having to use the Querysave event and my form DOES use a querysave event that may be whats messing things up, but not sure since I'm no Notes expert. I've attached the querysave code just in case it helps.

Thanks,
-jim

Sub Querysave(Source As Notesuidocument, Continue As Variant)
	If Source.Document.Size > 5000000 Then
		If Messagebox( "File is very large (" & Round( Source.Document.Size / 1000000, 0) _
		& "MB). Please reduce if possible before attach. Press CANCEL.   Press OK to attach anyway",  257, "Size check") _
		= 2 Then Continue = False
	End If
End Sub

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of rd153
rd153

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of yim11

ASKER

Thanks!