USD – Open Current Tab in IE Browser

…on the page you want to open. Below we have a Contact page in USD: Press CTRL+N. This is the keyboard shortcut for Internet Explorer to open the same webpage…

Understanding StateCode, StatusCode, Status and Status Reason in Dynamics 365

and access EntityDefinitions. For state: https://yourorg.api.crm.dynamics.com/api/data/v9.1/EntityDefinitions(LogicalName=’opportunity’)/Attributes/Microsoft.Dynamics.CRM.StateAttributeMetadata?$expand=OptionSet Here we can see Won, Lost, Open states: For status: https://yourorg.api.crm.dynamics.com/api/data/v9.1/EntityDefinitions(LogicalName=’opportunity’)/Attributes/Microsoft.Dynamics.CRM.StatusAttributeMetadata?$expand=OptionSet Here we can see the Open for Bidding label in the query:  …

Connecting to Dynamics 365 using CrmServiceClient

…Microsoft.Xrm.Sdk; using Microsoft.Crm.Sdk.Messages; namespace GetVersion { class Program { static void Main(string[] args) { try { var connectionString = @”AuthType = Office365; Url = https://yourcrm.crm.dynamics.com/;Username=yourusername;Password=yourpassword”; CrmServiceClient conn = new CrmServiceClient(connectionString);…

Overriding RetrieveMultiple Pattern to Integrate with Other Systems – D365

…retailSales.Add(retailSales2); retailSales.Add(retailSales3); #endregion // Plugin Code IPluginExecutionContext context = (IPluginExecutionContext)serviceProvider.GetService(typeof(IPluginExecutionContext)); EntityCollection entityCollection = new EntityCollection(); entityCollection.EntityName = “new_retailsale”; foreach (var retailSale in retailSales) { Entity crmRetailSale = new Entity(“new_retailsale”); crmRetailSale.Attributes.Add(“new_product”,…