0

我是BI Publisher的新手,以前完全致力于 SQL 编码以获取所有内容,但现在我已经为 Word 文档安装了 BI Publisher 扩展。我有一个要求,通过它在 Bursting 时生成所有 PDF,它应该用密码保护。并且这些 PDF 的爆发是基于员工编号的,即每个员工的单独字母,现在我必须使用员工的 SSN 号码来保护员工明智地生成的 PDF。

我用作参考的文件是:

参考资料一

参考资料二

我的困惑点是,如何添加支持密码的自定义值参数,使我的 RTF 密码受到保护的步骤,验证密码的代码。

    Thanks in Advance!!
4

1 回答 1

0

对于这个数据集:

<data>
<set1>
<row>
<attribute1>A</attribute1>
<attribute2>A1</attribute2>
<attribute3>A11</attribute3>
</row>
<row>
<attribute1>B</attribute1>
<attribute2>B1</attribute2>
<attribute3>B11</attribute3>
</row>
<row>
<attribute1>C</attribute1>
<attribute2>C1</attribute2>
<attribute3>C11</attribute3>
</row>
</set1>
</data>

Attribute1 是您要设置密码的内容。

您的 RTF 文件应具有属性(Word -> 文件 -> 信息 -> 属性 -> 高级属性):

Name: xdo-pdf-open-password  Value: {data/set1/row/attribute1}
Name: xdo-pdf-security       Value: true
于 2017-09-22T20:10:31.190 回答