Skip to content

Commit 22c177d

Browse files
authored
Merge pull request #5807 from MicrosoftDocs/main
Merge main to live
2 parents 4d4dbdb + 1fd142f commit 22c177d

File tree

7 files changed

+22
-9
lines changed

7 files changed

+22
-9
lines changed

powerapps-docs/developer/data-platform/dataverse-sql-query.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Only Azure Active Directory authentication is supported. SQL authentication and
4444
![Connec dialog.](media/ssms-connect-dialog.PNG)
4545

4646
> [!NOTE]
47-
> Ports 1433 and/or 5558 need to be enabled to use the TDS endpoint from a client application such as SSMS. If you only enable port 5558, the user must append that port number to the server name in the **Connect to Server** dialog of SSMS - for example: myorgname.crm.dynamics.com;5558.
47+
> Ports 1433 and/or 5558 need to be enabled to use the TDS endpoint from a client application such as SSMS. If you only enable port 5558, the user must append that port number to the server name in the **Connect to Server** dialog of SSMS - for example: myorgname.crm.dynamics.com,5558.
4848
4949
#### Example table data queries
5050

@@ -113,7 +113,7 @@ Queries using the TDS endpoint execute under the service protection API limits.
113113
Below are some know error conditions and how to resolve them.
114114
115115
> [!NOTE]
116-
> Ports 1433 and/or 5558 need to be enabled to use the TDS endpoint from a client application such as SSMS. If you only enable port 5558, the user must append that port number to the server name in the **Connect to Server** dialog of SSMS - for example: myorgname.crm.dynamics.com;5558.
116+
> Ports 1433 and/or 5558 need to be enabled to use the TDS endpoint from a client application such as SSMS. If you only enable port 5558, the user must append that port number to the server name in the **Connect to Server** dialog of SSMS - for example: myorgname.crm.dynamics.com,5558.
117117
118118
### Authentication
119119

powerapps-docs/maker/TOC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1299,7 +1299,7 @@
12991299
href: ./model-driven-apps/using-tree-view-on-form.md
13001300
- name: Create or edit forms
13011301
href: ./model-driven-apps/create-and-edit-forms.md
1302-
- name: Add, move or delete columns
1302+
- name: Manage columns
13031303
href: ./model-driven-apps/add-move-or-delete-fields-on-form.md
13041304
- name: Add, move or delete components
13051305
href: ./model-driven-apps/add-move-configure-or-delete-components-on-form.md
Loading

powerapps-docs/maker/model-driven-apps/add-move-or-delete-fields-on-form.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Add, configure, move, or delete columns on a form | MicrosoftDocs"
33
description: Learn how to work with columns on a form using Power Apps.
44
ms.custom: ""
5-
ms.date: 05/04/2020
5+
ms.date: 02/03/2022
66
ms.reviewer: ""
77
ms.service: powerapps
88
ms.suite: ""
@@ -25,7 +25,7 @@ search.app:
2525
- D365CE
2626
---
2727

28-
# Add, configure, move, or delete columns on a form
28+
# Add, move, configure, or delete columns on a form
2929

3030
Add, configure, move, or delete columns using the form designer.
3131

@@ -67,7 +67,7 @@ To add columns to a form, use the **Columns** pane. The **Columns** pane lets yo
6767

6868
:::image type="content" source="../../maker/model-driven-apps/media/add-form-columns-using-selection.gif" alt-text="Add form columns using selection":::
6969

70-
## Configure columns on a form
70+
## Configure column properties on a form
7171

7272
The properties and events can be configured for column when you create or edit a form using the form designer.
7373

@@ -92,6 +92,17 @@ The **Properties** tab displays the following properties.
9292
9393
:::image type="content" source="../../maker/model-driven-apps/media/app-designer-form-column-properties.png" alt-text="view column properties":::
9494

