使用Lotus Notes公式语言检索{BinderCategory}字段值

时间:2016-07-21 17:10:42

标签: migration lotus-notes lotus-formula

我正在使用Dell Migrator工具将Lotus Notes迁移到Sharepoint。令我难以接受的挑战之一是从{BinderCategory}字段中获取价值。

我尝试过使用:

  • @GetField( “BinderCategory”)
  • @GetDocField( “BinderCategory”)
  • @Text(@BinderCategory)

但是所有这些都返回空值。

任何想法的人?

P.S。我也尝试使用@GetField(“DDSCategory1”)和@GetField(“DDSCategory2”),但它们返回不同的值。

1 个答案:

答案 0 :(得分:0)

如果公式在包含字段" BinderCategory"的文档的上下文中运行然后你写的只是

BinderCategory

获取此字段的内容。

示例:

Field" BinderCategory"包含值"管理员"。公式

"Category: " + BinderCategory

返回"类别:管理员"