SharePoint 2013 wireframe which tool best suits

Hi All,
      Any tips or resources on the best wireframe tool for sharepoint 2013.
Thanks

HI Patrick,please find the link below that explains on different tools used for wire frame.
http://blogs.pythagoras.co.uk/2013/08/tools-for-sharepoint-user-experience-ux-design-wireframing/
Anil Avula[Partner,MCP,MCSE,MCSA,MCTS,MCITP,MCSM] See Me At: http://expertsharepoint.blogspot.de/

Similar Messages

  • MySite NewsFeed is not showing the feeds from a SharePoint 2013 site which followed programmatically

    Hi Experts,
    I am facing an issue with following SharePoint 2013 site programmatically. When i was followed a site programmatically, unable to see the posts from followed site in MySite NewsFeed. But i can able to see the followed site in the list of sites i am following.
    If i did the same manually by clicking on Follow link on right top of the site, i can able to see the posts from the followed site in MySite NewsFeed.
    Here is my code. I am doing this activity in an event receiver, while adding an user to the site. 
                                SPSocialFollowingManager manager = new SPSocialFollowingManager(profile);
                                SPSocialActorInfo actorInfo = new SPSocialActorInfo();
                                actorInfo.ContentUri = new Uri(properties.Web.Url);
                                actorInfo.AccountName = targetUser.LoginName;
                                actorInfo.ActorType = SPSocialActorType.Site;
                                manager.Follow(actorInfo);
    Any help would be appreciated. Thanks in advance!
    dinesh

    Hi,
    According to your description, my understanding is that you want to follow site programmatically in SharePoint 2013.
    I suggest you debug the code step by step to check whether the variable is valid.
    You can also create a simple console application to test whether it works.
    Here is a code snippet for your reference:
    SPServiceContext serverContext = SPServiceContext.GetContext(web.Site);
    UserProfileManager profileManager = new UserProfileManager(serverContext);
    string userString = user.LoginName.ToString();
    UserProfile userProfile = profileManager.GetUserProfile(userString);
    if (userProfile != null)
    SPSocialFollowingManager manager = new
    SPSocialFollowingManager(userProfile);
    SPSocialActorInfo actorInfo = new SPSocialActorInfo();
    actorInfo.ContentUri = new Uri(web.Url);
    actorInfo.AccountName = user.LoginName;
    actorInfo.ActorType = SPSocialActorType.Site;
    manager.Follow(actorInfo);
    More detailed information about follow site programmatically:
    http://stackoverflow.com/questions/23271133/how-do-i-follow-site-in-sharepoint-2013-with-ssom
    http://msdn.microsoft.com/en-us/library/office/jj163217(v=office.15).aspx
    Best regards,
    ZhengyuGuo
    Zhengyu Guo
    TechNet Community Support

  • Which tools best for which tasks and project workflow planning?

    I am just getting comfortable with the basics of several CS tools and often need to use more than one to build a final product. Since I don't have a long history with the tools I still struggle learning which tool to use for specific tasks and then how best to use the variety of created assets in the various programs.
    Currently using CS4 After Effects, Flash, and Photoshop to create web flash swf files. Most books, forums, tutorials, etc. focus on a given tool and how to use its features. I have looked but not found books that take you through a project start to end that spans several tools and using the best parts of each to accomplish pieces of the finished project.
    Also, I find getting assets from one tool to the next does not always work out so well. For example, a text layer in AE can be exported a couple ways but by the time it gets into Flash it no longer retains the original text layer and is either rasterized or broekn up. So that is where better understanding workflow, if that is the right term, might help me ensure I use the right tool at the right time in the right order to minimize these kinds of problems.

    The guys from Waterloo labs did something similar: http://goo.gl/JkOy
    They used a sbRIO, which is very similar to myRIO and you should have no problem doing this with myRIO.  More info on their setup can be found here: http://www.ni.com/white-paper/11966/en/.  You may even be able to re-use some of their code.
    -Sam K
    LabVIEW Hacker
    Join / Follow the LabVIEW Hacker Group on google+

  • Which tool best for problem checking

    guys, which tool, free or not is the best solution to use to check the system/harddrive for problems?

    Like Steve says, you should always start out with Disk Utility. It comes with the computer. Another utility that comes with the computer is the Apple Hardware Test (AHT). It's very good for diagnosing hardware problems. However, its messages aren't necessarily the most helpful. However, if the AHT flags an error, it's a good idea to have the computer looked at by an Apple technician.
    Two other utilities that aren't free are TechTool Pro and Alsoft's DiskWarrior. However, DiskWarrior is currently not compatible with Intel-based Macs. Its focus is mainly on rebuilding the disk directory, the catalog of which files you have and where they are on your drive. DiskWarrior can often fix problems that Disk Utility can't.
    TechTool Pro, on the other hand, is a more comprehensive diagnostic tool. It can check your main memory, ports, etc. One important hard drive test it can do is a surface scan, where it tries every sector on your disk, looking for bad blocks. While the Apple Hardware Test does some of the same tests (memory, processor, etc.), TechTool Pro's results are generally more informative than those from the AHT. For example, you can get a detailed summary of your hard drive's S.M.A.R.T. attributes.
    I'll also mention smartmontools, a command-line tool to check and monitor the S.M.A.R.T. system in your drive. This one's for real geeks, though, as you need to download the source code and compile it yourself. However, it also prints out very detailed reports on the status of your drive.
    Finally, though these tools are pretty good to have around, they're no substitute for a good backup, either of your data, or your whole system. Sometimes drives just fail without warning, and none of the software would help. That's when having a recent backup is crucial. I'm a big fan of Shirt Pocket's Super Duper!. It makes backing up pretty painless, and has saved me from major heartache a couple of times.
    Another drive cloning program is Mike Bombich's Carbon Copy Cloner. It's quite usable, and it's donationware, so the price can be cheaper than Super Duper!, but it's also a bit more difficult to use, especially in making partial backups.
    charlie

  • Sharepoint 2013 Permission Management Tool

    Hey,
          I'm currently working for a small lab group that routinely fluctuates members. We are looking to create a new site collection with various unique permissions in the sub-sites. I was wondering if there is any third party application
    that can quickly pull permissions from a database (excel or access document) and auto populate the permissions of the sites. If this can be done w/o a third party application, even better.
         Additionally we would like some graphical depiction of what users have access to what sub sites and easily be able to change it. Any and all help will be extremely appreciated. Thanks!
    Best,
    Jordan

    Hi Jordan,
    SharePoint can give some reporting on the existing permissions, but there is no easy way to import any changes or templates permissions.  You would need to script the changes in PowerShell.
    I did this for duplicating identical item level permission, so the solution worked well.  Everything was static save the site URL, so I did not use a dynamics excel sheet for the permissions.  I based the script on this from David Dean:
    http://www.insource.com/sharing-with-sharepoint/
    As far as 3rd party tools, this is a common use case and my firm has a tool which reports on current permissions and allows you to clone or import from excel (DocAve 6).  I have seen similar from other vendors.  It sounds to me this is type of
    solution you will need, unless you can simplify the specific permissions requirements.
    Hope that helps,
    Al Lombardi
    Premier Field Engineer
    www.avepoint.com

  • Which  certification best suits my profile?

    Hi, I have done B Tech in Computer Science and MBA in IT and Operations. Currently I am working in Bangalore with a medium scale enterprise. I want to pursue SAP certification and work in the same field. But I am in dilemma that which course to choose. I can share my resume with the concerned person. Please help me out.
    Thanks
    Vikas

    Hi,
    What I meant to say was:
    Better to do some SAP training, get a SAP-related job, gain some knowledge, then do the SAP certification.
    Can't get a SAP job? The next best thing is to get a job - any job - in an organization that uses SAP. Then show them that you're interested, show them that you already have some SAP training. Volunteer to take on SAP duties.
    >it's almost impossible to land on a SAP consultant job without a SAP certification.
    This is a common (and expensive) misconception. I don't know anyone who landed a SAP job with just certification and no experience. Do you?
    cheers & good luck
    Paul

  • Which pattern best suites a diagram application?

    Hi all,
    I need to implement an application such as Rational Rose or Visio.
    I am intending to use the mvc pattern as all the info i have points in this direction.
    I think MVC, Decorator, mediator, builder, etc are all possible candidates but susspect that MVC is the best.
    Can someone please either confirm this or point me in the right direction
    Thanks in advance for any constructive criticism
    Graham

    Please explain what you mean by the application
    scope?Asking, "Should I use Mediator or Director for this application I'm creating?" is like asking, "Should I use 2x4s or plywood for this house I'm building?"
    You'll quite likely use more than one, and you don't use Mediator or Decroator or whatever for an application. You use them for smaller pieces of your app.
    The application is quite simple as i see it and may
    possibly be done without a pattern i only sugested a
    pattern as a means of teaching myself (using a
    pattern may possibly be incorrect).Whether you know it or not, you probably will end up using at least one pattern somewhere in your app. If you don't, there's a statistically good chance you've botched your design.
    I say this not because I think your app needs a pattern, but rather because patterns were created to codify recurring solutions that people used. Those patterns tend to pop up naturally all over the place in well-designed apps, so there's a good chance you'd have done the same thing.
    It's like asking "should I use a for loop for this app"? It's not at the app level that you need a for loop, but it's highly likely that you'll use one somewhere.

  • What is the build version for Sharepoint 2013 Server including trial version there is one?

    Hello Community
        When using WS2012 and Sharepoint 2013 Server, what
    build version for a Sharepoint 2013 Server farm should
    be applied and where do you get the cumulative update
    for it (trial version also if there is one)?
        Thank you
        Shabeaut

    Hi,
    According to your description, my understanding is that you want to know which SharePoint build version should be applied to Windows Server 2012 and where to get cumulative update.
    If you want to use SharePoint in Windows Server 2012, you can use the RTM version 15.0.4420.1017.
    For CU update and build version, I suggest you can refer the detailed article below:
    SharePoint 2013 Build Numbers
    Thanks
    Best Regards
    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]

  • SharePoint 2013 Discussion items "visibility" depending on permession for specific groups and users

    Hello,
    I have a blank site in SharePoint 2013 in which i activated `CommunityFeature` and i created a discussion board app which is displayed in a web part.
    Now, i want to be able to change the discussion visibility ... E.g. when i click on new discussion i want to have a people picker that allows me to choose people or groups that are allowed to see and reply for that discussion...
    How can this be made? can anyone help me please?

    Hi,
    The OOTB feature “Audience Targeting” on list item will be capable of your requirement.
    “List or library items can be targeted to appear only to people who are members of a particular group or audience”.
    More information about
    Audience Targeting:
    http://office.microsoft.com/en-001/sharepoint-server-help/target-content-to-specific-audiences-HA010169053.aspx
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

  • What is new and updated features in SharePoint 2013 ? Looking example in details about all.

    Hi,
    Any help?
    Thanks
    srabon

    Hi,
    SharePoint Server 2013 includes a wide variety of improvements and new features. Such as:
    Support the tools designers use: Flexibility in Branding
    Offline and Sync of My Site 
    Search Engine Optimization & Analytics is in Search
    Content Search Web Part
    Optimized mobile browser experience
    Rich Workflows
    Development gets more familiar
    New App Model
    Shredded Storage
    Social Features: Activity feeds
    Reference the following article:
    SharePoint 2013 Top 10 New Features
    What’s
    new in Microsoft SharePoint Server 2013
    Also a good book 
    by  you can have a look:
    Exploring
    Microsoft SharePoint 2013: New Features & Functions  
    Best Regards,
    Lisa Chen
    Lisa Chen
    TechNet Community Support

  • Multiple "Workflow Task (SharePoint 2013)" content type found

    Users on one specific sub-site reported that they are unable to add site columns to content type. When user clicks "add existing site column" user get error message - upon looking up on ULS, it indicate there were duplicate column "System.ArgumentException:
    No two choices should have the same ID". I came across similar issue on different site before and resolved it by deleting duplicate column, plus that site column was not used on any list or associated with any content type but this time duplicate
    column is "Task outcome" column which is associated with "Workflow Task(SharePoint2013)" content type. So looking up these two specific site column and content type I noticed there are 8 occurrence of each at affected site
    level (see below on image).
    Similarly there are 8 "Task Outcome" columns under Site Columns. So I refreshed staging env with prod copy and tried to delete "Workflow Task(SharePoint 2013" content type and got error message as shown below. Under Site features, I noticed
    "SharePoint 2013 Task List" feature was enabled, hoping this will do the trick I disabled it as we still use SharePoint 2010 workflows, but to no avail.
    Sorry, something went wrong
    The content type "Workflow Task (SharePoint 2013)" is part of an application feature.
    Not sure how it got started and something will try to find out but any advise on how to fix this issue?
    Thanks,
    MK Sin

    Hi Sin,
    According to your description, my understanding is that the users got an error when clicking “add existing site column”.
    For deleting the duplicate “Task outcome”column, you need to go to the “Workflow Task(SharePoint 2013)” content type, click the “Task outcome” column, and remove it from the content type.
    Then go to site columns, find the duplicate columns, and delete them and make sure only one “Task outcome” column exists.
    After the above, re-add the “Task outcome” into the “Workflow Task(SharePoint 2013)” content type.
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • Sharepoint 2013 + SQL Cluster

    Hi,
    I am working on configuring a Sharepoint 2013 farm, which is using a clustered SQL Server. When I come to configuring SQL aliases, do I use an alias pointing at either SQL Server or the "parent"?
    Thanks

    Hello ,
    You can refer below article for same .
    http://blogs.msdn.com/b/sambetts/archive/2013/04/24/sharepoint-2013-and-sql-server-alwayson-high-availability-sharepoint.aspx
    http://blogs.technet.com/b/saantil/archive/2012/04/25/sharepoint-and-sql-clustering.aspx
    Best Regards Kuldeep Verma
    Please remember to click "Mark As Answer" if a post solves your problem or "Vote As Helpful" if it was useful.

  • Sharepoint 2013 returning results from userprofiles

    Hello, I need some help in cleaning up the results from a search query.
    I've created a new page within SharePoint 2013 and added 2 script editors.
    One script editor holds a search box:
    <div unselectable="on">
    <label unselectable="on">First Name Search: </label>
    <input id="searchTextBox" type="text">
    <input id="getColleagues" type="button" value="Search">
    </div>
    <div id="resultsDiv" unselectable="on">
    </div>
    The other holds the search query:
    <script src="http://site/SiteAssets/jquery.min.js"></script>
    <script type="text/javascript">
    $(document).ready(function () {
    var spAppWebUrl = "http://site";
    $("#searchButton").click(function () {
    //var queryUrl = spAppWebUrl + "/_api/search/query?querytext='" + $("#searchTextBox").val() + "'";
    var wildcard = $("#searchTextBox").val() + "*";
    var queryUrl = spAppWebUrl + "/_api/search/query?querytext='*'&sourceid='b09a7990-05ea-4af9-81ef-edfab16c4e31'&rowlimit='500'&selectproperties='FirstName, LastName, PictureURL, SipAddress, PreferredName, WorkEmail'&refinementfilters='FirstName:"+ (wildcard) + "'";
    alert(queryUrl);
    $.ajax({ url: queryUrl, method: "GET", headers: { "Accept": "application/json; odata=verbose" }, success: onQuerySuccess, error: onQueryError });
    function onQuerySuccess(data) {
    var results = data.d.query.PrimaryQueryResult.RelevantResults.Table.Rows.results;
    $("#resultsDiv").append('<table>');
    $.each(results, function () {
    $("#resultsDiv").append('<tr>');
    $.each(this.Cells.results, function () {
    $("#resultsDiv").append('<td>' + this.Value + '</td>');
    $("#resultsDiv").append('</tr>');
    $("#resultsDiv").append('</table>');
    function onQueryError(error) {
    $("#resultsDiv").append(error.statusText)
    </script>
    I am getting results, but not just the selectedproperties: FirstName, LastName, PictureURL, SipAddress, PreferredName, WorkEmail.
    Can someone help me to get just the selectedproperties of FirstName, LastName, PictureURL, SipAddress, PreferredName, WorkEmail?
    Thanks

    Hi,
    According to your post, my understanding is that you want to get the User Profile properties using REST API.
    If you want to use Search Query, here is a tool for your reference:
    http://sp2013searchtool.codeplex.com/
    If you just want to get the User Profile properties, we can use SP.UserProfiles.PeopleManager
    to achieve it.
    Example:
    Get Multiple Properties for the current user:
    http://siteurl/_api/SP.UserProfiles.PeopleManager/GetMyProperties?$select=PictureUrl,AccountName
    More information is here:
    http://www.vrdmn.com/2013/07/sharepoint-2013-get-userprofile.html
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Will Office Web Apps Server 2013 work with SharePoint 2013 sites hosted in SP2010 compatibility mode?

    We are planning a upgrade of a SP2010 farm to 2013. There has been a bit of customization so we wish to run the old sites on the new SP2013 platform in SP2010 compatibility mode.
    So my question is will Office Web Apps Server 2013 work with the old sites hosted in compatibility mode?
    I found a similar query from March 2014 found here 
    http://sharepoint.stackexchange.com/questions/93101/office-web-apps-2010-running-on-sharepoint-2013-for-compatibility-mode-sites/116281#116281 
    Has there been an update released to resolve this
    Cheers D

    Hi  ,
    According to your description, my understanding is that you need to know whether Office Web Apps 2013 is working with SharePoint 2013 sites which is in SharePoint 2010 compatibility mode.
    For my test, Office Web Apps 2013 with SharePoint 2013 sites which is in SharePoint 2010 compatibility mode is working fine.
    Thanks,
    Eric
    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]
    Eric Tao
    TechNet Community Support

  • OneDrive for Business iPad App with on-premise SharePoint 2013

    I don't know if this has more to do with OneDrive for Business or SharePoint 2013 itself.
    Basically we are trying to log into OneDrive for Business on the iPad app but it says "Sorry, this app doesn't support this type of authentication"
    We are using Claims Based Authentication with our On-premise SharePoint 2013 environment, which according to this table is a supported method: h**p://office.microsoft.com/en-us/office365-sharepoint-online-enterprise-help/use-the-onedrive-for-business-app-on-an-iphone-or-ipad-HA104005688.aspx#_Supported__authentication
    We have tried different combinations of the username and url. Windows username, DOMAIN\username, email address, username@domain, etc. nothing seems to work.
    Any ideas on how to fix this?

    according to office blog, it does support SharePoint on prem with following authentication(NTLM & FBA)
    Introducing OneDrive for Business for iOS v1.2
    Q. Does this announcement apply to customers who have deployed SharePoint 2013 on-premises?
    A. Yes. The OneDrive for Business for iOS v1.2 app does support some SharePoint on-premises configurations (NTLM & FBA). We are committed to providing customers access to their OneDrive for Business in SharePoint 2013 on-premises. We also recently introduced
    new capabilities in SharePoint 2013 SP1 to more seamlessly connect on-premises investments to OneDrive for Business in Office 365. More information to be shared at SharePoint Conference 2014 (March 3-6 in Las, Vegas); we will link to the relevant information
    once it has been posted next week.
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

Maybe you are looking for

  • Safari as RSS Reader and Embedded Videos

    I'm trying to slim down the amount of extraneous software on my computer and would like to begin using Safari 4 as my RSS reader. But, a lot of my favorite web feeds have posts containing embedded youtube videos or other multi-media besides pictures.

  • Why is iDisk icon still appearing on my desktop?

    Running Mountain Lion on my two computers.  This doesn't happen on my MBA.  However, on the iMac, the iDisk icon (specifically now a white disk image) keeps appearing on my desktop. The issue is not in settings afaik because there is no iDisk setting

  • Repeating a value in another field

    I would like to make a field in a column equal to an amount previously entered in another field and am not familiar with Java Script.  I will be using this field in a column that I will total at the bottom. Using Acrobat Pro 9. Thanks in advance. Reg

  • Appraisals object type VA and auth object P_HAP_DOC

    The system is running 2005 version. While running APPCHANGE tcode the program ignores values in PD Profile for object type VA. Furthermore the program bypasses the check against P_HAP_DOC object. Any hints why this happens? F.ex 2005 IDES system we h

  • Ich habe flash pro cs6 installiert und die hilfe funktioniert nicht

    kt