RNUG Lotus User Group (www.vlaad.lv)

    Displaying only Last version of Lotus Notes client in a "Client Version view"

    Vladislavs Tatarincevs  7 September 2009 13:39:48
    A new feature of Lotus Notes 8.x  is a view in a Domino Directory, which
    Image:Displaying only Last version of Lotus Notes client in a "Client Version view"
    Shows version of Lotus Notes client, that appears in Administration tab of every user.
    I,  as an Admin, want to see only Last version, I want to know which people are on the last version, and which people should be kicked, so they upgrade to new version.
    Unfortunately this view, display all my Lotus Notes version this user ever had.  Like History of this user :)
    Image:Displaying only Last version of Lotus Notes client in a "Client Version view"

    Some time AdminP when processed Update New client version request put this client in the middle, thus we can use @Subset(ClntBld;-1) which will display only last element of array.

    I have written such formula which will display only last version, even if it is reported in the middle.

    n:= @Member(@Text(@Max(Clntdate)); @Text(Clntdate));
    @Subset(@Subset(cLntBLD; n);-1)

    This piece of code can be put in the first column of "By Client Version" instead of ClntBld field.

    It will find most recent updated workstation @Max(Clntdate), and will depict release which was recently installed, last version only.
    At the end you should see only last version of Notes installed for every person, then you will see from the view which Workstation need to be upgraded to new versions.




    Archives