Is it possible to show a 'My Activity' web part on a SharePoint site if 'My Sites' is not available?

Is it possible to show a 'My Activity' web part on a SharePoint site if 'My Sites' is not available?
For example, say there's a SharePoint installation dedicated to particular (custom) SharePoint site. The users go to the site to carry out their tasks. There's no 'My Site' set up in this installation (and for other reasons I'm told it's not an option).
Is it possible to show a web part here that shows the user's recent activity? The built-in web part for this fails with the error 'Invalid URI: The URI is empty', and the details of it appear to say it's looking for the user's My Site to find out what to show:
SPMicrofeedContext.SetMySiteHostForContext failed System.UriFormatException: Invalid URI: The URI is empty.     at System.Uri.CreateThis(String uri, Boolean dontEscape, UriKind uriKind)     at Microsoft.Office.Server.Microfeed.SPMicrofeedContext.SetMySiteHostForContext()
So, while I'd be happy to write a web part (or app part) to display the information instead of using the default part, I'm not sure SharePoint is even storing the activity in a way I can access.
Some pages like the following: http://sharepointmystery.com/2012/07/22/activity-feeds-in-sharepoint-2013/ make me think it won't be possible - it says: 'The major change from 2010 is that all the [activity] content is stored in the user’s personal site, not
in a common database.'
Are activity feeds dependent on 'My Sites' or is there a way to access the information when 'My Sites' is not present in the deployment? I can't find a definitive answer in Microsoft's documentation.

To clarify, do you have the User Profile Service (including MySite Host) up and running on this environment? That's subtley different to the full MySite experience which is clearly not applicable...
Interesting question - thanks for that. Until now I didn't realise there was a difference.
The User Profile Service is up and running, but no MySite Host is set. (I don't believe MySite will be available anywhere here. I guess that means there's no valid MySite Host for me to use.)
Many thanks,
    Geoff

