Azure Active Directory Users and Groups

To manage users and groups in Azure Active Directory, select Active Directory in portal.azure.com: To add a new group, select Users and Groups->All Groups->Add: Enter a group name and click…

Creating a Team Site in SharePoint

…link: You will be presented with an option to create a Team Site or Communication site. We will select Team Site: Now enter the name of the site. SharePoint will…

Dynamics 365 – Get Entity Metadata using C#

…var connectionString = @”AuthType = Office365; Url = https://yourcrm.crm.dynamics.com/;Username=yourusername;Password=yourpassword”; CrmServiceClient conn = new CrmServiceClient(connectionString); IOrganizationService service; service = (IOrganizationService)conn.OrganizationWebProxyClient != null ? (IOrganizationService)conn.OrganizationWebProxyClient : (IOrganizationService)conn.OrganizationServiceProxy; Next, we will use RetrieveEntityRequest…

Dynamics 365 Business Rules

…Rules from the navigation bar and then New Business Rule: This will open a blank template. Let’s add a condition that if the City = “New York”, then lock the…

Email Engagement in Dynamics 365

…originate in Dynamics 365 as opposed to Outlook. You will notice a new Email Engagement area: The information link opens this link here. Note the options: Don’t follow – this…

Using Latebound Constants Generator

…we will reference these constants through our new file. Take a look at the new code – instead of “account” we can use Account.EntityName, for example: Running this produces:  …

Tracking an Outlook Email in Dynamics 365

…opportunity:   In Dynamics 365, you will see a new email activity has been created as a result of tracking the email. The activity is complete: Within Dynamics 365, you…

How to Create a Web API using ASP.NET

…an example of building a Web API with MVC using Entity Framework. To create a new project, open Visual Studio and create a new ASP.NET Web Application: Now select the…

Dynamics CRM Ribbon Customizations

…adds configuration information to the chosen solution to add buttons, commands etc. We can see there are 3 new buttons in our Ribbon Workbench view of this solution: If we…