SharePoint JavaScript Error Script5009 ‘type’ is undefined sp.js

When we add the sp.js link to the SharePoint Webpart Page or simple ASPX Page and when the page loads we get the following error.

script5009 ‘type’ is undefined sp.js

The solution I saw in the web for this is, add Micrsofot Ajax script.

<script type="text/javascript" src="//ajax.aspnetcdn.com/ajax/4.0/1/MicrosoftAjax.js"></script>

Do note that this resolves the similar error which occurs when we add other SharePoint js files as well.

Setting up Provider Hosted App

There are many articles which explain how to setup the Remote Web & SharePoint On-Prem. The following articles explains everything end to end.
http://blogs.msdn.com/b/russmax/archive/2014/06/23/part-1-intro-to-provider-hosted-apps-setup-the-infrastructure.aspx
http://blogs.msdn.com/b/russmax/archive/2014/06/26/part-2-intro-to-provider-hosted-apps-develop-package-and-deploy.aspx

Get People Picker Field Value from SharePoint List – JSOM

Following is the JSOM code which will help in getting single or multiple items from a SharePoint’s People Picker Field.

function GetPeoplePickerFieldValue(currentListItem, internalFieldName) {
    if (currentListItem.get_item(internalFieldName) !== 'undefined' && currentListItem.get_item(internalFieldName) !== null) {
        if (currentListItem.get_item(internalFieldName).length > 0) {
            var _user = "";
            //If field has only one item
            if (currentListItem.get_item(internalFieldName).length == 1) {
                _user = currentListItem.get_item(internalFieldName)[0].get_lookupValue();
                if (_user == null)
                    _user = "";
            }
            //If field has multiple item
            if (currentListItem.get_item(internalFieldName).length > 1) {
                for (var i = 0; i < currentListItem.get_item(internalFieldName).length; i++) {
                    //Append all User names with a semi colon separator
                    _user = _user + currentListItem.get_item(internalFieldName)[i].get_lookupValue() + "; ";
                }
                _user.trim;
                if (_user == null)
                    _user = "";
            }
        }
        return _user;
    }
}

Source: Microsoft TechNet Forum

Windows 10 – Change Task Bar & Start Menu Accent based on current wallpaper automatically

Windows 10 is awesome and currently one of the feature which I like is, changing the task bar & start menu accent colour based on current wallpaper.

To invoke this, do the following.

  1. Right click on empty desktop
  2. Click “Personalize” menu item
  3. Select “Colours” tab
  4. Enable or toggle on “Automatically pick an accent colour from my background”
  5. Enable or toggle “Show colour on Start, taskbar and action centre”
  6. Optionally you can make Start Menu, taskbar & action centre transparent by toggling the last option.

Copy current item ID to clipboard using SharePoint custom action

Recently I had a requirement where the user needed to copy an item’s URL to clipboard in SharePoint.

Using the SharePoint designer, I created a Custom Action and in the “Navigate to URL” action type I set the following.

javascript:clipboardData.setData("Text", window.location.protocol+'//'+window.location.hostname+':'+window.location.port +'/sites//Lists//DispForm.aspx?ID='+'{ItemId}');alert('Item URL \"'+window.location.protocol+'//'+window.location.hostname+':'+window.location.port +'/sites//Lists//DispForm.aspx?ID='+'{ItemId}'+'\" copied to clipboard');

 

Error: The root of the certificate chain is not a trusted root authority – Register-SPWorkflowService – SharePoint 2013

When I was trying to register Workflow Service with SharePoint 2013 Server, I was getting error “The root of the certificate chain is not a trusted root authority”.

The reason for this error is while registering the service we point to workflow site with https as shown below, this site has a certificate which the SharePoint server doesn’t trust.

Register-SPWorkflowService –SPSite “http://spapp/sites/dev/” –WorkflowHostUri “https://wfserver:12290/” –AllowOAuthHttp

There are 2 things to check.

  1. Check if the WorkflowHostUri is having a Fully Qualified Domain (FQD) instead of machine name.
  2. Check if the SharePoint server trusts the workflow site’s certificate

