Wednesday, March 10, 2010

Sharepoint 2010 Release

Microsoft announced last Friday that SharePoint 2010 and Office 2010 will RTM next month, in April 2010 & the official launch date is on May 12, 2010.

Monday, January 25, 2010

Sharepoint Foundation Best Practices

Some of the best practices for SharePoint Foundation (WSS 4.0) are released on the microsoft site below.

http://msdn.microsoft.com/en-us/library/ee557257(office.14).aspx

Monday, November 16, 2009

Explore Infopath 2010 controls

Most of the controls are carried over from Infopath 2007. There are very few newly added controls, there is considerable enhancement to the existing controls.

Newly added controls

1. Date Control

2. Date and Time control

3. Picture Button

Enhancements

1. Hyperlink control

2. Formatting conditions

3. Rules can be configured through the ribbon, no more available as part of control properties.

Video talks more details on these controls.

Walkthrough of what’s new in Microsoft InfoPath 2010

Highlight of some new features added with Infopath 2010 are as follows.

1. Sections and Page Layouts

2. Ribbon interface

3. Control Tools allows to manage controls and their properties in the form

SharePoint Designer 2010 Components

This video gives a walkthrough of the sharepoint designer components.

Saturday, October 24, 2009

SharePoint 2010 Timer Jobs changes

SharePoint 2010 Timer Jobs undergoes changes in the management and in configuration.

Firstly, the most significant change you will see with the new version of SharePoint is the number of Timer Jobs – 21 new jobs been added. If for an ordinary SharePoint 2007 application we had 39 Timer’s Job, then we would have 60 Jobs for SharePoint 2010.

So, those 21 new timer jobs are:

1.Application Addresses Refresh Job
2.Audit Log Trimming
3.Delete Job History
4.Document ID enable/disable job
5.Document ID assignment job
6.Enterprise Server Search Master Job
7.Health Analysis Job
8.InfoPath Forms Services Maintenance
9.Password Management
10.Prepare query suggestions
11.Product Version Job
12.Query Logging
13.Secure Store Service Timer
14.Solution Daily Resource Usage Update
15.State Service Delete Expired Sessions
16.Timer Service Recycle
17.Web Analytics Trigger Workflows Timer Job
18.Windows SharePoint Services Usage Data Import
19.Windows SharePoint Services Usage Data Processing
20.Word Conversion Timer Job
21.Workflow

We need to keep our fingers crossed to know more details about each of these new jobs when the public beta comes out in November. I am very excited to expose more about some of these new addition to SharePoint so do keep watching this space.

Microsoft SharePoint Workspace 2010

An interesting video about the Microsoft Sharepoint Workspace 2010 which was formely known as Microsoft Groove. This video gives an brief introduction to the Microsoft Sharepoint workspace 2010, it's capabilities and similarity to Microsoft Groove.

Watch out the video at Sharepoint Workspace 2010

Enjoy !!!

Saturday, September 12, 2009

Custom Security Trimming in Sharepoint

Recently while working on one of the initiatives, I came across an developement need to restrict permissions on certain portions of an content page as against to the whole page itself. My scenario was I only needed people with Full Control and Contributors permission to see all contents of a page as against to Readers who see only some of the contents on that page. Another common example would be restricting some portion of the master page. I did explored object model role and roleassignment classes nothing looked to be promising and a complete solution for this situation.

Finally after reading through some of the msdn resources, I got aware that there is a security trimming control available to restrict permission on content page.

Wrap the following tag around the content that you want security trimmed, and SharePoint will manage security for you.

<SharePoint:SPSecurityTrimmedControl ID=”SPSecurityTrimmedControlName″ PermissionsString=”BrowseDirectories” runat=”server”>

content that needs to be security trimmed goes here.

</SharePoint:SPSecurityTrimmedControl>



Please note that whats most important here is what goes inside the PermissionsString attribute. Following is a list of possible values:

List Permissions
ManageLists
CancelCheckout
AddListItems
EditListItems
DeleteListItems
ViewListItems
ApproveItems
OpenItems
ViewVersions
DeleteVersions
CreateAlerts
ViewFormPages

