查询LDAP以获取组成员资格(在表单中) [英] Query LDAP for group membership (within a form)

查看:138
本文介绍了查询LDAP以获取组成员资格(在表单中)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好! 

我们目前使用SharePoint列表作为记录SAP事件和任务的故障单系统。这对组织很有效,因此他们希望将SharePoint用于更多业务流程。

We currently use a SharePoint list as a ticket system in which SAP incidents and questsions get logged. This works well for the organization, so well that they are looking to use SharePoint for more business processes.

用户授权请求列表中的一个项目。现在,人们填写一个Word文档,将该文档邮寄到auth邮箱,它被批准,处理并移动到'处理'。用户一直不知道状态是什么,也不是
他们对他们的最新请求有一个概述。

One of the items on their list in user authorization requests. Right now people fill in a Word document, mail that document to the auth mailbox, it gets approved, processes and moved to 'handled'. All the while the user has no idea what the status is, nor do they have an overview of their latest requests.

我们想创建几个人们可以填写的表单对于邮箱,文件夹,新用户帐户等的授权请求。我只是想知道,是否可以在表单中查询Active Directory?因为我们希望HR能够在他们选择某人制作副本后才能查看用户权限

We would like to create several forms that people can fill in. For authorization requests to mailboxes, folders, new user accounts etc. I am just wondering, would it be possible to query Active Directory within a form? Because we would like HR to be able to see the user permissions once they select someone to make a copy off.

所以基本上我只想列出所有以"companyname_"开头的AD组。但是它在表单中加载了一些内容,并且只有在输入用户名时才会加载。这可能吗?为了构建这个,我应该学习什么? 
$


我们目前正在使用SharePoint 2013进行迁移,计划迁移到SharePoint 2016.



亲切的问候,

Dennis

So basically I just want to list all AD groups starting with "companyname_". But its something loaded within a form, and only when a username is typed in. Is that possible? What should I look towards to learn in order to build this? 

We currently work on SharePoint 2013 with a migration planned to SharePoint 2016.

Kind regards,
Dennis

推荐答案

嗨Dennis,

Hi Dennis,

以下查询将通过LDAP查询访问AD组:

The below query will get accessing AD groups via LDAP query:

(&

  (objectCategory = user)

  (memberOf = cn = MyCustomGroup,ou = ouOfGroup,dc = subdomain,dc = domain,dc = com)

(&
    (objectCategory=user)
    (memberOf=cn=MyCustomGroup,ou=ouOfGroup,dc=subdomain,dc=domain,dc=com)
)

以下是一些可以帮助您了解更多内容的链接。

Below are some links that could help you looking into more.

https://www.websense.com/content/support/library/web/hosted/dsc_admin/example_schema.aspx

https://stackoverflow.com/questions/6050 003 / how-do-i-filter-an-ldap-query-for-groups-containing-a-specific-user

https://social.technet.microsoft.com/wiki/contents/articles/5392。 active-directory-ldap-syntax-filters.aspx

https://ldapwiki.com/wiki/Active%20Directory%20Group%20Related%20Searches

谢谢&此致,

Thanks & Regards,


这篇关于查询LDAP以获取组成员资格(在表单中)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