Lotus Notes定制视图已收到邮件 [英] Lotus Notes custom view received mail

查看:186
本文介绍了Lotus Notes定制视图已收到邮件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在Windows 7上使用Lotus Notes 8.5.2.我想创建一个自定义视图,该视图显示除已发送邮件之外的所有电子邮件.换句话说,它包含:INBOX&所有文件夹.

I am using lotus notes 8.5.2 on windows 7. I would like to create a custom view that shows all emails EXCEPT sent mail. In other words it contains: INBOX & ALL FOLDERS.

当前,我的所有文档"视图具有以下公式条件:SELECT @IsNotMember("A"; ExcludeFromView) & IsMailStationery != 1 & Form != "Group" & Form != "Person"

Currently my ALL DOCUMENTS view has the following formula conditions: SELECT @IsNotMember("A"; ExcludeFromView) & IsMailStationery != 1 & Form != "Group" & Form != "Person"

SENT视图具有以下条件:SELECT DeliveredDate = "" & PostedDate != "" & !(@IsMember("S"; ExcludeFromView))

The SENT view has the conditions: SELECT DeliveredDate = "" & PostedDate != "" & !(@IsMember("S"; ExcludeFromView))

我的想法是我应该能够从所有文档条件中排除SENT条件?

My thinking is that I should be able to exclude the SENT conditions from the ALL DOCUMENT condition ?

非常感谢

推荐答案

获取所有不在已发送"视图中的文档是不正确的,因为有些文档不在已发送"视图中,也从所有文档"视图中排除.您想要的逻辑是:

Taking all the documents that aren't in the Sent view isn't quite right, because there are a few documents that aren't in the Sent view that are also excluded from the All Documents view. The logic you want is:

SELECT (in the All Documents view) AND NOT (in the Sent view)

因此,首先要复制所有文档.您将保留所有文档"视图中的选择公式,然后将& !(),如下所示:

So, first make a copy of All Documents. You're going to keep the selection formula from the All Documents view, and put & !( ) after it, like this:

SELECT ( @IsNotMember("A"; ExcludeFromView) & IsMailStationery != 1 & Form != "Group" & Form != "Person" ) & !( )

现在,只需从发送"视图中复制选择公式并将其放在这些空括号之间,结果就是:

Now, just copy the selection formula from the Sent view and put it between those empty parens, so the result is this:

SELECT ( @IsNotMember("A"; ExcludeFromView) & IsMailStationery != 1 & Form != "Group" & Form != "Person" ) & !( DeliveredDate = "" & PostedDate != "" & !(@IsMember("S"; ExcludeFromView)) )

这篇关于Lotus Notes定制视图已收到邮件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