Here are the resources from last month’s community call. New role based certifications and exams coming. In the past certifications have been very product focused and students have often had
Here are the resources from last month’s community call. New role based certifications and exams coming. In the past certifications have been very product focused and students have often had
As I prepare for my Dynamics 365 certification in sales (MB2-717), I’m creating blog posts based on my revision. I hope that collectively these posts may prove useful to anyone
var target = { “accountid”: “ACAAB842-21C7-E811-A96F-000D3A16A41E”, //put <other record type>id and Guid of record to share here “@odata.type”: “Microsoft.Dynamics.CRM.account” //replace account with other record type }; var principalAccess =
Scheduling a record was not something achieved without some thought using workflows in Dynamics 365 CE. Mostly the ‘Bulk Delete’ trick was used where scheduled Bulk Delete of records (normally
Just sharing a sample code to retrieve the Audit Detail using RetrieveRecordChangeHistoryRequest. RetrieveRecordChangeHistoryRequest changeRequest = new RetrieveRecordChangeHistoryRequest(); changeRequest.Target = new EntityReference("entitySchemaName", "entityId")); RetrieveRecordChangeHistoryResponse changeResponse = (RetrieveRecordChangeHistoryResponse)_service.Execute(changeRequest); AuditDetailCollection auditDetailCollection = changeResponse.AuditDetailCollection;