Posts

Showing posts with the label profile

Office 365 - How to Link Directly To A Users Delve Profile With Email Address

What You've probably seen it before, when you navigate to a persons Delve profile in Office 365, the URL contains a unique UserID. Example: https://aus.delve.office.com/?u=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx$v=work Well there is a way to create a link that will send you to a users Delve profile based on their email address Why You may want to programatically show a list of users and link to their Delve Profiles. How The link below allows you to input an email address at the end, Office 365 will automatically translate this and re-direct you to the Users Profile https:// [TenantName] -my.sharepoint.com/PersonImmersive.aspx?accountname=i%3A0%23%2Ef%7Cmembership%7C [EmailAddress]

PowerApps - Default SharePoint People Picker Field To Be Logged In User

Image
What When you're building a PowerApp connected to a SharePoint List Form and you would like to capture the details of the person who is filling out the form. Why I understand that this is already captured via the 'Created By' SharePoint System field, but sometimes customers like to capture requestor name, phone, etc on the form itself rather than having to go to SharePoint to view it all. Assumptions: You've already created a PowerApp and added a 'Form' Control that uses a SharePoint List as a Data Source. Your SharePoint List contains a People Picker Field How To pull back details about users, add another Data Source: View  Tab > Data Sources > Add Data Source > Office 365 Users Click on the Card in the form that contains your People Picker Field Go To Advanced and click 'Unlock to change properties' so that you can select the field itself Click on the People Picker Field itself, then select the 'Default'...

SharePoint 2010 - People Picker that is showing the wrong user profile information

Hi again, introduction to this issue:  Someone has updated information on their MySite but their details have not propagated through to the People Picker, or any list that shows User Information in it. Why:  This is due to the User Information List , which is used to supply User Information to all the SharePoint functions that use it.  The User Information List only seems to get updated when a user is first introduced to a Site Collection.  Not even a full Profile Sync will fix it. (You can find the User Information List here: http://[rootsite]/_layouts/people.aspx?MembershipGroupId=0).  This issue has been documented before and done very nicely on Gary's blog here:  http://blog.falchionconsulting.com/index.php/2011/12/updating-sharepoint-2010-user-information/ The difference is between Gary's blog post and mine, is that his shows how to get a script to iterate through every Web Application and update specific fields.  Where as I will be sh...