95+
### Edit a column and view column names
96+
97+
To view column names, such as schema name or to change additional column properties, such as required, searchable, description, and size, follow these steps:
98+
99+
1. Select the column, and then in the right column properties pane select the information icon ![Information icon](../data-platform/media/data-platform-import-export/information-icon-inline.png) next to the column name.
100+
101+
:::image type="content" source="../data-platform/media/data-platform-import-export/column-actions-form-designer.png" alt-text="Select the column information icon.":::
102+
1. The display and unique names appear. Select **Edit table column** to display the **Edit Table Column** pane where you can make the changes you want.
103+
1. When you're finished making your changes, select **Done**.
104+
1. Select **Save** and then select **Publish** to make your changes available to app users.
105+
95106
## Column events
96107

97108
The **Events** tab is where event handlers for model-driven app forms can be configured for a column. An event handler consists of a reference to a JavaScript web resource and a function defined within that web resource that will execute when the event occurs, such as when the value for the column changes. More information: [Configure model-driven app form event handlers](configure-event-handlers-legacy.md)

powerapps-docs/maker/model-driven-apps/create-edit-main-forms.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Each main form is composed of one or more tabs. Each tab can have one or more se
5656
4. Edit the properties for parts of the form, as needed:
5757

5858
- [Edit form properties](create-and-edit-forms.md#configure-a-form)
59-
- [Edit form column properties](Add-move-or-delete-fields-on-form.md#configure-columns-on-a-form)
59+
- [Edit form column properties](Add-move-or-delete-fields-on-form.md#configure-column-properties-on-a-form)
6060
- [Edit tab properties](add-move-or-delete-tabs-on-form.md#configure-tabs-on-a-form)
6161
- [Edit section properties](add-move-or-delete-sections-on-form.md)
6262

@@ -68,4 +68,4 @@ Each main form is composed of one or more tabs. Each tab can have one or more se
6868

6969
[Create and edit a main form walkthrough](create-and-edit-a-model-driven-form.md)
7070

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

powerapps-docs/maker/portals/admin/migrate-portal-configuration.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: neerajnandwana-msft
55
ms.service: powerapps
66
ms.topic: conceptual
77
ms.custom:
8-
ms.date: 1/4/2022
8+
ms.date: 02/03/2022
99
ms.subservice: portals
1010
ms.author: nenandw
1111
ms.reviewer: ndoelman
@@ -155,10 +155,12 @@ Schema files are available for the following portal types:
155155
- **Portals created in an environment with Dataverse**
156156
- [Custom portal (Blank portal)](https://go.microsoft.com/fwlink/p/?linkid=2110477)
157157
- [Custom portal (Blank portal)](https://go.microsoft.com/fwlink/p/?linkid=2162831) (for version [9.2.2103.x](../versions/package-version-9.2.2103.md))
158+
- [Custom portal (Blank portal)](https://go.microsoft.com/fwlink/?linkid=2186536) (for version [9.3.2201.x](../versions/package-version-9.3.2201.md) or higher)
158159
159160
- **Portals created in an environment containing customer engagement apps (such as Dynamics 365 Sales and Dynamics 365 Customer Service)**
160161
- [Custom portal (Blank portal)](https://go.microsoft.com/fwlink/p/?linkid=2019804)
161162
- [Custom portal (Blank portal)](https://go.microsoft.com/fwlink/p/?linkid=2162733) (for version [9.2.2103.x](../versions/package-version-9.2.2103.md))
163+
- [Custom portal (Blank portal)](https://go.microsoft.com/fwlink/?linkid=2186261) (for version [9.3.2201.x](../versions/package-version-9.3.2201.md) or higher)
162164
- [Community portal](https://go.microsoft.com/fwlink/p/?linkid=2019704)
163165
- [Customer Self-Service portal](https://go.microsoft.com/fwlink/p/?linkid=2019705)
164166
- [Partner portal](https://go.microsoft.com/fwlink/p/?linkid=2019803)

0 commit comments

Comments
 (0)