Lotus Notes: Inhalt des Posteingangs wiederherstellen
Ab und an kann es vorkommen, dass man durch unachtsamkein, Programmierfehler, etc. den Posteingang (Inbox) in Lotus Notes verliert. Die Mails sind alle noch da, aber die Inbox ist leer.
Andrew Pollack hat nun, im Rahmen eines größeren Artikels, eine elegante Methode publiziert, wie man die Mails, die früher in der Inbox waren, wieder der Inbox zuordnen kann.
I found a document that was in the inbox before my „fixing” things, and from it got the value stored in a field called $FolderRef. That field is a note
$FolderRef Field Value Text Equivalent F38D46BF5:E8F08834-N852564B5:00129B2C 38D46BF5E8F08834852564B500129B2C
I created a view using this formula to select those documents to put back in my inbox.
T1 := @If(@Text($FolderRef) = "38D46BF5E8F08834852564B500129B2C" ; @True; @False); T2 := @If( (DeliveredDate = "" & PostedDate != "" & nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;!(@IsMember("S"; ExcludeFromView))) ; @False ; @True); T3 := @If(@Name([CN] ; @If(Principal = ""; From; Principal)) = "Andrew Pollack" ; nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp; @False ; @True); T4 := @If( ( @IsNotMember("A"; ExcludeFromView) & nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp; IsMailStationery != 1 & Form != "Group" & nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;Form != "Person") ; nbsp;nbsp;nbsp;nbsp;@True ; @False); SELECT ( (T1 = @True) & (T2 = @True) & (T3 = @True) & (T4 = @True) )
Once the view was created, I just dragged the docs back to my inbox and all was well in the world.
Tagged as: Lotus Notes, tipp | Author: Martin Leyrer
[Mittwoch, 20071114, 08:36 | permanent link | 0 Kommentar(e)
Comments are closed for this story.