1. Use FQD. Hence instead of using machine name for WorkflowHostUri, use full domain name, like https://wfserver.domain.com:12290/
2. Make sure the SharePoint Server trusts the certificate of Workflow site. For that do the following

  1. In the server browse the site https://wfserver.domain.com:12290/ and check if you get Certificate trust error, if so proceed to next point
  2. Start Management Power Shell as Administrator in the workflow server and run the following 2 commands
  3. $rootCert = (Get-SPCertificateAuthority).RootCertificate
  4. $rootCert.Export(“Cert”) | Set-Content C:\SharePointRootAuthority.cer -Encoding byte
  5. Navigate to the SharePoint Server and open run or command prompt and type MMC and hit Enter. This will open Console1.
  6. In Console1 navigate to file in the ribbon menu and select “Add/Remove snap-in”
  7. Add “Certificates” to the right hand side and then click “OK”. You will prompted with the Certificates snap-in. I selected “Computer account”>Next>Local computer>Finish>OK
  8. Import the certificate “C:\SharePointRootAuthority.cer” into “Trusted root certification authority” location. You can complete this by right clicking on “Trusted root certification authority” and selecting All Tasks > Import

Source:
Microsoft MSDN Forum, EPM Partners

SharePoint 2013 Service Applications

The following table lists SharePoint 2013 Service Applications which can help in deciding which edition of SharePoint 2013 can be purchased based on the solution design and scenario.

SharePoint 2013 Service ApplicationFoundationStandardEnterpriseOffice 365
Access Services
Access Services 2010
App Management Service
Business Data Connectivity Service
Excel Services Application
Machine Translation Service
PerformancePoint Service Application
PowerPoint Automation Services
Managed Metadata Service Application
Search Service Application
Secure Store Service
Site Subscription Settings Service
State Service
User and Health Data Collection Service
User Profile Service Application
Visio Graphics Service
Word Automation Services
Work Management Service Application
Workflow Service Application

 

SharePoint 2013 New Features & Changes


Following is the list of new features & changes in SharePoint 2013 which I have gathered based on the glances through various sites and books.

Shredded Storage

  1. Reduces size of content database when storing file version
  2. Reduced size of content database helps in backup timelines
  3. Shredded storage optimizes network traffic between web server and SQL server by reducing the need to transfer the entire document
  4. Since only changes are sent back and forth between client and server, a document is available in Office Document Cache (ODC – a feature implemented in Office 2010) even when SharePoint server is offline
  5. User can start working on a document while it is downloading
  6. MS-FSSHTTP (File Sync via SOAP over HTTP) helps in optimized faster document transfers between MS Office client and SharePoint which improves usability of office applications when a user saves a version and continues editing while saved version is being uploaded to SharePoint (Note: This was already available in Office 2010/SharePoint 2010 and now has been improved)
  7. SharePoint 2013 now uses MS-FSSHTTP for document transfer not only between Client and SharePoint Server but now with SQL Server also.

SQL Improvements

  1.  All Databases now conform to SQL Azure compliance criteria
  2.  Redundant, unused tables and track links indices are removed
  3.  I/O operations while browsing document libraries have been optimized
  4.  Utilization of Sparse Columns (A feature implemented in SQL Server 2008) for wide list (Using rows for column data when max columns in a row sql is reached) has been reduced
    Improvements on dependency of large list

Request Management

  1.  Route HTTP requests to different servers based on specific workloads
  2.  Recognize incoming request by looking into headers, request IP address or subnets
  3.  Based on the incoming request, can prioritize by redirecting to another server or blocking that request etc.
  4.  Request Management Rules can help route specific set of incoming request to specific set of servers. For example a rule might route a request which needs more processing to a server with high static (Identifies a server capability being powerful or weak) & health (Dynamic health of a server) weight
  5. If Catch All (*) rule is not implemented, SharePoint routes the request to the server which it thinks is healthy

Workflow

  1. A dedicated Workflow Manger Farm (Not installed by default and only utilized by SharePoint 2013 workflow and not SharePoint 2010/Legacy workflow) can offload the workflow processing from SharePoint Server improving SharePoint’s performance
    Note: SharePoint 2013 workflow templates are not available by default as SharePoint 2013 still uses only 2010 templates. Hence to utilize Workflow Manager Farm, 2013 templates needs to be created

