Click here to Skip to main content
15,898,222 members
Articles / Productivity Apps and Services / Sharepoint / SharePoint 2013
Tip/Trick

Read User Profile From Active Directory (AD)

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
8 Dec 2014CPOL3 min read 13.6K   3  
This document is aimed towards helping beginners to read data from AD using InfoPath.

Introduction

In SharePoint, we basically work for Document Management System. SharePoint is a DMS developed by Microsoft. Developer can use .NET to develop SharePoint Solution. There are some other tools like SharePoint Designer which help to develop SharePoint Solution. InfoPath is a SharePoint Designer that works with Internet Explorer while developing. After development for user use, it can work with any browser.

SharePoint is being seen as ideal for managing manuals, policies and procedure documents. Companies are starting to further embrace the document management model of creation, storage, retention and expiry and SharePoint is certainly strong in those areas.

Consider an organization where there is an email system like Microsoft Exchange. Hope this tip will helps developer to find log in and other employee detail information from Active Directory of the organization.

Background

Document Management mostly requires - Secure Access, Storage, Search, Archive, Management and Collaboration. For each and every cases matching information with the log in user with AD is essential for fraud prevention.

Here, I will describe how data can be retrieved from Active Directory.

Basic knowledge of SharePoint is required to work further.

What is InfoPath?

InfoPath can be considered as a development tool for SharePoint where developer can develop moderate solutions without writing code but using its internal options.

Let's Start

1. Create a List in SharePoint

Run Your SharePoint Site in Internet Explorer. On the Home Page, you will find Add List and Libraries option as like the Screen Shot:

Image 1

On the appeared window, click Custom List:

Image 2

A window will appear where you need to give your list name:

Image 3

If everything goes ok, you will find a list created with your name:

Image 4

Now select your list and go to setting:

Image 5

Like other database, create your Column with required name and Data type.

Image 6

Image 7

And finally Press OK button to Create the List.

Image 8

2. Load User Profile From Active Directory into InfoPath.

Ensure you are using Internet Explorer - Click Customize Form as it looks below:

Image 9

Just wait a while, another form will be loaded:

Image 10

Here, I have add Submit Button Manually:

3. Create a Data Connection with Active Directory

Click data and take a Data Connection:

Image 11

Image 12

Select Create a New Connection to - Receive Data like:

Image 13

Image 14

Now first part (http://splab3) is the changeable option according to your address. You need to put your SharePoint site address in place of http://splab3 rest are same.

Image 15

Select Get User Profile Name.

Image 16

Image 17

Uncheck Store a Copy, if checked:

Image 18

Check Automatically Retrieve data when the form is opened:

Image 19

Select GetUserProfile by Name:

Image 20

Click on Show Advanced Details:

Image 21

From the Field section, select GetUserProfileByName, then propertyDetails inside dataFields and select Reporting Table:

Image 22

You will find a form like:

Image 23

Click the Preview Button marked in the Box:

Image 24

From this form, copy the Field name you require. As we are looking for AccountName, copy the AccountName Field.

Now for the designer, select the control tools (textbox, label) you wish to see Account Name and in Properties add some functional rules like the following:

Image 25

Image 26

Image 27

Image 28

Image 29

Image 30

Image 31

Image 32

Image 33

Click Preview Button Again and Find Account Name is showing on controls from Active Directory.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Bangladesh Bangladesh
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --