Microsoft PowerApps Office Add-In enables user to read, modify and insert data in CDS environment. Add-In is available for download here for free, or you will be prompted to install
Microsoft PowerApps Office Add-In enables user to read, modify and insert data in CDS environment. Add-In is available for download here for free, or you will be prompted to install
This month I was awarded the “Top 10 in October 2018 Blog Leaderboard” badge in Microsoft Dynamics Community. https://community.dynamics.com/members/nishant-rana/userbadges Thanks to all the readers and the subscribers of the blog. Check
Suppose we have scheduled our packages through SQL Server Agent Job and we receive the notification that one of our packages has failed. To get its details, within SSISDB, we
Microsoft has released many new features and enhancements for PowerApps since June 2018, part of this blog we will cover three new functions introduced which I believe would be mostly
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;