Caching

  1. SharePoint 2013 now uses distributed cache, hence each server in farm doesn’t need to fetch same content from DB for similar requests going to specific server. Instead they share that content across servers and hence roundtrip to content db from each server for same request is reduced
  2. Feeds, Search (Content Search Web Part) & Logon Tokens utilize distributed cache

UI

  1. Minimal Download Strategy (MDS) now helps in loading part of the page instead of whole page when content get’s changed
    Note: MSD is not enabled for publishing sites and custom controls migrated from 2010 to 2013( Custom controls needs to be edited with MsdCompliantAttribute set and re-compiled)
    SharePoint 2013 now uses HTML5 for themes.
    Note: Since HTML5 is used as themes, creating one with Office applications to create themes is limited
  2. SharePoint 2013 has improvements in rendering content in Mobile environment
  3. Addition of geolocation field will help maintain location data in list column
  4. Contemporary view is used if Mobile supports HTML5 else Classic View is downloaded

Service Applications

  1. New Machine Translation Service uses bing to translate sites, files, pages and term sets
  2. New Workflow Management Service helps aggregate tasks from MS Exchange 2013, MS Project Server 2013 & MS SharePoint 2013 to user’s my-site with 2-way sync between them
  3. New App Management Service help manage new SharePoint Apps
  4. Search Service Application is now totally re-engineered based on SharePoint 2010 Enterprise Search and FAST Search and hence FAST search is no more a available
  5. All flavours of SharePoint 2013 (Foundation, Standard & Enterprise) use same search object model
  6. Managed Metadata Service now has properties for Tags and Tags can be pinned to avoid duplication
  7. Search Service Application now has inbuilt Web Analytics, and Web Analytics is no longer a separate service application

Office Web Apps

  1. This is now a separate product and separate license
  2. This will be installed on it’s own server in a farm and hence management/Scaling of either this or SharePoint is far more easier
    Note: Viewing office documents in SharePoint 2013 doesn’t require Office Web Apps and respective license, but if editing is required then both are required
  3. Documents can be now viewed in full screen mode
  4. PowerPoint and Word now supports multi-authoring
  5. Search result in SharePoint can show a preview of office documents when Office Web Apps is available and user hovers over the link in the search result

Business Connectivity Service

  1. BCS now has an additional connection protocol which is OData
  2. Event Receivers for external data changes is a new feature
  3. External Content Type can be scoped to SharePoint Apps as opposed to Service Application level in SharePoint 2010

Access Service

  1. Access Service has been completely re-built
  2. Access Service 2010 is for sites built from Access web database definition
  3. Access Service now stores data in SQL Server 2012 and developers/advanced users can directly interact with SQL Server for more advance report generations

Authentication

  1. SharePoint 2013’s has extended claims based authentication utilizing OAuth 2.0 and dedicated server for STS authentication
  2. Because of this new extended auth, new scenarios are possible with MS Exchange 2013, MS Lync 2013, SharePoint App Store/App Catalogue and any other service supporting server to server auth protocol
  3. Claims is now recommended as opposed to classic in SharePoint 2010 due to new improved claims which didn’t work with People Picker and SSRS (2008 R2) in 2010
  4. Classic mode web applications can now be only created using PowerShell
  5. Additional Logging is now added to troubleshoot authentication issues

Web Applications

  1. Host Named site collections is the new recommendation instead of path based site collections but needs to be analysed before implementing as some extended and hosting in multiple web apps are not supported
  2. Document Workspace, All types of Meeting Workspace Template, Group Work & Personalization site templates have been removed but migration from 2010 to 2013 is allowed and will work in 2013

Development

  1. Everything now is an app. Be it a list, a library, a custom solution etc
  2. Apps now run isolated from SharePoint Server but integrated with SharePoint Server
  3. In addition to Farm & Sandboxed solutions, Extended Client Object model is new for code to run external applications
  4. Apps can be published and made available in on-premises or cloud based market places
  5. SharePoint Apps is now preferred instead of sandboxed solutions