如何在 Dynamics 365 中获取当前用户的业务部门
如何使用 javascript 获取登录用户的业务部门详细信息?我尝试了 Xrm.Utility.getGlobalContext().userSettings 但无法获取业务部门的任何信息
How can I get business unit details of the logged-in user with javascript? I tried Xrm.Utility.getGlobalContext().userSettings but I couldn't get any information for business unit
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您编写
Xrm.Utility.getGlobalContext().userSettings
我假设您正在模型驱动应用程序中使用客户端 JavaScript。从 userSettings 中您可以获取
userId
属性,它返回当前用户的 GUID。获得此值后,为了从用户的业务部门获取详细信息,您需要执行检索请求,如下所示:
If you write
Xrm.Utility.getGlobalContext().userSettings
I assume you are working with client-side javascript inside a Model-driven app.From the userSettings you can get the
userId
property, it returns the GUID of the current user.After you have this value in order to get details from the business unit of the user you need to do a retrieve request, something like this: