Skip to content

Commit 4572d32

Browse files
authored
Merge pull request #4695 from MicrosoftDocs/master
updating working
2 parents 3561c5b + 77175e7 commit 4572d32

File tree

6 files changed

+26
-14
lines changed

6 files changed

+26
-14
lines changed

powerapps-docs/developer/data-platform/file-attributes.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,15 @@ Web API (REST) | .NET API (SOAP)
2828
For information about types of files that are not allowed, see [System Settings General tab](/power-platform/admin/system-settings-dialog-box-general-tab) under the **Set blocked file extensions for attachments** setting.
2929

3030
> [!IMPORTANT]
31-
> Some restrictions do apply when using the File and enhanced Image data-types of the Microsoft Dataverse. If Customer Managed Keys (CMK) is enabled on the tenant, then File, Image, and IoT data-types are not available to the tenant's organizations. Solutions that contain excluded data-types will not install. Customers must opt-out of CMK in order to make use of these data-types.<p/>
32-
> File columns are supported in <xref:Microsoft.Xrm.Sdk.Client.OrganizationServiceProxy.SdkClientVersion> 9.0.45.329 or greater and Web API version 9.1 or greater.
31+
> Some restrictions do apply when using the File and enhanced Image data-types of the Microsoft Dataverse. If Customer Managed Keys (CMK) is enabled on the tenant, IoT data-types are not available to the tenant's organizations. Solutions that contain excluded data-types will not install. Customers must opt-out of CMK in order to make use of these data-types.<p/>
32+
> All CMK organizations as of version: 9.2.21052.00103 can support the use of the Dataverse file and image data types (aka File data type). Files within CMK organizations are
33+
> limited to a maximum size of 128MB per file. All files and images within CMK organizations will be stored in the Dataverse relational storage, instead of Dataverse File Blob
34+
> storage.
35+
> Other limitations:
36+
> - User Delegation SAS Downloads are not supported
37+
> - Chunking uploads and downloads are limited to a single chunk
38+
>
39+
> File columns are supported in <xref:Microsoft.Xrm.Sdk.Client.OrganizationServiceProxy.SdkClientVersion> 9.0.45.329 or greater and Web API version 9.1 or greater.
3340
3441

3542
<!--File data is not passed to plug-ins for performance reasons. You must retrieve the file data in plug-in code using an explicit retrieve call. -->
@@ -290,4 +297,4 @@ DELETE /api/data/v9.1/\<entity-type(id)\>/\<attribute-name\> | <xref:Microsoft.C
290297
[Image columns](image-attributes.md)
291298

292299

293-
[!INCLUDE[footer-include](../../includes/footer-banner.md)]
300+
[!INCLUDE[footer-include](../../includes/footer-banner.md)]

powerapps-docs/maker/canvas-apps/connections-list.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.custom:
99
- canvas
1010
- intro-internal
1111
ms.reviewer: tapanm
12-
ms.date: 04/23/2020
12+
ms.date: 06/14/2021
1313
ms.author: lanced
1414
search.audienceType:
1515
- maker
@@ -62,8 +62,8 @@ This table has links to more information about our most popular connectors. For
6262

