Citation

       "Please support us to improve our products and solutions. Give us your feedback."

Related Content

Related Downloads

pdf Image2009-11-01: Layer2 Press Release

SharePoint – New Business Data List Connector for External Lists in MOSS 2007 and WSS 3.0
Layer2, the SharePoint Experts from Hamburg (Germany) announced a new Microsoft SharePoint extension to unlock the value of enterprise data for SharePoint 2007 based portals. The Business Data List Connector (BDLC) for SharePoint directly connects SharePoint lists with external LOB data sources. Almost any data from databases, Office or even text data can be displayed in SharePoint lists without any programming. Workflows can be used to start business actions in SharePoint, if external data records are changed.

xml ImageBusiness Data List Connector PAD File

This XML-based PAD file offers a BDLC product description for resellers to download and publish.

pdf ImageFlyer: Layer2 Partner Program

Partner with us as a software reseller or SharePoint service provider. There is a free partner program with up to 30% discount. Download as PDF.

Related Links

Are you looking for Layer2 product resellers and implementation partners?

United States:

Great Britain, Scotland and Ireland:

France:

Netherlands:

Switzerland:​

Poland:

Turkey:

South Africa:

Malaysia:

BDLC works with NINTEX Workflow 2010 for SharePoint

Start NINTEX Workflows while external data changes.

Main Content

Claim

The SharePoint Business Data List Connector is used to simply connect a SharePoint list with external LOB data, e.g. from databases, CRM or ERP systems.

Lookup Business data in SharePoint lists

How to connect Sharepoint lists directly to Active Directory data to access users or devices?

You can connect a custom SharePoint list (no Web part) directly with external data from Active Directory to access users or devices using the

SharePoint Business Data List Connector (BDLC).

You can set the connection string, the select statement and the primary keys (if any) simply in the SharePoint list settings dialog. Here are some sample connection strings and select statements of the OLE DB provider 'ADSDSOObject' for Active Directory access.

Connection String

Provider=ADSDSOOBject; User Id=Mydomain\myUser; Password=myPwd; Mode=Read; Bind Flags=0; Page Size=1000;

Start with an high privileged user account. If no account is given, the access rights of the currently logged in user are used if accessing the data manually in the list settings. Just be sure to not run into a double hop problem in this case. For updating data in background the access rights of the respective service account are used.

Select Statement

Example:

SELECT givenName, name, title, telephoneNumber From 'LDAP://DC=Yourdomin, DC=COM' WHERE  objectClass='user' AND objectCategory='Person'

Known issues & workarounds

In some cases the preview feature does not work as expected. But you can create a SharePoint list structure and update the data as usual with BDLC, if the connection string and the select statement have passed the verification without any errors.

In some cases it could be helpfull to directly adress the domain server, e.g.
SELECT name, ADsPath From 'LDAP://mydomainserver.mydomain.lokal/DC=Layer2,DC=LOKAL'  WHERE objectClass='user' AND objectCategory='Person'
 
For large data sets setting page size in connection string is helpful.