A couple of weeks ago I posted a video blog on how you can embed 3D Models directly within Dynamics 365. Today I will walk you through exactly how to achieve this within your environment complete with source code and steps.
A couple of weeks ago I posted a video blog on how you can embed 3D Models directly within Dynamics 365. Today I will walk you through exactly how to achieve this within your environment complete with source code and steps.
Hi All

Registration is now open for the second Dynamics 365/CRM User Group for the year, this month will be on Common Mistakes to Avoid when Implementing Dynamics Projects jointly presented by Jeremy O’Donohue and Andrew Ly of SMS Management & Technology.
Ever wonder why your project is not progressing as well as it should be? Or why user adoption of your new solution is less than extraordinary? Are we stuck in a traditional devops mindset when it comes to building CRM solutions? We’ll explore these questions and more in the March Dynamics 365 user group, with lessons learnt and some Microsoft best-practices for implementing Dynamics projects.
Be quick though, seats filling fast. Please register your attendance here.

ClickDimensions recently introduced a new feature to their Marketing Automation suite, the ability to create posts on your Facebook Page. Today I will walk you through how simple it is to schedule and create Facebook Posts directly from Dynamics 365 using ClickDimensions.

Today I explore the Dynamics 365 for Windows on a Virtual Reality headset. Using my HTC Vive, I give my thoughts on the possibilities presented by recent innovations such as Hololens and where I think it may be useful from a Customer Service perspective.
So I’ve had an opportunity to reflect on my time with the Microsoft Dynamics platform. And if you will spare me a few moments to indulge you with my thoughts about how I believe you can have a personally and professionally fulfilling career with Microsoft Dynamics.
Today’s VBlog is about how to embed 3D Models directly into Dynamics 365 forms. I look forward to putting together a full write up soon.
In the meanwhile, if you like the video please subscribe to my new YouTube channel, and share on your networks. Hope you enjoy!
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.

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