6363
| &nbsp; | &nbsp; | &nbsp; | &nbsp; | &nbsp; |
6464
| --- | --- | --- | --- | --- |
65-
| ![Common Data Service](./media/connections-list/cdm.png) |[**Common Data Service**](connections/connection-common-data-service.md) |&nbsp; |![Cloud storage](./media/connections-list/onedrive.png) |[**Cloud storage**](connections/cloud-storage-blob-connections.md) ** |
66-
| ![Dynamics AX](./media/connections-list/dynamics-ax.png) |[**Dynamics AX**](connections/connection-dynamicsax.md)|&nbsp; |![Excel logo](./media/connections-list/excel.png) |[**Excel**](connections/connection-excel.md)|
65+
| ![Dataverse](./media/connections-list/cdm.png) |[**Common Data Service**](connections/connection-common-data-service.md) |&nbsp; |![Cloud storage](./media/connections-list/onedrive.png) |[**Cloud storage**](connections/cloud-storage-blob-connections.md) ** |
66+
| ![Dynamics AX](./media/connections-list/dynamics-ax.png) |[**Dynamics AX**](connections/connection-dynamicsax.md)|&nbsp; |![Microsoft Excel](./media/connections-list/excel.png) |[**Excel**](connections/connection-excel.md)|
6767
| ![Microsoft Translator](./media/connections-list/microsoft-translator.png) |[**Microsoft Translator**](connections/connection-microsoft-translator.md)|&nbsp; | ![Office 365 Outlook](./media/connections-list/office365.png) |[**Office 365 Outlook**](connections/connection-office365-outlook.md)|
6868
| ![Office 365 Users](./media/connections-list/office365.png) |[**Office 365 Users**](connections/connection-office365-users.md) |&nbsp; | ![Oracle](./media/connections-list/oracle-icon.png) |[**Oracle**](connections/connection-oracledb.md)|
6969
| ![Power BI](./media/connections-list/powerbi.png) |[**Power BI**](connections/connection-powerbi.md) |&nbsp; | ![SharePoint logo](./media/connections-list/sharepoint.png) |[**SharePoint**](connections/connection-sharepoint-online.md) |
@@ -93,7 +93,9 @@ This type of connection is also secure. For example Twitter uses this type of a
9393

9494
### SQL User name and password authentication
9595

