Category: Microsoft Dynamics 365

MSCRM :: Execute Workflow from Javascript

After reading a few blog, and retyping screen show please see below. Orginal Blog Click Here The above is running a unique workflow that I have to Clone a Opportunity Product with help from Dynamics-365-Workflow-Tools

MSCRM :: IntelliSence for Dynamics 365

How to configure intellisence with XRM syntaxes in your Jscript/TypeScript files. To enable IntelliSence, you need to install xrm npm package to your Visual Studio. Steps to install NPM package: To install npm package, you need to download and install a Visual Studio extension : Package Installer Post installation, from your Visual Studio, select ‘Quick Install Package’ from…
Read more

MSCRM :: Python WebApi

For a while now I have been playing around with this project, and although it is not complete I have found it very useful. See my code below.

MSCRM :: Xrm.WebApi Dealing with different field types

After getting extreamly frustrated and not being able to find and help/blogs regarding this topic here is the information that defines how to deal with different fields types when creating a data object for either Xrm.WebApi.createrecord, or Xrm.WebApi.updaterecord.    

MSCRM :: External Auth for Dynamics 365 Portals

Original Post. https://community.dynamics.com/crm/b/thinkdynamicdodynamic/archive/2017/04/02/linkedin-integration-with-dynamics-crm-portals-or-adxstudio-portals LinkedIn plays a big role in the professional industry as this application really has a huge network, and lots of businesses uses this to build new relationships with customers, as well as prospect companies.  LinkedIn integration with CRM Portals or Adxstudio Portal lets you Sign In on Portals with LinkedIn Account as a…
Read more

MSCRM :: Liquid – Check is user has a role type

has_role While working of my portal i needed to query what type of “Web Role” a user had, this allowed me to create extra functionality in my portal from changing what information was displayed on a page, to adding an additional menu to the Nav. You will need to create a new “Web Role” in…
Read more

MSCRM :: Documentation for Dynamics 365 Web Portals

https://docs.microsoft.com/en-nz/dynamics365/customer-engagement/portals/administer-manage-portal-dynamics-365

MSCRM :: Clear Dynamics 365 Portal Cache

Sometime if we do any changes in Dynamics CRM portal it wont get reflected immediately, this is due to cache. For this we need to restart the portal from the O365 console. There is a easyer way to clear cache without restarting server or browser. Step 1: Navigate to your portal url https://yourOrganizationname.microsoftcrmportals.com Step 2:…
Read more

MSCRM :: Entity Type Codes

The following table shows the type codes for system entities. Entity Name ObjectTypeCode Account 1 Contact 2 Opportunity 3 Lead 4 Annotation 5 BusinessUnitMap 6 Owner 7 SystemUser 8 Team 9 BusinessUnit 10 PrincipalObjectAccess 11 RolePrivileges 12 SystemUserLicenses 13 SystemUserPrincipals 14 SystemUserRoles 15 AccountLeads 16 ContactInvoices 17 ContactQuotes 18 ContactOrders 19 ServiceContractContacts 20 ProductSalesLiterature 21…
Read more

MSCRM :: WebApi OAuth Setup

Start from Dynamics CRM 2016, Microsoft introduced new big feature called Web API endpoint. That means we can build our own Web Application, SPA or Mobile Application and play with Dynamics CRM data. In that case we will need a library for Azure AD Authentication to get access token before making requests to CRM Web…
Read more