Skip to content

Commit 94a740e

Browse files
authored
Merge branch 'main' into mints-coauthor
2 parents aa7f122 + 9b89273 commit 94a740e

29 files changed

+1285
-932
lines changed

.openpublishing.redirection.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
{
22
"redirections": [
3+
{
4+
"source_path": "powerapps-docs/developer/data-platform/bypass-custom-business-logic.md#bypass-power-automate-flows",
5+
"redirect_url": "bypass-power-automate-flows",
6+
"redirect_document_id": "false"
7+
},
8+
{
9+
"source_path": "powerapps-docs/developer/data-platform/bypass-custom-business-logic-preview.md",
10+
"redirect_url": "bypass-custom-business-logic",
11+
"redirect_document_id": "false"
12+
},
313
{
414
"source_path": "powerapps-docs/developer/data-platform/org-service/build-queries-with-queryexpression.md",
515
"redirect_url": "queryexpression/overview",

powerapps-docs/developer/component-framework/reference/utility/hasentityprivilege.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: hasEntityPrivilege (Power Apps component framework API reference) | Micro
33
description: Returns if the user has privilege for specific table.
44
ms.author: hemantg
55
author: HemantGaur
6-
ms.date: 05/27/2022
6+
ms.date: 06/25/2024
77
ms.reviewer: jdaly
88
ms.topic: reference
99
ms.subservice: pcf
@@ -35,6 +35,15 @@ Model-driven apps
3535

3636
**Type**: `boolean`
3737

38+
## Remarks
39+
40+
This function might return false if the table metadata isn't locally cached. To ensure the table metadata is available in the local cache, call and await on [getEntityMetadata](getentitymetadata.md) before calling `hasEntityPrivilege`.
41+
42+
```TypeScript
43+
await context.utils.getEntityMetadata(entityTypeName);
44+
context.utils.hasEntityPrivilege(entityTypeName, privilegeType, privilegeDepth);
45+
```
46+
3847
### Related articles
3948

4049
[Utility](../utility.md)<br/>

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

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,9 @@
180180
href: image-column-data.md
181181
- name: Use Attachments and Annotations
182182
href: attachment-annotation-files.md
183+
- name: Create link to download file
184+
displayName: getFileSasUrl
185+
href: getfilesasurl.md
183186
- name: Audit data changes
184187
items:
185188
- name: Overview
@@ -210,11 +213,11 @@
210213
- name: Service protection API limits
211214
href: api-limits.md
212215
- name: Bypass Custom Business logic
213-
href: bypass-custom-business-logic.md
214216
items:
215-
- name: New options (preview)
216-
href: bypass-custom-business-logic-preview.md
217-
displayName: Bypass Business logic (preview)
217+
- name: Bypass Custom Dataverse logic
218+
href: bypass-custom-business-logic.md
219+
- name: Bypass Power Automate flows
220+
href: bypass-power-automate-flows.md
218221
- name: Best Practices
219222
href: best-practices/work-with-data/index.md
220223
- name: Add and remove sample data

powerapps-docs/developer/data-platform/attachment-annotation-files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ms.custom: bap-template
1717

1818
[Attachment (ActivityMimeAttachment)](reference/entities/activitymimeattachment.md) and [Note (Annotation)](reference/entities/annotation.md) tables contain special string columns that store file data. These tables existed before file or image columns, so they work differently from those tables.
1919

20-
- The binary file data is stored as Base64-encoded string values in string columns. Attachments are stored in the column[`ActivityMimeAttachment.Body`](reference/entities/activitymimeattachment.md#BKMK_Body) and notes are stored in the column [`Annotation.DocumentBody`](reference/entities/annotation.md#BKMK_DocumentBody).
20+
- The binary file data is stored as Base64-encoded string values in string columns. Attachments are stored in the column [`ActivityMimeAttachment.Body`](reference/entities/activitymimeattachment.md#BKMK_Body) and notes are stored in the column [`Annotation.DocumentBody`](reference/entities/annotation.md#BKMK_DocumentBody).
2121
- File name data is stored in the `FileName` column.
2222
- MIME type data is stored in the `MimeType` column.
2323

powerapps-docs/developer/data-platform/bypass-custom-business-logic-preview.md

Lines changed: 0 additions & 373 deletions
This file was deleted.

powerapps-docs/developer/data-platform/bypass-custom-business-logic.md

Lines changed: 262 additions & 330 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)