96-
This type of connection is not very secure because it does not rely on end-user authentication. SQL Server also allows for this type of authentication. In SQL Server this type of authentication is called **SQL Server Authentication**. Many other database data sources provide a similar capability. When you publish your application, your users do not need to supply a unique user name and password. They are using the user name and password you supply when you author the application. The connection authentication to the data source is **Implicitly Shared** with your users. Once the application is published, the connection is also published and available to your users. Your end users can also create applications using any connection using SQL Server authentication that is shared with them. Your users cannot see the user name or password, but the connection will be available to them. There are certainly valid scenarios for this type of connection. For instance if you have a read-only database that is available to everyone in the company, this type of connection may be valid.
96+
This type of connection is not very secure because it does not rely on end-user authentication. **It should only be used in cases where you can safely assume that everyone who has access to this connection can see and use all of the data to which the connection provides access.** You cannot reliably lock down portions of the data accessible within the connection. For instance, if the connection allows access to a single table, you cannot rely on a userID to filter only to only see data for that specific user within that table. For a reliable security, use more secure connection such as [Azure AD Integrated](#azure-ad-integrated).
97+
98+
In SQL Server, this type of connection is called **SQL Server Authentication**. Many other database data sources provide a similar capability. When you publish your application, your users do not need to supply a unique user name and password. They are using the user name and password you supply when you author the application. The connection authentication to the data source is **Implicitly Shared** with your users. Once the application is published, the connection is also published and available to your users. Your end users can also create applications using any connection using SQL Server authentication that is shared with them. Your users cannot see the user name or password, but the connection will be available to them. **There are valid scenarios for this type of connection. For instance if you have a read-only database that is available to everyone in the company. Reference data scenarios (for example, a corporate calendar) can be useful for this kind of connection.**
9799

98100
### Windows Authentication
99101

powerapps-docs/maker/canvas-apps/controls/control-barcodescanner.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ manager: kvivek
66
ms.service: powerapps
77
ms.topic: reference
88
ms.custom: canvas
9-
ms.date: 06/12/2020
9+
ms.date: 06/15/2021
1010
ms.author: chmoncay
1111
ms.reviewer: tapanm
1212
search.audienceType:
@@ -27,6 +27,8 @@ The control shows the camera feed in the app so that users can scan barcodes on
2727
2828
## Key properties
2929

30+
**BarcodeType** - The barcode type to scan. Supported types: Codabar, Code39, Code128, EAN, I2of5, UPC. **Default: UPC**
31+
3032
**Camera** – On a device that has more than one camera, the numeric ID of the camera that the app uses for scanning barcodes.
3133

3234
## Additional properties
@@ -69,7 +71,7 @@ The control shows the camera feed in the app so that users can scan barcodes on
6971

7072
### Add barcode scanner control
7173

72-
1. Add a **barcode scanner** control, name it **Mybarcode scanner**
74+
1. Add a **barcode scanner** control, name it "Mybarcode scanner".
7375

7476
Don't know how to [add, name, and configure a control](../add-configure-controls.md)?
7577

@@ -93,4 +95,4 @@ The control shows the camera feed in the app so that users can scan barcodes on
9395
> Screen readers will announce when a new barcode has been found. The value won't be announced. As long as the barcode is in view, screen readers will remind the user every five seconds that the same barcode is still being identified.
9496
9597

96-
[!INCLUDE[footer-include](../../../includes/footer-banner.md)]
98+
[!INCLUDE[footer-include](../../../includes/footer-banner.md)]

powerapps-docs/maker/canvas-apps/intro-maker-portal.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: powerapps
77
ms.topic: conceptual
88
ms.custom: intro-internal
99
ms.reviewer:
10-
ms.date: 05/06/2021
10+
ms.date: 06/15/2021
1111
ms.author: tapanm
1212
search.audienceType:
1313
- maker
@@ -36,7 +36,7 @@ For best results, start by ensuring that the home page is set to the right envir
3636

3737
## Choose an environment
3838

39-
Whether you're creating an app, a flow, a data connection, or an entity in Microsoft Dataverse, much of what you do in Power Apps is contained in a specific environment. Environments create boundaries between different types of work; for example, an organization might have separate environments for different departments. Many organizations use environments to separate apps that are still being developed from those that are ready for widespread use. You might have access to multiple environments or only one and, if you have appropriate permissions, you might be able to create your own environments.
39+
Whether you're creating an app, a flow, a data connection, or a table in Microsoft Dataverse, much of what you do in Power Apps is contained in a specific environment. Environments create boundaries between different types of work; for example, an organization might have separate environments for different departments. Many organizations use environments to separate apps that are still being developed from those that are ready for widespread use. You might have access to multiple environments or only one and, if you have appropriate permissions, you might be able to create your own environments.
4040

4141
To verify which environment you're in, find the environment switcher near the right side of the header.
4242

@@ -45,7 +45,8 @@ To verify which environment you're in, find the environment switcher near the ri
4545
If you create an app in one environment, you won't be able to see it from another environment. In addition, people who want to run your app must have access to the environment in which you created it.
4646

4747
> [!IMPORTANT]
48-
> Make sure that you're in the right environment *before* you create an app, a flow, or a similar component. You can't easily move components from one environment to another.
48+
> - To view the environment list in the environment switcher in Power Apps, you must have the Environment Maker, System Customizer, or System Administrator security role in the environment. For information about predefined security roles, see [Predfined security roles](/power-platform/admin/database-security#predefined-security-roles) in the Microsoft Power Platform admin guide.
49+
> - Make sure that you're in the right environment *before* you create an app, a flow, or a similar component. You can't easily move components from one environment to another.
4950
5051
For more information, see [Environments overview](/power-platform/admin/environments-overview).
5152

@@ -73,7 +74,7 @@ You can also search for an app by typing one or more characters in the search ba
7374

7475
From the **Home** page, you can create apps, portals, chatbots and AI models:
7576

76-
- [Get staerted with canvas apps](/powerapps/maker/canvas-apps/)
77+
- [Get started with canvas apps](/powerapps/maker/canvas-apps/)
7778
- [Get started with model-driven apps](/powerapps/maker/model-driven-apps/)
7879
- [Get started with portals](/powerapps/maker/portals/)
7980
- [Get started with chatbots](/powerapps/chatbots)
2.79 KB
Loading
2.23 KB
Loading

0 commit comments

Comments
 (0)