Skip to content

Commit 099db40

Browse files
authored
Merge pull request #6475 from MicrosoftDocs/jdaly-main-audit-links
Jdaly main audit links
2 parents e42835f + ba858bc commit 099db40

File tree

5 files changed

+11
-13
lines changed

5 files changed

+11
-13
lines changed

.openpublishing.redirection.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"redirections": [
33
{
44
"source_path": "powerapps-docs/developer/data-platform/audit-user-access.md",
5-
"redirect_url": "../data-platform/auditing/auditing-overview",
5+
"redirect_url": "../data-platform/auditing/overview",
66
"redirect_document_id": false
77
},
88
{

powerapps-docs/developer/data-platform/auditing/configure.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,8 @@ More information:
504504

505505
### See also
506506

507-
[Administrators Guide: Manage Dataverse auditing](/power-platform/admin/manage-dataverse-auditing)<br />
507+
[Administrators Guide: Audit data and user activity for security and compliance](/power-platform/admin/audit-data-user-activity)<br />
508+
[Administrators Guide: System Settings Auditing tab](/power-platform/admin/system-settings-dialog-box-auditing-tab)<br />
508509
[Auditing overview](overview.md)<br />
509510
[Retrieve the history of audited data changes](retrieve-audit-data.md)<br />
510511
[Delete audit data](delete-audit-data.md)

powerapps-docs/developer/data-platform/auditing/delete-audit-data.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ New partitions are automatically created by the Dataverse platform on a quarterl
266266

267267
[Auditing overview](overview.md)<br />
268268
[Configure auditing](configure.md)<br />
269-
[Retrieve the history of audited data changes](retrieve-audit-data.md)
270-
269+
[Retrieve the history of audited data changes](retrieve-audit-data.md)<br />
270+
[Administrators Guide: Recover database space by deleting audit logs](/power-platform/admin/recover-database-space-deleting-audit-logs)
271271

272272
[!INCLUDE [footer-banner](../../../includes/footer-banner.md)]

powerapps-docs/developer/data-platform/auditing/overview.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Auditing overview (Microsoft Dataverse) | Microsoft Docs" # Intent and product brand in a unique string of 43-59 chars including spaces
33
description: "Programmatically use the auditing capability of Microsoft Dataverse to record data changes over time for use in analysis and reporting purposes." # 115-145 characters including spaces. This abstract displays in the search result.
4-
ms.date: 06/03/2022
4+
ms.date: 06/05/2022
55
ms.reviewer: jdaly
66
ms.topic: overview
77
author: Bluebear7 # GitHub ID
@@ -23,7 +23,7 @@ contributors:
2323
Dataverse auditing provides capabilities to meet the external and internal auditing, compliance, security, and governance policies that are common to many enterprises. Dataverse auditing logs changes that are made to records and logs user access. Developers can use the tables and APIs that support the auditing feature to create client applications or programmatically interact with auditing data.
2424

2525
> [!IMPORTANT]
26-
> For a complete description of the auditing concepts, capabilities, how it is exposed in apps, and tasks for administrators, see [Administrators Guide: Manage Dataverse auditing](/power-platform/admin/manage-dataverse-auditing).
26+
> For a complete description of the auditing concepts, capabilities, how it is exposed in apps, and tasks for administrators, see [Administrators Guide: Audit data and user activity for security and compliance](/power-platform/admin/audit-data-user-activity).
2727
>
2828
> This content for developers expects that you are already familiar with the documentation for administrators. The Dataverse tables and APIs provide the functionality to support the clients used by administrators and apps.
2929
@@ -96,7 +96,7 @@ More information: [Delete audit data](delete-audit-data.md)
9696

9797
### See also
9898

99-
[Administrators Guide: Manage Dataverse auditing](/power-platform/admin/manage-dataverse-auditing)<br />
99+
[Administrators Guide: Audit data and user activity for security and compliance](/power-platform/admin/audit-data-user-activity)<br />
100100
[Configure auditing](configure.md)<br />
101101
[Retrieve the history of audited data changes](retrieve-audit-data.md)<br />
102102
[Delete audit data](delete-audit-data.md)

powerapps-docs/developer/data-platform/auditing/retrieve-audit-data.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ After auditing is enabled and data changes are made to those tables and columns
2929

3030
Data for auditing events is in the [Auditing (Audit) table](../reference/entities/audit.md). In the Web API the <xref:Microsoft.Dynamics.CRM.audit?text=audit EntityType> is the resource for this data. The audit table is read-only.
3131

32-
The audit table provides the data for the **View Audit Summary** displayed in the Power Platform admin center. More information: [Administrators Guide: Use the Audit Summary view](/power-platform/admin/manage-dataverse-auditing#use-the-audit-summary-view)
32+
The audit table provides the data for the **View Audit Summary** displayed in the Power Platform admin center. More information: [Administrators Guide: View audit logging details](/power-platform/admin/audit-data-user-activity#view-audit-logging-details)
3333

3434
Calling user must have the `prvReadAuditSummary` privilege to retrieve data from this table. More information: [Example: Check whether a user has a privilege](../security-access-coding.md#example-check-whether-a-user-has-a-privilege)
3535

@@ -728,9 +728,6 @@ More information:
728728
- <xref:Microsoft.Dynamics.CRM.RetrieveAttributeChangeHistoryResponse?text=RetrieveAttributeChangeHistoryResponse ComplexType>
729729
- <xref:Microsoft.Dynamics.CRM.AuditDetailCollection?text=AuditDetailCollection ComplexType>
730730

731-
> [!NOTE]
732-
> The <xref:Microsoft.Dynamics.CRM.AttributeAuditDetail?text=AttributeAuditDetail ComplexType> returned currently does not include the `AuditRecord` property so there is no data about who made the change and when it was made.
733-
734731
# [SDK for .NET](#tab/sdk)
735732

736733
The `ShowAttributeChangeHistory` static method below will return the first 20 audited changes for specified column in the specified record.
@@ -970,7 +967,7 @@ More information:
970967
[Configure auditing](configure.md)<br />
971968
[Delete audit data](delete-audit-data.md)<br />
972969
[Sample: Audit table data changes](../org-service/samples/audit-entity-data-changes.md)<br />
973-
[Sample: Audit user access](../org-service/samples/audit-user-access.md)
974-
970+
[Sample: Audit user access](../org-service/samples/audit-user-access.md)<br />
971+
[Administrators Guide: Audit data and user activity for security and compliance](/power-platform/admin/audit-data-user-activity)
975972

976973
[!INCLUDE [footer-banner](../../../includes/footer-banner.md)]

0 commit comments

Comments
 (0)