从列表中的 SharePoint 用户字段获取用户名
我有一个正在 Visual Studio 中开发的自定义共享点工作流程。该工作流正在针对连接了自定义内容类型的文档库运行。内容类型包括用户查找字段(“所有者”)。
我试图让我的工作流程将任务分配给“所有者”查找字段。但是,我只能获取用户的显示名称,而不能获取帐户用户名。
有人可以帮忙吗?
I have a custom sharepoint workflow that I'm developing in Visual Studio. The workflow is running against a document library which has a custom content type connected to it. The content type includes a user lookup field ("owner").
I'm trying to have my workflow assign a task to the "owner" lookup field. However, I've only been able to get the display name for the user, not the account username.
Can anyone help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅这篇文章了解如何获取现场的用户详细信息。
你的代码应该是这样的
Refer to this Article on how to get the User Details from the Field.
Your Code should be like this
我的解决方案:
如何调用:
这是经过测试的代码并且工作正常。
My solution:
How To Call:
This is tested code and working fine.