Site Permissions
ManagePermissions
ViewUsageData
ManageSubwebs
ManageWeb
AddAndCustomizePages
ApplyThemeAndBorder
ApplyStyleSheets
CreateGroups
BrowseDirectories
CreateSSCSite
ViewPages
EnumeratePermissions
BrowseUserInfo
ManageAlerts
UseRemoteAPIs
UseClientIntegration
Open
EditMyUserInfo

Finally I wanted to let everyone know that I would keep exposing some of these little custom developement tips and would also share some of my developement experience as an when I come across so do keep watching this space.

Sunday, August 30, 2009

Progress Bar in Sharepoint Task List

My client makes use of most of the out of box features that are available with Sharepoint, many of the company managers frequently make use of the out of box sharepoint task list for resource assignment, tracking etc. Recently one of the group managers asked me if it is possible to create a visual indicator of the task, meaning he wanted a visual progress bar for the status of each task. After researching on the subject I discovered that Bamboo solution have a product for this need and can meet what exactly he was looking for. It would have done what we expected but the product does not seems to be more customizable so I started to look for doing this myself with some customization efforts.

I was able to do this using little html knowledge and a great javascript available from the pathtosharepoint website. Below are the steps that I did to achieve this.



1. Created a calculated column called "Progress Bar" and "Progress Bar 2" and then added the following formulas to each of the columns.

- Progress Bar:

=”<DIV style=’background-color:blue; width:”&([% Complete]*100)&”%;’>&nbsp;</DIV>”



- Progress Bar 2:

=”<DIV style=’background-color:red;’><DIV style=’background-color:LimeGreen; width:”&([% Complete]*100)&”%;’>&nbsp;</DIV></DIV>”



2. I downloaded a script from the pathtosharepoint site, added it to an content editor webpart on the same page as my task list. To download the code please click here

3.Once the content editor webpart is saved, you will see that the progress bar will start to show up in the columns Progress Bar and Progress Bar 2 as I have shown in the screen image above.

I also recommend my blog readers to visit http://pathtosharepoint.com , the author has really put great efforts to build and present some of the cool sharepoint custom components that are very useful in today's custom needs for Sharepoint.

I have always enjoyed working with sharepoint customizations and I am hoping that my research and these small tips help someone in Sharepoint development world.

Keep watching this space for more sharepoint development tips. Cheers to Sharepoint !!!

Saturday, August 29, 2009

Is Box.net better than Sharepoint 2010 ?

Box.net claims that it is a better collaborative tool than Sharepoint or even better than the upcoming Sharepoint version Twenty Ten. Video below talks in detail what the product offers and how it is better product for collabration compared to Sharepoint.

Friday, August 21, 2009

How to hide view selector in list view webpart ?

I am working on an initiative where I have to present multiple views of a sharepoint list, these views have sensitive information in certain columns that cannot be shared among other views of the same list. Here the idea is create unique views for each group of users with their sensitive columns and then not allowing the users to switch to each others view, point to note is all of these views are public views.

I was scratching my head figuring out a solution to restrict the view selection from pages that are generated for each views. My theory was there has to be a way to handle the view selector ?? I opened sharepoint designer to see if I can figure this out. I opened one of the existing view page for a list (AllItems.aspx) and then was looking for some kind of view selector control in the list webpart that was displayed. It took me few hours to figure out that only converting the list view webpart to the XSLT dataview will generate a selector control in the XSLT code, something like the line of code below.

<sharepoint:viewselectormenu runat="server" visible="false"”> </sharepoint:viewselectormenu”>


The line of code is the view selector control that is responsible to cause the switch, I simply added the visible attribute setting it to false to make the control unswitchable.

Other way would be to completely get rid of the control to give a clean user experience. It took few hours for me figure this out, but I am hoping this will help somebody do this quickly in this amazing world of sharepoint.

Thursday, August 13, 2009

NY Times article on Sharepoint

Microsoft’s SharePoint Thrives in the Recession

By Ashlee Vance

