Get Social & Collaborate!
Tags
Wednesday
Sep142016

Why collaboration matters for global companies

Business models across many industries are being rapidly redefined as new entrants harness new technologies to gain a competitive edge. But how well are new technologies going to help longer-established companies, if their existing technologies are presenting challenges?

In a survey of knowledge workers, almost all of respondents said they have felt overwhelmed by information to the point of incapacity.

Clearly, companies won’t get the most out of their employees if they suffer from incomplete communication, conflicting or fragmented information, barriers to collaboration, and feeling in the dark about the progress of shared tasks.

Are you nodding your head to some of this?

There is a way of overcoming these problems and becoming nimble once again – as well as responsive and competitive. It’s by way of a tool called Social Collaboration.

“Social what?” we hear you say.

 

Social Collaboration is actually a simple concept: it’s the joined-up efforts of multiple stakeholders in pursuit of a common goal. Social Collaboration is common on the internet because available technologies make it easy to share, develop and analyse information.

In short, Social Collaboration improves performance.

A crucial concept behind Social Collaboration is that “ideas are everywhere”. People share ideas in an open environment, and the discussion is not limited to only those who have domain knowledge. All ideas are valued.

Social Collaboration tools are essential to an organisation’s Digital Transformation strategy because they simplify how people find, use and share information. They also ease how people work together, track progress, attend and conduct meetings, and at the end of the day get work done.

This is particularly important for distributed or global companies with a workforce spread across various locations and working in different time zones. A report by McKinsey on the issues facing global organisations found that these companies believed the knowledge, skills and experience across their workforce was invaluable but they suffered from a major problem: transferring the expertise learned in one market to another.

Take the world’s leading manufacturer and supplier of hearing implants – Cochlear. Five years ago Cochlear identified the need to enable better collaboration between their global offices and laboratories. They especially wanted a solution that could host their entire global user base.

Cochlear chose ISW to provide the solution, and the heart of the technology from ISW was IBM Connections, IBM’s Social Collaboration software. Cochlear’s staff of 2700 worldwide can now call upon internal expertise easily and consistently, create communities of expertise, and collaborating across the room or across the globe.

The potential rise in productivity from social technologies for highly-skilled, knowledgeable workers critical to growth has been measured at between 20-25%. In addition, companies using these tools report an average 36% better customer service.

To help your organisation’s Digital Transformation journey, we’ve created an infographic outlining how you can expand your business with social collaboration tools, download it here.

If you’d like to see first-hand how you can empower your workforce with social collaboration tools at our Connections Ignition workshop, to register your interest, click here.

Tuesday
Jul192016

How many users access IBM Connections on mobile devices? - Kudos Analytics

Just posted a quick demo video of Kudos Analytics. We often get asked if we can report on how many users are accessing IBM Connections via a mobile device. The video demonstrates this and a few other related reports.

 

Tuesday
Nov242015

Australia rocking the IBM Champion program!!!

Just woke to the news that I have been selected again as an IBM Champion for Social Business for 2016, now for 5 years running. Woot!!!! Thank you IBM. The Champion program is an awesome group of experts and evangelists around the world and I am always humbled to be part of this group. More so thru the program I have developed some great friendships with people all around the world. It is always great to catch up with them at the various events and knowing I have people I can reach out to in so many countries to say hi is a wonderful thing.

And the even more exciting news is that Australia now has 2 IBM Champions with Karen Hooper being also selected, I am sure in main for her awesome work leading the AusLUG/Inform committee. Great to see another Aussie being selected and I am sure there are more to come in future years. Congrats Karen and well done.

Tuesday
May192015

Infinite scrolling Activity Stream in IBM Connections

Following on from Jay's neat code for the Activity Stream in IBM Connections, he has added an additional tweak to enable infinite scrolling of the Activity Stream. Update is the same as the last post, just use the new code.

Monday
May042015

Jay's awesome auto-magic News Feed tweak for IBM Connections 

The other day Jay was looking for something to do with his spare moments in between finalising Kudos Analytics Cloud and Kudos Boards Mobile (come on Jay you don't really have spare time;) and he made an awesome tweak to our internal deployment of IBM Connections. I thought it was worth sharing so here it is:

There's no mechanism in Connections by default to notify people of new posts in the News Feed. Forcing users to refresh the page, or click on 'Discover' / 'I'm Following' to find out if something new has happened. 

 

I had an idea to solve this problem with a little javascript injection into the header.jsp. 

A couple of hours of coding and testing later, it actually worked as planned and is now implemented in our production environment (feedback welcome). 

 

What does it do?

A - Shows a button with 'X New Posts' at the top of the news feed (screenshot below)

B- Updates the page title, which lets you see if there are any updates without switching to the tab. (Also makes the tab glow if it is pinned - as seen on Facebook, Instagram, etc.)

 

How?

The script first checks to see if it's in Homepage on load. You don't want to make a request every X seconds from every page in connections.

It then periodically polls the RSS feed for the current stream to retrieve any entries since the time the page was loaded. (Thanks to Mr. Andrew "API" Welch for his input here)

If it finds any new entries, it shows a bar at the top indicating the number of new updates and, my favourite part, updates the document.title allowing you to see if there are any updates without the need to actually switch to the tab

You might need to refresh your homepage for it to take effect. And you might have to wait till there are some new posts as well :) 

 Code to implement this:

  1. Put the activity-stream-notifier.jsp file in the same folder as the customised header.jsp. 
  2. Add the following line at the end of your header.jsp:​  --%><%@ include file="./activity-stream-notifier.jsp" %><%--
The results are as per the below screenshot:

 

Well I think that is pretty neat. Hope you can make use of it!