We can change publisher of a solution using Publisher lookup field of the solution in the Information section. However, if the solution has already been imported in target environment, changing
We can change publisher of a solution using Publisher lookup field of the solution in the Information section. However, if the solution has already been imported in target environment, changing
We would get this below error if our search returns more than 10000 records for Quick Find Query. “There are more search results than can be displayed. Try adding more
I would like to create a copy of an existing “template” record (custom entity) and then set the lookup on the new record to a parent, in this case the
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;