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

You can use the SharePoint Business Data List Connector BDLC to pull and update external data from almost any external LOB data sources to custom SharePoint lists (no web parts). But how to pull link data (URLs) into SharePoint link columns?

Do you want to fill SharePoint link columns with external data?

How to fill SharePoint link columns with external data using the SharePoint BDLC?

You can fill SharePoint link columns without any problems, if you follow these steps to use a select statement, that uses a LinkURL and a LinkName field in this way:

Select *, LinkURL + ", " LinkName As URL FROM MyTableOrView

If you don't have LinkNames then use LinkURL twice:

Select *, LinkURL + ", " LinkURL As URL FROM MyTableOrView

  • LinkURL and LinkName can be replaced by any other names.
  • Please note the required space in ", ".
  • You could use full urls "http://..." or relative URLs for internal links.

Please validate the Select Statement, create the list and update it as usual.

Then do the following steps:

  1. Delete the automatically created text column with title URL (and internally named URL).
    You can't transform this column to a link type column because of SharePoint limitations.
  2. Re-create the URL column as link column. Use the name URL on creation.
  3. Update the SharePoint data using the update button in the BDLC List Configuration settings dialog.

Now, if link information is available in the LinkURL / LinkName fields of your external data source, it should appear as expected and rendered as link in the SharePoint link column.

Remarks: The names used, e.g. LinkURL, LinkName, URL etc. are samples only. You can use other names if required.