Hang around at Microsoft’s Redmond, Wash., headquarters for five or ten minutes and someone dressed in khaki pants and a blue shirt is bound to tell you about the wonders of SharePoint — one of the company’s most successful and increasingly controversial lines of software. Think of SharePoint as the jack-of-all-trades in the business software realm. Companies use it to create Web sites and then manage content for those sites. It can help workers collaborate on projects and documents. And it has a variety of corporate search and business intelligence tools too.


Microsoft wraps all of this software up into a package and sells the bundle at a reasonable price. In fact, the total cost of the bundle often comes in below what specialist companies would charge for a single application in, say, the business intelligence or corporate search fields. It can’t do everything. Executives at Microsoft will readily admit that the bits and pieces of SharePoint lack the more sophisticated features found in products from specialist software makers.


“We don’t claim we do everything,” said Chris Capossela, a senior vice president at Microsoft. “If we do 50 percent of the functions that these other companies do, but they’re the ones customers really want, that’s fine. The magic is that end users actually like to use the software.”
This strategy seems to have worked even during the recession.


While Microsoft’s Windows sales fell for the first time in history this year, its SharePoint sales have gone up. Microsoft declines to break out the exact sales figures for the software but said that SharePoint broke the $1 billion revenue mark last year and continued to rise past that total this year, making it the hottest selling server-side product ever for the company. Companies like Ferrari, Starbucks and Viacom have used SharePoint to create their public-facing Web sites and for various other tasks. All told, more than 17,000 customers use SharePoint.


In many ways, SharePoint mimics the strategy Microsoft took with Office by linking together numerous applications into a single unit. This approach appeals to customers looking to save money and also represents a real threat to a variety of business software makers. Many of these specialists like Cognos, a business intelligence software maker, and Documentum, a content management software maker, have been gobbled up by larger players looking to create their own suites. I.B.M., for example, bought Cognos, while EMC bought Documentum. Other companies like Autonomy, a maker of top-of-the-line corporate search software, remain independent.


Crucially, Microsoft has found a way to create ties between SharePoint and its more traditional products like Office and Exchange. Companies can tweak Office documents through SharePoint and receive information like whether a worker is online or not through tools in Exchange. These links have Microsoft carrying along its old-line software as it builds a more Internet-focused software line.


“SharePoint is saving Microsoft’s Office business even as it paves the way for a new era of Microsoft lock-in,” said Matt Asay, an executive at Alfresco, which makes an open-source content management system. “It is simultaneously the most interesting and dangerous Microsoft technology, and has largely caught its competitors napping.” Along these lines, Steve Ballmer, Microsoft’s chief executive, has talked about SharePoint as the company’s next big operating system.


Microsoft has managed to undercut even the panoply of open-source companies playing in the business software market by giving away a free basic license to SharePoint if they already have Windows Server. “It’s a brilliant strategy that mimics open source in its viral, free distribution, but transcends open source in its ability to lock customers into a complete, not-free-at-all Microsoft stack - one for which they’ll pay more and more the deeper they get into SharePoint,” Mr. Asay said.


A number of smaller software companies have been eager to piggyback on SharePoint’s success. Based in San Diego , Sharepoint360 provides consulting services and software development help around the product. The company started after employees at a construction company built some Sharepoint applications and decided to market the software to other construction firms. The start-up has help ed construction companies create systems for managing projects, allowing various people to check-in on the progress of a building and keep track of documents tied to the site. It has also expanded beyond the construction area doing work for NASA, Nestle and Toshiba, according to Paul West, a co-founder of SharePoint360.


The company offers to host SharePoint applications for customers. Microsoft too wants to host more software for companies as it moves toward the cloud computing model. Mr. West recognizes that Microsoft may begin stepping on its partners’ toes. “It may certainly come to pass that they pull the switch,” he said. “That would have implications for us.” In the meantime, however, Microsoft subsidizes training courses and consulting work for companies like Sharepoint360.


Next year, Microsoft plans to release a new version of the software packed full of more advanced features, including stronger ties to the corporate search technology it acquired in the $1.2 billion purchase of Fast Search and Transfer, a Norwegian start-up. Best Buy uses the Fast technology today to provide on-the-fly pricing information to customers performing product searches on its Web site.


By making these more sophisticated tools available to customers, Microsoft thinks it can keep pushing niche software makers out of the way and give business people, rather than just the tech folks, a way to work with business applications.

