Skip to content

Commit edbd1f4

Browse files
committed
final edits
1 parent 6d27003 commit edbd1f4

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

powerapps-docs/developer/data-platform/TOC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
items:
127127
- name: Use DeleteMultiple (preview)
128128
href: deletemultiple.md
129-
- name: Restore deleted records
129+
- name: Restore deleted records (preview)
130130
displayName: RecycleBin, Restore
131131
href: restore-deleted-records.md
132132
- name: Create your own messages

powerapps-docs/developer/data-platform/restore-deleted-records.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -499,13 +499,13 @@ This function depends on the `Get-Records` and `Update-Record` functions describ
499499
function Set-CleanupIntervalInDays{
500500
param(
501501
[Parameter(Mandatory)]
502-
[string]$tableEntityId,
502+
[guid]$tableEntityId,
503503
[Parameter(Mandatory)]
504504
[int]$cleanupIntervalInDays
505505
)
506506
$records = (Get-Records `
507507
-setName 'recyclebinconfigs' `
508-
-query "?`$filter=_extensionofrecordid_value eq '$($tableEntityId)'").value
508+
-query "?`$filter=_extensionofrecordid_value eq $($tableEntityId)").value
509509
510510
if ($records.Count -eq 1) {
511511
$recyclebinconfigId = $records[0].recyclebinconfigid
@@ -646,7 +646,7 @@ function Disable-RecycleBinForTable {
646646
Delete the row in the [RecycleBinConfig](reference/entities/recyclebinconfig.md) table where the `name` value is `"organization"`. This triggers deleting all the records in the `RecycleBinConfig` table and disable recycle bin for the environment.
647647

648648
> [!IMPORTANT]
649-
> Don't try to delete individual records. It is important that Dataverse manage this.
649+
> Don't try to delete other individual records. It is important that Dataverse manage this.
650650
651651
## Manage restoring records deleted by custom business logic
652652

@@ -1025,3 +1025,7 @@ The following tables are the result of the query found in [Detect which tables d
10251025
`workqueue`<br />
10261026
:::column-end:::
10271027
:::row-end:::
1028+
1029+
### See also
1030+
1031+
[Restore deleted Microsoft Dataverse table records (preview)](/power-platform/admin/restore-deleted-table-records)

0 commit comments

Comments
 (0)