有没有办法检查使用 InfoPath 表单的文档请求者是否是支持者,并进一步检查该用户是否是部门负责人?
我似乎在事件向导下找不到与此相关的组件。
我这里有关于这个问题的屏幕截图。
请帮忙。
谢谢。
Is there a way to check if the requester of a document using the InfoPath form is the proponent and further check if that user is the division head?
I can't seem to find a component on this under the Events Wizards.
I used these tutorials as references: here and here.
I have here a screenshot on this issue.
Please help.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你所说的“支持者”是什么意思?
这绝对不是您可以使用事件向导完成的事情,但我建议您将此数据保存在智能对象中的某个位置,然后使用智能对象事件来读取数据。
所以你的智能对象看起来像这样:
用户智能对象
特性:
- 用户名,
- 是支持者
- 是部门负责人
- 等等
现在,当您使用用户名作为输入通过加载操作查找此智能对象时,您可以查看 IsProponent = true 和 IsDivisionHead = true 是否。
What do you mean with "proponent"?
This is definately not something that you will be able to do with the event wizards, BUT I would suggest you save this data somewhere in a smart object and then use a smart object event to read the data.
So your smart object will look something like this:
User Smart Object
Properties:
- Username,
- IsProponent
- IsDivisionHead
- etc
Now when you look up this smart object with a load operation using the username as an input, you can see if IsProponent = true and IsDivisionHead = true.