Lotus Notes富文本字段元素,包括文档链接 [英] Lotus Notes Rich Text Field Elements including document links

查看:298
本文介绍了Lotus Notes富文本字段元素,包括文档链接的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

关于计算子表单,我遇到了一个问题:

I got a problem regarding a computed subform:

我想读出 Ganzer Verlauf 下面的所有内容. 其中包括日期,名称(在这种情况下为黑色)和附件的链接.

I want to read out everything that is below Ganzer Verlauf. This includes the date, Name (blacked out in this case) and the link to the attachment.

子表单如下:

contacthistory是我要读出的字段名称.

contacthistory is the field name that I want to read out.

主窗体的名称为In_Bewerbung,子窗体的名称为Meta_Contacthistory.

The name of the main form is In_Bewerbung, the name of the subform is Meta_Contacthistory.

我正在创建一个视图,最终将其导出为XML. 我在视图中的选择是:

I am creating a view that ultimately exports this as XML. My selection in the view is:

SELECT (Form = "In_Bewerbung") & !@IsAvailable(DOCDELETED)& !@IsAvailable(DOCARCHIVED)

这是使用contacthistory的Lotus Script函数的代码段:

Here is a code snippet of a Lotus Script function that uses contacthistory:

目前,我什么也没得到.要使其正常运行,我需要从哪里开始?需要遵循什么步骤?

Currently, I am unable to get anything. Where do I need to start and what steps do I need to follow in order to make it work?

谢谢.

推荐答案

Contacthistory是富文本字段.您无法在视图中显示富文本字段的内容.

Contacthistory is a rich text field. You can't show the contents of a rich text field in a view.

在表单上创建一个新的计算字段,并使用@Abstract公式提取contacthistory项目的文本.

Create a new computed field on the form and use the @Abstract formula to pull out the text of the contacthistory item.

@Abstract([TextOnly]; 64000; ""; ContactHistory);

然后在您的视图中使用这个新的计算字段.请注意,很遗憾,您将无法在视图中显示文档链接.

Then use this new computed field in your view. Note that you won't be able to show doc links in your view unfortunately.

http://publib.boulder.ibm.com/infocenter/domhelp/v8r0/topic/com.ibm.designer.domino.main.doc/H_ABSTRACT.html

这篇关于Lotus Notes富文本字段元素,包括文档链接的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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