Similar Messages

  • Item title won't show in Content Search Web Part

    Hi,
    I am trying to show news items from one site on another site. I can show all attributes so far, except for the title.
    The field name of the title in the news item is 'title'.
    In crawled properties, I have linked the title to Title, RefinableString00 and RefinableString12.
    But the title either displays DispForm.aspx as a title (when I select title), or nothing (when I select the mapped property RefinableString00 or RefinableString12).
    What can/should I do to show the title field?

    Hi,
    According to your post, my understanding is that Item title did not show in Content Search Web Part.
    You need to open the webpart either in SP designer or visual studio or as matter of fact in Notepad and search for the special property. And then add your list columns which you wants to display.
    More information:
    How to: Display Custom Fields in a SharePoint Content By Query Web Part (ECM)
    SharePoint: Content Query Webpart - OOB, Custom Fields, Custom Style with Table format
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • After adding list view into the web part page, the items and list control ribbon is not activated.

    I created new webpart page and added one list view web part into the page.
    However I can see the ITEMS and LIST tabs on ribbon area, but all the buttons are deactivated.
    Do I have to activate any feature for this or any settings are needed for the webpart?
    I already have full permission for this site.
    For your easy understand I added the screenshot.

    Thanks for you advice.
    However I am currently using the context menu and edit link in the view.
    My Client keep complaining about the ribbon is not activated even thought it works fine in the SharePoint 2010.

  • Is it possible to use a content query web part to pull and display rows/items from an Excel spreadsheet saved in a SP library?

    I have an Excel spreadsheet that I want to upload to an SP library. Is it possible to display these items (in a non-excel format, more like an SP list format) in a web part? 

    Have you tried using the Excel web part
    Display Excel content in an Excel Web Access Web Part

  • Cut and paste files by dragging in finder is only possible by giving my password. in the menu bar cmd x is depicted in grey so not available. How to c

    I can only cut and paste files in finder (with the mouse) when i give my password at every single action. This is too time consuming of course. The option in the menue bar cmd x is depicted in grey in stead of black, thus not possible. How to solve this? I use the lion version.

    Wow, thanks for the tip!  Should've known Apple wouldn't have made it any easier for us to tap this hidden function. 
    In the meantime I've gone back to Snow Leopard on my MacBook Pro 13" 2010 model, where I use PathFinder as a Finder alternative that allows cutting and pasting, among other features I like (such as enlarging the default sidebar icon sizes in 10.6.8).  My battery life was cut in half with Lion and most of the new features have been supplemented in Snow Leopard by third-party utilities.  The only missing feature is iCloud, but I'm convinced Apple will backhaul this functionality to Snow Leopard at some time.  Otherwise frustrated Snow Leopard users will move to Windows to move up to the cloud!

  • Publishing site announcement list, calendar list not available even activating feature

    " Team Collaboration List " feature is activated on publishing site. Again deactivated and activated, browser restarted, but the problem exists. No announcement list, task list, calendar list template found.
    Please let me know the way to fix the issue.

    Hi Shilabhadra,
    According to your description, my understanding is that you want to use announcement, task list, calendar list template at publishing site in SharePoint 2013.
    Please try to use PowerShell commands to disable and enable " Team Collaboration List " feature at your publishing site. You can do as opening SharePoint 2013 Management Shell, then typing the following commands:
    Disable-SPFeature –Identity 00BFEA71-4EA5-48D4-A4AD-7EA5C011ABE5 -url <the url of the publishing site>
    Enable-SPFeature –Identity 00BFEA71-4EA5-48D4-A4AD-7EA5C011ABE5 -url <the url of the publishing site>
    In the above commands, 00BFEA71-4EA5-48D4-A4AD-7EA5C011ABE5  is the identity of " Team Collaboration List " feature.
    More information, please refer to the links:
    http://platinumdogs.me/2009/12/10/team-collaboration-and-publishing-features/
    http://www.dotnetmafia.com/blogs/dotnettipoftheday/archive/2011/01/04/activating-and-deactivating-features-with-powershell-in-sharepoint-2010.aspx
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Is it possible for a Web Part to interact with a list the user does not have permissions for?

    Say I have a custom web part that queries a list or adds list items, etc. Does the user have to have the equivalent permissions on the list itself to use the web part? Would the SPSecurity.RunWithElevatedPrivileges Method be a way to get around this? Or is
    there a better way?
    Basically I want certain users to have a more controlled access to a list. But if I try to access the page with the web part on an account without permissions for the list, I get an Access Denied response.

    One way of elevating code is, as you already mentioned, using SPSecurity.RunWithElevatedPrivileges which will run SPSecurity.CodeToRunElevated with Full Control rights. From MSDN documentation of the method for SP 2013 (http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spsecurity.runwithelevatedprivileges.aspx)
    you can see that this code runs under Application Pool identity:
        Type: Microsoft.SharePoint.SPSecurity.CodeToRunElevated
        A delegate method that is to run with elevated rights. This method runs under the Application Pool identity, which has site collection administrator privileges on all site collections hosted by that application pool.
    Another method, a bit more security fine-grained, can be used. The idea is to instantiate new SPSite object using overloaded constructor which takes Microsoft.SharePoint.SPUserToken as a parameter: http://msdn.microsoft.com/EN-US/library/ms469253(v=office.15).aspx.
    Example can be seen here: http://www.sharepointdeveloperhq.com/2009/04/how-to-programmatically-impersonate-users-in-sharepoint/. Using this approach, you can run your code in the context of the user who doesn't necessarily have to be site collection admin.
    This user can have only access to the list in question.

  • In WebI report, is that possible to show ZERO in NULL fields?

    in WebI report, is that possible to show ZERO in NULL fields? crystal report has no issue, but i could not find a way to set ZERO to NULL field
    can you tell?

    Bram,
    This formula you used above is corrcet but is returning you a character '0' and when a descending sort is applied character values will be at the top.
    So , apply the formula 'ToNumber' on the value returned form the above formula :-
    ToNumber(above formula)
    And then it will change 0 to number and give you the exact sort order.
    Thanks,
    Rohini Haksar

  • Iphone 6 tells me that "Item not available" in my country UK, when i click on the itunes store icon for the app to open the music, movies or tv shows section of the app. is this a bug?

    I am based in the UK and have just got a new iphone 6, everything works well except when i try to turn on the itunes store app -  i can do a search and buy music etc that way, within the app, however, if i go to Music, Movies or the TV shows section within the Store app, i get a message come up saying "Item Not Available" - This item you've requested is not currently available in the UK Store, but it is available in the US store. Tap Change Store to view this item".   I therefore cannot browse the music, movies or tv shows sections at all, nothing shows up except that message.  All my previous itunes purchases have downloaded ok, and i can access them. My apple ID works fine and restrictions on the iphone are turned OFF. The App Store app works normally. Connection etc is all fine and I can access itunes  in the normal way on my ipad and laptop, so this is just an iphone problem. Any ideas? is this a bug? I cant find anyone else with exactly the same problem. By the way, the same message comes up when i click on the red Music icon, on the iphone (situated next to the Safari icon) and then go to the "Store" via that app.  my playlists are in tact, but as soon as i click that Store button, I am told that the Item is unavailable - not that i have chosen any Item lol, I just want to access the store in the normal way. Thank you in advance for any suggestions you can give

    It is working now. I no longer get the message about the item not being available in the US and I can access the store.

  • Picture Library Slideshow Web Part - Is it possible to switch between two image librarys in one slideshow

    In our office we have a screen at the front desk that runs a PP slideshow showing welcome messages to guests arriving.
    SharePoint may not be the solution, but the overall objective is to find a way to have a library of X number of photos (say the library size is 30 images) and a separate library of X number of welcome messages (usually ~5 images).
    We want the slideshow to randomly pull 5 images from the 1st pool and then play the images in the 2nd Pool.
    Let me know if you have heard of a solution similar to this. Thanks!

    Hi Twirlz03,
    According to your description, my understanding is that you want to display teo picutre libraries in a picture slideshow web part in SharePoint 2010.
    By default, one Picture Slideshow web part only display images fron one specifical picutre library, it is unable to apply for multiple picture libraries.
    You can try to utilize Content Query web part to aggregate picture items from the site collection or site. However, you mean that you want the slideshow to randomly pull 5 images from first library and then play the images in the second library, I’m afriad
    that it is hard to achieve it.
    More information about aggregating picture items , please refer to section 4 of the link below:
    http://blog.vgrem.com/2013/04/27/beyond-the-slideshow-web-part-capabilities-in-sharepoint-2010/
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • Adobe Muse: How to show Submenu on active sub sites

    Hey there,
    I was just wondering:
    Is it possible to show the submenu of the concerning page in Adobe Muse if you are on a Subpage.
    E.g if I had the mainpages Home, About and Contact. About has two subpages in a submenu.
    What I want to do is if you are on one subpage of "About", the submenu of the About menu item is shown with the subpage marked as active.
    Thanks for you help!

    Hi
    Please refer to these threads :
    https://forums.adobe.com/message/4771592#4771592
    https://forums.adobe.com/message/6148234#6148234
    Thanks,
    Sanjit

  • How do I limit the number of emails that show in my active mailbox?  There was a way in Settings on ios 6, but i can't find it in ios 7.

    How do I limit the number of emails that show in my active mailbox?  There was a way in Settings on ios 6, but i can't find it in ios 7.

    You need to delete your current hotmail account set up on your iphone.
    Once this has done click 'Add Account' and select the new 'outlook.com' tab.
    Set up your hotmail account again from scratch and this will then allow you to select how many weeks/months of emails you sync to your phone.
    Im not sure if anyone else had a similar problem to me prior to iOS 7, but if i deleted an email from my hotmail account on my iphone - it wouldnt sync with my actual hotmail account. So when i logged in online all the emails I had deleted on my phone would still be showing as unread.
    But by setting the account up as above, they now sync perfectly.
    Well for me anyway

  • Possible to show bottom of scrolling text first when icon is displayed?

    Hi,
    Does anyone know if it is possible to show the bottom of
    scrolling text when the display comes up? For instance, let's say
    you have 20 lines of text in a scrolling display, but it only has
    room for 10. By default, Authorware shows the top 10 lines in the
    scrolled display, not the bottom 10. I want to show the bottom
    10--is this possible?
    Thanks,
    Edwin

    Hi,
    Well, I decided to have the most current information at the
    top of the display. For instance, if it were a chat, the most
    current chat info would be on top instead of on bottom. That fixed
    the problem adequately.
    Edwin

  • Windows vista system, continuously trying to download a DRM file in Adobe Digital Editions application shows "Error check activation". I have authorized the Fire Wall and still the same.

    windows vista system, continuously trying to download a DRM file in Adobe Digital Editions application shows "Error check activation". I have authorized the Fire Wall and still the same.

    Since Re-activation as suggested by the link above is not working for you, Can you please confirm the following:
    The OperatorURL is reachable. ( you can find the operatorURL from the acsm file by opening it in notepad,etc)
    And Book is still available on the book-store for purchase.
    (If any of first two are not available, you might have to talk to distributor for next action item to get the book. Since you will have record of purchasing the book, (in my opinion) they should provide you the new token for downloading the book)
    And please confirm this that you used the same userID for downloading that you used when you first fulfilled/downloaded the book.
    (If it is the case, then you have to use the correct userID)
    I hope it helps.

  • Is it possible to show a presentation from the original iPad via wireless on an older projector with no HDMI input?

    is it possible to show a presentation from the original iPad via wireless on an older projector with no HDMI input? If so, what equipment is needed?

    The ipad not support wireless projector yet.
    The workaround is you are using computer that connected wirelessly [needs 2 wireless adapter] / via cable to projector and connected also to the wireless router.
    You are controlling the computer via wireless connected to the router using remote desktop app like splashtop, teamviewer, logmein, vnc, etc. You must set the remote desktop port and app at the computer too as ipad app support.

Maybe you are looking for

  • Safari not remembering username and password

    Hello, I have my settings set so that Safari remembers my username and passwords to make logins faster. One site I use for school has had my username and password saved since I first started using it. But all of a sudden, it's not remembering my info

  • Slow ADSL speed since power failure during trainin...

    Hi all, When our BT total broadband was installed, we had a power failure during the 10 day training period (back in June). At the start of the training period, we had a speed of 3936 kbps downstream: 16:32:27, 28 Jun. ( 76.590000) DSL noise margin:

  • The buttons on the top row of my computer is there a way to tun off and on?

    the buttons on the top row of my computer is there a way to tun off and on?

  • M1212nf

    Hi! Сonsultation is necessary. The m1212nf model is removed from sale? if yes that when it occurred? Thanks in advance!

  • Tan pan in pld

    I am creating report for a/r invoice.I want to display ecc,pan,tin and lst.For this I have used the table Administrator.But from this table I am getting only three values i.e Federal Tax ID,Federal Tax ID2,Federal Tax ID1.I am getting only one value