John Smith
John Smith

Reputation: 63

CRM 2015 How to read audit data in clear form?

How can I read from AuditBase using sdk 2015? How can I read the data in clear and understandable form?

Upvotes: 2

Views: 370

Answers (1)

James Wood
James Wood

Reputation: 17562

Check out these SDK functions, Audit entity messages and methods

  • DeleteAuditDataRequestm Deletes all partitions containing audit data created before a given end date.
  • RetrieveAttributeChangeHistoryRequest, Retrieves all changes to a specific attribute.
  • RetrieveAuditDetailsRequest, Retrieves the full audit details of a particular audit record. The record to retrieve is specified in the AuditId property.
  • RetrieveRequest, Retrieves an audit record. You can also call the IOrganizationService.Retrieve method.
  • RetrieveMultipleRequest, Retrieves a collection of audit records. You can also call the IOrganizationService.RetrieveMultiple method.
  • RetrieveRecordChangeHistoryRequest, Retrieves all changes to a specific entity.

Upvotes: 3

Related Questions