如何将 Lotus 视图限制为某些文件夹的内容?
我正在尝试创建一个视图,选择所有未读邮件,这些邮件也属于特定的文件夹和子文件夹列表。
我通过复制现有的“查看未读”视图创建了一个视图,但是尽管我在文档和谷歌中进行了研究,但我对如何将视图的内容限制为文件夹列表中的文档感到不知所措。 文件夹列表可以是硬编码的,更好的是只需要提供顶级文件夹名称。
文件夹结构是这样的: 邮件守护程序 警报 应用程序1 产品 记录 开发者 应用程序2 产品 记录 dev
我希望视图限制为 app1/prod 和 app2/prod。 这是在 Lotus Notes 6.5.4 CCH6 中
未读的公式看起来像这样(并且工作正常):
SELECT @IsNotMember("A"; ExcludeFromView) & IsMailStationery != 1 & Form != "Group" & Form != "Person"
如何限制它?
I am trying to make a view which selects all unread mails which also belong to a specific list of folders and subfolders.
I created a view by coying the existing "view unread" one, but despite my research in the documentation and in google I am at a loss as to how to restrict the content of the view to documents in a list of folders.
The list of folder can be hard coded, even better would be to only have to provide top folders name.
folder structure is like this :
mailer-daemon
alerts
app1
prod
rec
dev
app2
prod
rec
dev
I want the view to restrict to app1/prod and app2/prod. this is in lotus notes 6.5.4 CCH6
The unread formula looks like this (and works ok):
SELECT @IsNotMember("A"; ExcludeFromView) & IsMailStationery != 1 & Form != "Group" & Form != "Person"
how to restrict it ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这是不可能的。 文件夹成员资格不是文档中的属性,并且由于您无法在 SELECT 公式中执行 @dblookup,因此您无法在视图构建期间检查文档是否存在于文件夹中。
如果您可以控制将文档分类到文件夹中的过程,则可以为文档标记一些值并将其用于选择 - 或者将文档添加到“全局”文件夹并使用它而不是视图。
I don't think this is possible. Folder membership isn't a property in the document, and since you cannot do a @dblookup in the SELECT formula you cannot check during view build if the documents are present in the folders.
If you have control over the process when documents are sorted into the folders, you could stamp some value to the documents and use it for selection - or add the document to a "global" folder and use that instead of the view.