“We believe customers can turn off some of these point solutions,” said Kirk Koenigsbauer, a general manager in Microsoft’s business software group. “With SharePoint, we can deliver a very, very approachable application to end users.”

Saturday, August 1, 2009

Top Sharepoint sites around the world

While going through Ian Morish's WSS demo site happen to go through some of the best looking internet sites hosted around the world, Ian's website below gives a wonderful preview of these websites.

http://www.wssdemo.com/Pages/topwebsites.aspx

I am simply amazed not to see these sites built with sharepoint but the core value that sharepoint is bringing to these websites in terms of Content Management, Enterprise integration etc. Thats why I always say SharepointAge Rocks !!!! I have been a follower of Microsoft since inception of dotnet 1.0 and have lot of faith that they are going to change the shape of technology with these cool platforms ..... happen to look at bing search looks very promising.

Thursday, July 30, 2009

Office 2010 revealed in more detail

Since the launch of the Office 2010 technical preview, Microsoft has revealed most of the anticipated Office 2010 release in great detail way ahead of the expected official announcement that was expected to be done at the Microsoft Worldwide Partners Conference 2009

To unfold the secrets watch out for the introduction videos office twenty ten videos available at

http://www.microsoft.com/office/2010/

Peronsally I was impressed with the new features in outlook 2010 that will help keep emails and our meetings more organized then what we have today, significant changes done to OneNote 2010, I always love OneNote whether it was 2003 or 2010, hats off to its online/offline capabilities. I was not much excited about office 2010 except for the fact that it allows live communication between users from a document management standpoint.

I was dying to know more about Infopath 2010 but was disappointed to know not much is available yet. Infopath 2010 is suppose to fix all the paint points that its preceeder 2007 version had specially with the forms services integration in sharepoint.

So I hope you all will find this information valuable and interesting. More secrets yet to be revealed ....... keep watching out this space.

Monday, July 27, 2009

Sharepoint 2010 developer document released

Microsoft SharePoint 2010 team has released a download for SharePoint 2010 developer documentation which contains white papers and help files. To review your copy, Please download zip file from Microsoft.com

http://www.microsoft.com/downloads/details.aspx?FamilyID=94afe886-3b20-4bc9-9a0d-acd8cd232c24&displaylang=en

Preparing for Sharepoint 2010 Upgrade Today

I was looking for new references available for sharepoint twenty ten on internet, I happen to look at this cool presentation by Joel Oleson that talks about high level task involved with the sharepoint twenty ten upgrade. Click here to look at the presentation.

Thanks Joel for sharing this great piece of information, I hope everyone will find this information interesting and valuable.

SharepointAge Rocks !!!!!

Monday, July 20, 2009

What is SharePoint 2010

What is SharePoint 2010? SharePoint 2010 is the business collaboration platform for the Enterprise & the Web that enables you to connect & empower people through an integrated set of rich features. Whether deployed on-premises or as hosted services, SharePoint 2010 helps you cut costs with a unified infrastructure while allowing you to rapidly respond to your business needs.



Watch out for a sneak preview here I am very excited to expose more about the sharepoint twenty ten so keeping watching .......

Friday, July 10, 2009

BDC Meta Man Web Edition Released

Lightning Tools has recently released a web edition for BDC Meta Man to generate the Business Data Catalog Application Definition file. The web edition is designed to address the user paint point about SharePoint can communicate with their Line-of-Business Systems, but why they need to use a desktop application(BDC Meta Man Desktop Version) to create the Application Definition File.

Other goals for the web versions are as follows.
  • Allow users to create Application Definition File from within the browser (Figure 1 - BDC Meta Man Web Edition)
  • Give the ability to create Application Definition File to Site Collection Administrators
  • Give users functionality of BDC Meta Man from within the browser
  • Streamline the process of creating an Application Definition File.
  • Imitate BDC Meta Man desktop application (Figure 2 - BDC Meta Man)

Some screencasts and demos are available at their website Lightning Tools

Enjoy the great enterprise suites with sharepoint with the ease of these awesome tools.

Happy Sharepointing !!!!