Shortcut to Dynamics 365 Solutions

When building Dynamics 365 solutions, you may want to save an internet shortcut to get to the solutions page quickly. The shortcut is: <yourorg>/tools/Solution/home_solution.aspx?etn=solution For example below, my web page is bookmarked to this page here, so any time I need to see the solutions quickly, I can get to it from the bookmark:  

Dynamics 365 Manage Licensing and Pricing

There are different subscriptions associated with Dynamics 365. Note this pricing changes often. This is more of a guide on how to manage your subscriptions in the Office 365 portal. Pricing can be found on Microsoft’s website at: https://www.microsoft.com/en-us/dynamics365/pricing On the website, you will see 2 different tabs for Enterprise Edition and Business Edition. The Enterprise Edition looks like below: The Business edition consists of: In the Enterprise edition, under each … Continue reading Dynamics 365 Manage Licensing and Pricing

Dynamics 365 User License Types

Dynamics 365 has different licensing options. Here we will look at the different types of users. Full Users are described as users that require the full rich business applications functionality, such as Salespeople, Finance employees etc. There are also users that do not require this full functionality. These users perform duties such as: consume data or reports complete light tasks like time or expense entry and HR record updates be … Continue reading Dynamics 365 User License Types

Dynamics 365 Get Current User from C#

In Dynamics 365 when running C# code, you may want to get the current user. We will go through an example if we were to run this from a console app. First, create a new console app in Visual Studio: From NuGet, add: Microsoft.CrmSdk.CoreAssemblies Microsoft.CrmSdk.XrmTooling.CoreAssembly Add using: using Microsoft.Xrm.Tooling.Connector; using Microsoft.Xrm.Sdk; using Microsoft.Crm.Sdk.Messages; using Microsoft.Xrm.Sdk.Query; Add the code. We will first get the user id, then perform a retrieve to … Continue reading Dynamics 365 Get Current User from C#

Goals and Targets in Power BI

In Power BI, a common requirement is to display progress towards meeting a goal. For example, if you want to track monthly progress of salespeople vs their targets. To do this, first create a new Power BI report. In our example, we have 2 tables: Goals – which holds the targets for each salesperson Sales – which holds sales transaction records We will keep this simple and not use dates. … Continue reading Goals and Targets in Power BI

Dynamics 365 Server Side Sync Setup

Server Side Sync is a way to synchronize email and other supported entities between an email server and Dynamics 365. Here we will go through setting up server side sync. To set up Server Side Sync, go to Settings->Email Configuration:   Select Email Server Profiles: Here you will see email server profiles. Select New to create a new profile. You can enter select: Exchange Server (Hybrid) Exchange Online POP3/SMTP Server … Continue reading Dynamics 365 Server Side Sync Setup

Adding a Visual Studio Website Solution to Visual Studio Team Services

In this post we will add an existing website project to Visual Studio Team Services. First, create a project in VSTS. Log into https://visualstudio.microsoft.com/team-services/: Select New Project: Enter the project details, and select the version control type: Git Team Foundation Version Control Select the Work Item Process: Agile CMMI Scrum Click Create. Now, open the project you created earlier in Visual Studio. We have a project that is a website: … Continue reading Adding a Visual Studio Website Solution to Visual Studio Team Services

Restrict Access to Dynamics 365 Instances

You may have a scenario where you do not want to give access to a Dynamics 365 instance to certain users. One way to do this is to use security groups in Office 365. To do this, create a security group and add administrators and members. Then, in the Dynamics 365 Administration Center, select to edit your instance: Scroll down to Security Group: Select the security group you want to … Continue reading Restrict Access to Dynamics 365 Instances

Office 365 Security Groups

Security Groups are a way to control access to Office 365 functionality. Security Groups are a part of Groups within Office 365. To create and view groups, go to the Admin portal at: https://portal.office.com/adminportal Then select Groups: You will see a list of the groups, and note you can filter on security groups: You can create a security group by select +Add a group: Click Add: You can then select the … Continue reading Office 365 Security Groups