Social media is a powerful platform in which to engage your customers, understanding who are key influencers within your list of contacts and accounts is a cornerstone of every social engagement strategy. Channels such as Twitter, YouTube, LinkedIn are emerging as disrupters in the traditional marketing space. In short, this information needs to be in real-time so that you can respond very quickly to changes in the social media sphere. In this blog, I will be demonstrating how you can quickly enable your Microsoft Dynamics 365 system to display real-time subscriber data from your accounts’ and contacts’ social channels.

The demonstration and code I will describe here is very simple to implement with basic form design and JavaScript know-how. It can be tailored and extended to channels other than YouTube as is shown in this demonstration. I am using SocialBlade as our data source, but there a number of others freely available on the net.
So here are the steps to enabling real-time social data within Dynamics.


function fncSocialBladeOnLoad()
{
// URL segment
var sbURLstart = "https://socialblade.com/youtube/user/";
var sbURLend = "/realtime";
var targetURL = "";
//Get the default URL for the IFRAME, which includes the
// query string parameters
var IFrame = Xrm.Page.ui.controls.get("IFRAME_socialbladewindow");
// get Social Media usernames/channelnames
var YouTubeUsername = Xrm.Page.getAttribute("sms_youtubeusername").getValue();
if (YouTubeUsername != ""){
//Append the parameters to the new page URL
targetURL = sbURLstart + YouTubeUsername + sbURLend;
// Use the setSrc method so that the IFRAME uses the
IFrame.setSrc(targetURL);
}else{
IFrame.setSrc("about:blank");
}
}

That’s it. If you want to see a video demonstration of the solution, please visit my YouTube channel here: https://youtu.be/HL0ZsYcSTNo
I do hope this gets you thinking about different ways in which we can monitor social engagement across social media channels. There are plenty of opportunities to tap into our key influencers, and this is a great no-cost way of doing so. Of course, when you’re ready to put both feet in when it comes to Social monitoring and engagement, check out Microsoft’s own Microsoft Social Engagement suite.
As you may have been aware, Microsoft acquired ADX Studios in September 2016, and since then has been actively transitioning to a subscription based on-demand service hosted within Office 365. Previously with Enterprise ADX Studios you had full control over the environment, including restarts, deployments, and so on. With the Office 365 hosted Microsoft Portals (aka ADX Studio Portals), you must now use the Applications management console within the Dynamics 365 Admin Centre. Sometimes your application may do what you want, but other times when you encounter errors you may need to jump start the portal again. Here’s a few tips on how to revive a fallen Microsoft Portal instance yourself before you open a MS Support Ticket.

Let’s start with the easiest and safest route first.
Campaign Monitor is a marketing automation service, that aims to streamline your communications to customers. Today we look at how we can integrate Campaign Monitor into Dynamics 365. We will be using the Campaign Monitor supplied plugin.

A client recently had issues implementing a workflow that would send a draft email. Under a normal scenario, you could choose to create a “Send Email” step within a workflow and the job would be done. But what if you have a number of draft emails that you want to push out at a later stage?

Did you know that you are entitled for up to 5 free Service Accounts connected to a single CRM Online Instance? These are known as Non-Interactive User Accounts in CRM. In this blog I will cover what Non-Interactive User Accounts are, why you may consider one and finally how to use them.

In the real world, our customers are either individuals or a group of individuals such as a company. However Microsoft has always made a distinction when it comes to how we organise our data models especially with custom entities – you’re either one or the other, requiring separate lookups for each. Not anymore! One of the neatest new features of CRM Online 2016 Update 1 (CRM 2016 SP1 for On-Premise) is the introduction of a new Attribute Data Type called “Customer”.

Work less, do more – that’s the catch phrase of Microsoft’s latest automation and workflow engine called Microsoft Flow. Microsoft Flow is currently in preview phase and still has a few bugs to iron out, but if you are familiar with IFTTT (If This Then That) workflow engine then using flow should come naturally to you. Essentially there are connectors to various web services (e.g. Dropbox, OneDrive, Dynamics CRM, SharePoint and so forth), and you can even program your own connectors.

If you ever run into a situation where you’ve reached your storage capacity with Dynamics CRM Online and you’re not too sure how to reclaim that space, here are a few tips.

At some point during the development lifecycle of mid-to-large scale Dynamics CRM projects, we are faced with a number of design decisions that are to be made. That is, when is it appropriate to customize the platform versus when is it appropriate to opt for pure configuration.

© 2026 365lyf.com
Theme by Anders Noren — Up ↑