SharePoint Online - I cannot move my custom property any higher than PicturePlaceholderState

I cannot move my custom property (User Profile) any higher than PicturePlaceholderState - reordering just doesn´t work. Any ideas, how I can achieve this?
thx
Haider

You are not able to move the property order any higher because there are duplicate display order values for your properties. The display order of the property that you are trying to move currently has the same display order as property "SPS-PicturePlaceholderState".
You can use the following Powershell script that will allow you to see the current display orders of your properties as well as modify the display order of any of your properties.
function ListUserProfilePropertyDisplayOrder($siteUrl){
$site = Get-SPSite $siteUrl
$context = Get-SPServiceContext $site
$upcManager = New-Object Microsoft.Office.Server.UserProfiles.UserProfileConfigManager($context)
#if you have other profile sub-types than the default profile sub-type name ("User"), you will need to change the following line and use the name of the desired profile sub-type
$defaultUserProfileSubTypeName = [Microsoft.Office.Server.UserProfiles.ProfileSubtypeManager]::GetDefaultProfileName("User")
$upcManager.ProfilePropertyManager.GetProfileSubtypeProperties($defaultUserProfileSubTypeName) | Format-Table -Property Name,DisplayName,DisplayOrder
#Example Usage
ListUserProfilePropertyDisplayOrder http://your.site.url
function ModifyUserProfilePropertyDisplayOrder($siteUrl, $propertyName, $displayOrder){
$site = Get-SPSite $siteUrl
$context = Get-SPServiceContext $site
$upcManager = New-Object Microsoft.Office.Server.UserProfiles.UserProfileConfigManager($context)
#if you have other profile sub-types than the default profile sub-type name ("User"), you will need to change the following line and use the name of the desired profile sub-type
$defaultUserProfileSubTypeName = [Microsoft.Office.Server.UserProfiles.ProfileSubtypeManager]::GetDefaultProfileName("User")
$profileSubtypePropManager = $upcManager.ProfilePropertyManager.GetProfileSubtypeProperties($defaultUserProfileSubTypeName)
$profileSubtypePropManager.SetDisplayOrderByPropertyName($propertyName, $displayOrder)
$profileSubtypePropManager.CommitDisplayOrder()
#Example Usage
ModifyUserProfilePropertyDisplayOrder http://your.site.url TargetPropertyName DesiredDisplayOrder

Similar Messages

  • SharePoint 2010 UI Interface to add Custom Property for a Term, similar to SharePoint 2013 .

    Hi All,
    We have a requirement to capture additional metadata for each Term (Ex: Requested for, Requested date, Requested by). these properties are not available in Sharepoint 2010 OOTB but can be acheived using Term.SetCustomProperty(). where as in SharePoint 2013,we
    have option to add/update/delete custom Properties in Term Store management window(Custom propertiesTabs) , which is OOTB. 
    Just want to understand is  there any way to get that Custom Property Tab interface in 2010. Or any other way to manage(Add/Update/delete) custom properties from the browser itself. 
    Is there any codeplex/other solution which will  allow us to manage properties from browser with out doing the code.
    Any suggestions on this would be helpful
    Thanks in advance
    ragava_28

    Hi,
    According to your description, you want to manage term custom property in SharePoint 2010.
    As you know, there is no OOTB method to meet your requirement.
    If you want to do it without coding, you can take a look at this tool about managing term store:
    http://www.metavistech.com/product/term-store-manager
    As this is a third party tool, we are not sure whether it has risks, please use with caution.
    Best regards
    Patrick Liang
    TechNet Community Support

  • Using screen capture, I cannot move the brackets to cover more than a small strip of screen

    I wish to download a video that I can only view on line. 'Download Helper' does not operate. 'Screen capture'' seemed to be the answer. I press the red button and two flashing brackets appear. I cannot move them so I only get a very limited amount of screen captured. I would appreciate your help. Thank you.

    You have to declare your intention to keep the disk appendable each time you write something, or the last thing you wrote is the last it will accept.

  • Sharepoint online powershell. Change property of webpart

    In addition to my previous question:
    http://social.msdn.microsoft.com/Forums/office/en-US/fadcd297-32af-41bb-8132-60e987eccb3a/sharepoint-online-powershell-and-csom-change-listview-and-put-it-on-a-page?forum=sharepointdevelopment
    In SharePoint online I want to change the property of a webpart. In this case I have a list of which I have changed the view (using powershell) but on the page (default.aspx) the view is not changed. So I guess if I change the view property of the webpart,
    my problem will be solved. I tried to use the "GetLimitedWebPartManager
    " but I do not get that running on Office365 as it is not part of the Microsoft.sharepoint.client.clientcontext, which I use to connect to the Office365 teamsite.
    Are there any suggestions?
    Thanks, Mike

    Hi,
    According to your post, my understanding is that you want to webpart view proproty in SharePoint Online.
    As your environment is SharePoint Online, I suggest you can achieve it using Client Object Model. In Client Object Model, there is such API called LimitedWebPartManager.
    More information about LimitedWebPartManager Class:
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.client.webparts.limitedwebpartmanager(v=office.15).aspx
    http://msdn.microsoft.com/en-us/library/office/ee539301(v=office.14).aspx
    http://www.enjoysharepoint.com/Articles/Details/change-webpart-title-using-sharepoint-client-object-model-258.aspx
    Best regards,
    Zhengyu Guo
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber
    Support, contact [email protected]
    Zhengyu Guo
    TechNet Community Support

  • Print message print cartridge cannot move because of paper jam but the paper jam has been cleared.

    My Envy 4502 printer message window says that the print cartridge cannot move and to clear any paper jam obstruction.  There was a paper jam and I cleared it but the message "the print cartridge cannot move and to clear any paper jam obstruction" remains there and I cannot remove it or get the printer to print.  I tried everythng listed in the troubleshooting section of the help guide in the software.  I uninstalled the printer and then reinstalled it which didn't help  in the slightest--the message about the print cartridge is still there.  I also tried unplugging the printer overnight (to try to clear the memory)  and this also did not help--that message is still there.  By the way, I can easily move the printer cartridge by hand and I can hear the cartridge moving when the printer attempts to work.  I would appreciate any help from anyone to get my printer to  work again!

    Hi Cat2c,
    Welcome to the hp support forum,
    Thank you for your query.
    Please find steps to remove paper jam.
    Hope this helps
    I am a HP Employee.
    The opinions expressed here are my personal opinions, not of HP.
    Make it easier for other people to find solutions, by marking an answer “Accept as Solution” if it solves your problem.
    Click on Thumbs up if my post helped you.

  • How to Get user profile properties in provider -cloud hosted app in sharepoint online - office 365 using REST API?

    How to Get user profile properties in provider -cloud hosted app in sharepoint online - office 365 using REST API?
    any idea?

    Hi,
    From your description, my understanding is that you want to get user profile properties in provider-hosted app in SharePoint online using REST API.
    Here is sample code for getting user profile properties:
    http://www.vrdmn.com/2013/07/sharepoint-2013-get-userprofile.html
    Here is a blog below about accessing data from the provider-host apps:
    http://dannyjessee.com/blog/index.php/2014/07/accessing-sharepoint-data-from-provider-hosted-apps-use-the-right-context/
    Best Regards,
    Vincent Han
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Get local sql server data in sharepoint online

    Hi
      Can anyone tell, how to  get local sql server data in SharePoint online.

    Hi Partha,
    Are you taking about local content db to SharePoint Online, if yes then there is not direct way to restore your local content db to online instead if you have small data then you can save your site as a template including content and the upload that template
    and create site on online using that template.
    Below mentioned link might also help:
    http://www.dos2web.com/Cloud/index.php/introducing-sharepoint-in-the-cloud/migrating-from-on-premises-to-sharepoint-online
    If want to display data from any SQL database into your online site, please follow the below link
    http://community.office365.com/en-us/f/148/t/178875.aspx
    https://nhutcmos.wordpress.com/tag/show-sql-data-to-sharepoint/
    Best Regards,
    Brij K

  • SharePoint Online - storage options (large exiting file store)

    We would like to implement a SharePoint Online solution to provide remote access to shared files.
    Ideally we would migrate our existing file store, but this is well over 500GB. Is SharePoint a viable solution for storing large volumes of data? I had looked into the possibility of RBS, but this is unsupported for SharePoint Online.
    Any input would be greatly appreciated.

    Hi sara_williams79. SharePoint Online can be used for large file stores but you should be aware of some key limitations. Each site collection in SharePoint Online can store a maximum of 100GB of data; so you would need at least 6 site collections for
    your data. Maximum file size in SharePoint Online is 2GB. Any files over that size will not upload.
    Document libraries in SharePoint Online can hold millions of documents but any library that holds over 5,000 items (or 20,000 in SkyDrive Pro library) will cause issues for some client tools like SkyDrive Pro sync client. Therefore do plan
    for some time to check and reorganise your data to fit within the storage constraints and the SkyDrive Pro sync client (on the libraries you plan to use with it).
    Further information about SharePoint Online storage boundaries is documented here:
    http://office.microsoft.com/en-us/office365-sharepoint-online-enterprise-help/sharepoint-online-software-boundaries-and-limits-HA102694293.aspx
    Are you planning to migrate users' home folders to SharePoint Online? SharePoint Online offers a good solution for this kind of data; each user receives 25GB of personal file storage in their SkyDrive Pro site which can be increased to a maximum 100GB.
    Myles Jeffery | Office 365 MVP |
    Try My File Migration Tool for Office 365 SharePoint Online

  • SharePoint Online Administration

    Hi,
    I am working on to administering SharePoint online using PowerShell cmdlets. 
    Is there any way I can enable "Auditing"  for a site collection using PowerShell command.
    Through Web interface, I can do the same by :
    Entering Site collection URL --> Click on Site Settings --> Click "Site collection audit settings"
    --> Enable the events for auditing.
    Any help with doing the same task automatedly using PowerShell command with C# code.
    Thanks
    in advance !

    Unfortunately not. While we can traditionally do this on-prem with Get-SPSite and set the AuditFlags, online the Get-SPOSite cmdlet does not offer exposure to the audit properties or methods.
    Here is an index of the SPO cmdlets: http://technet.microsoft.com/en-us/library/fp161364.aspx
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Creating Custom Page Size less than one inch

    I currently have Acrobat 6 on Windows XP, and it appears that I cannot set a custom page size less than one inch (Using Printer Preferences). Is there another method I can use to create a PDF from Publisher that has a page size less than one inch? If not, would updating to Acrobat 9 allow me to print to a custom page size of less than one inch?

    Thanks Peggy,
    I tried deleting the preference file and restarting Pages but I still have the same problem with the custom page size. When I start Pages I am presented with a bunch of templates so I choose Blank then I go through my procedure to select the custom page size that I created and always end up back at an A4 document.
    I have used the demo version of Stone Create to do what I needed to do with the small page size (ie. create a small ad) but it is a pain that I paid for Pages and now will need to buy something like Stone Create to do what I need. Although, that said, having used Stone Create for this little ad I must say that for the price it seems like a pretty decent program that will do a whole lot of the desktop publishing type of functions without the rather steep prices of the Adobe products. I kind of wish I had bought this program instead of Pages now.
    Cheers,
    Graham

  • SharePoint online - "open in Explorer" - cannot move file to subfolder - access denied.

    Windows 8.1, office 365 64bit.
    It is suggested that webdav is not compatible with 64 Bit office.
    see "Although I haven’t tested, my understanding is WebDEV doesn’t work for 64-bit Office 2013 edition."  (social.technet.microsoft.com/Forums/office/en-US/newthread?category=sharepoint&forum=sharepointgeneral&prof=required)
    Can someone confirm this or provide a definitive fix to the problem below?
    Problem:
    Using SharePoint online I browse to a Library then click "Open library in Windows Exporer."
    Using  internet explorer I can create a file but cannot move that file to a subfolder  -> "Error 0x800700E0 - Access Denied".
    The screen grab below shows error returned when attempting to move test9.txt to the CHANGE REQUEST folder.
    (On my Windows 7, Office 2010 laptop I can move the file - no error).
    I have googled this and completed many suggested fixes (check stay logged-in, add to trusted sites, ensure weblcient service is running, edited registry etc. 

    Hi,
    I tested the same scenario per your post, and my environment is windows 8.1 with 64-bit Office 2013 installed.
    When I accessed the SharePoint Online site library with Open with Explorer for the first time, the same error occurred when moving documents to a subfolder.
    Then when I add the site to the trusted site in Internet Explorer(IE), then re-open the site in IE. And then open the library with Open with Explorer, the issue did not occur when moving documents to a subfolder.
    Please make sure that the sites are added to the trusted sites in IE.
    And please also check if the account has permission to move the files to subfolder in SharePoint library.
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • Cannot see managed properties values in search result webpart- Sharepoint online

    Hi,
    Cannot see custom managed properties at site collection level in ResultScriptWebPart for SharePoint online. where as it is visible when i create managed properties @SSA (Search Service Application) level.
    Below are the steps which I followed:
    1) I have added few custom managed properties at Search Site collection level in SharePoint online.
    2) Mapped those properties to user profile crawled properties
    3) We are using those custom managed properties in ResultScriptWebPart(People Search Core Results) by using ItemTemplate
    I cannot see those managed properties in search result.When I debug it in browser it comes as null.
    But when I add these managed properties @SSA (Search Service Application) level I can see the value in search result webpart.
      What is the reason value doesn't get populated  at Site Collection level?
    Thanks,
    Prashant A

    Hi Prashant,
    Based on your description, the site collection managed property cannot work in SharePoint Online.
    For troubleshooting this issue, I recommend to verify the things below:
    Please make sure that the full crawl has been run after creating the managed property.
    Please check if the managed property is set to be searchable.
    Please search with this managed property to see if the results can be returned.
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • Add Right Side Column and Web Parts to custom Master page in SharePoint Online

    Hello everyone, 
    I hope this is a simple question, however I was fighting the issue it presents for a while. I am in the process of customizing SharePoint Online Look-and-feel with a new layout.
    The site collection was created as a
    Team Site before I got involved with the project, and populated with numerous sub-sites and pages. I activated required
    publishing features, created html with corresponding styles and graphics, and used the Design Manager to convert the html file to the custom Master page. While SharePoint automatically assigned “ContentPlaceHolderMain” div area, I
    also used default Oslo page as example to copy sections of the code for dynamic components (left column and navigation, recent items, the ribbon, etc.) from it and placed them in my new master page, pointed all CSS references to
    my custom style sheets, etc. Everything works great, however I need to make one last addition -
    my task is to make changes to display web parts such as Calendar and Recent Documents in the right column in the Master page.
    My custom layout has a header, footer, main pan and two side columns. Most of the default master templates come with the LEFT column already embedded and populated with several placeholder
    to serve dynamic content (PlaceHolderLeftNavBarTop, PlaceHolderQuickLaunchTop, PlaceHolderLeftNavBarDataSource, PlaceHolderLeftActions, so on).
    My challenge is that I have the RIGHT side column as well, for which I don’t think the default placeholder exists. I need to add a small Calendar box and Recent Documents parts to it, so they
    display across the entire site governed by this master page.
    The issue is –
    even after activating Publishing features (enabled SharePoint Server Publishing Infrastructure under Site Collection Level, and SharePoint Server Publishing under the Site
    Level), there is no Snippet feature (usually available under the generic Publishing Site); this customization of the Team Site allows using Designer and apply custom templates, themes, so on, just like you would under the Publishing collection, but not the
    Snippet utility I could use as the solution to embed the web parts on the master page.
    Recreating the entire site under Publishing Collection is not an option due to the directions I was given, I am to use this existing one, and need to see if
    there is a workaround to either activate the Snippet feature or use another solution to display the web parts inside of the column in the Master page.
    If the only solution is to use Web Part Zone, what are the steps to add it AND populate it with the abovementioned apps?
    Can anyone suggest how to create a workaround and add this feature? The environment is role-based so both elements need to be dynamically rendered based on the user’s role and activities.
    I am more of a front end designer than developer, so if any custom coding and set up required, please kindly provide some basic steps, if possible?..
    I greatly appreciate any help and suggestions!
    Thank You!
    Jeff
    Jeff V.

    Updating your Master Page to also include a right rail should be sraight forward enough with a new div or divs in your master page and then the proper styles to make room for this column as well as position the column.
    I have not seen why you cannot find the snippet gallery link when previewing a HTML Master Page in the browser. Have you tried loading the snippet gallery by its url? As an example, for my tenant on SPO, I can load the Snippet Gallery for the olso.master
    with the following url:
    https://pixelmill.sharepoint.com/_layouts/15/ComponentConfigureControls.aspx?ComponentName=TopNavigationNoFlyoutWithStartNode&Url=%2F_catalogs%2Fmasterpage%2Foslo.master
    Change the domain to match yours as well as update the "Url" querystring var to point to your master page. See if that loads the snippet gallery.
    Eric Overfield - PixelMill -
    ericoverfield.com -
    @EricOverfield

  • Managed property in a site collection (powershell - SharePoint online)

    Link to my site collection -> https://web.domain.com/sites/SC/_layouts/15/listmanagedproperties.aspx?level=sitecol
    when opening an url similar to this one and filter on a property name refinablestring00
    What I need is to is to add a mapping to do is to add a mapping
    Mappings to crawled properties
    With powershell.
    Assume that a full crawl has finished. That all crawled properties exist.
    I want to add "ows_GoPro_x0020_Code" and I also want to change the Alias to "ProjectNumber"
    What is the best way to do this via powershell for SharePoint 2013 online?
    Do I need to build a sandboxed solution for this?

    HI,i would recommend  run the PowerShell cmdlet to check if this website exists. Here are the detailed steps:
    1. Set up the SharePoint Online Management Shell Windows PowerShell environment
    http://technet.microsoft.com/en-us/library/fp161372.aspx
    2. Run the command Get-SPOSite, it will return all site collections.
    3. Check if the problematic public site collection is shown in the result. If it shows up, run another command to remove it. For example:
    Remove-SPOSite -Identity https://expertsharepoint/sites/site1 -NoWait
    This will remove the site collection named https://expertsharepoint/sites/site1 from the site collections list and moves it to the Recycle Bin.
    4. Delete the site from the Recycle Bin:
    Remove-SPODeletedSite -Identity https://expertsharepoint/sites/site1
    Anil Avula[MCP,MCSE,MCSA,MCTS,MCITP,MCSM] See Me At: http://expertsharepoint.blogspot.de/

  • Using sharepoint designer 2013 - connected to sharepoint online - but getting " data source file cannot be saved" after making a new linked datasource

    using sharepoint designer 2013 - connected to sharepoint online - but getting " data source file cannot be saved" after making a new linked datasource

    Hi,
    Based on your description, I have done a test and I can’t reproduce your issue.
    I have used SharePoint Designer 2013 to open a SharePoint Online site and there are no issues.
    I’d like to clarify whether you encounter any issues when accessing SharePoint Online sites. If there are no issues during the accessing procedure, SharePoint Online service should be working fine at your side. The issue may be caused by specific SharePoint
    Designer client or network. I suggest you refer to the following steps to troubleshoot the issue.
    1. Use SharePoint Designer to open another site and check whether it is successful.
    2. When you are prompted to enter Office 365 account and password, try other users’ accounts and select the remembering the credential.
    3. Perform the connection procedure under another environment and verify whether the issue is resolved.
    If the issue persists, can you provide related screenshots for further troubleshooting?
    Best Regards,
    Lisa Chen
    Lisa Chen
    TechNet Community Support

Maybe you are looking for

  • How do i upload video from my pc to my phone

    How to upload video from pc to iphone

  • Display HTML in Java Applet

    Is it possible to display HTML text in some control in Applet. I do not want to use the swing class for that. please guide me. I am currently using the TextArea to display text which displays text only in a single color. But I want to display text in

  • I have lost my search bar. I would like to have it back.

    I wanted to remove a search engine and end up removing the search bar.

  • Use of  function module FTP_R3_TO_SERVER

    Hi, Q1. Can anyone please provide me the sample for for transffering data from R3 to legacy system by using FTP_R3_TO_SERVER function module. Q2.  Can you also explain what exactly this function module does, does it place the file in Application serv

  • Sizing pages to pictures

    I want to create a series of web pages each of which will hold one illustration with, underneath, a caption with linking code built-in. There will also be navigation buttons. If you think this is a picture gallery or photo album you have it in one. I