Skip to content

Commit fb0c3df

Browse files
committed
Merge branch 'master' into portals-1553949
2 parents 03c15b5 + eb780cc commit fb0c3df

File tree

16 files changed

+68
-27
lines changed

16 files changed

+68
-27
lines changed

powerapps-docs/developer/common-data-service/powerapps-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ This table lists some common commands used in the CLI:
4848
4949
|Command|Description|Examples|
5050
|------|-----------|--------|
51-
|**pcf**|Commands for working with [Power Apps component framework](/powerapps/developer/component-framework/overview). It has the following parameters: <br/> - **init**: Initializes the code component project. It has the following parameters <br/> - *namespace*: Namespace of the code component. <br/> - *name*: Name of the code component. <br/> - *template*: Field or dataset <br/> - **push**: Pushes the code component to the Common Data Service instance with all the latest changes. It has the following parameter: <br/> - *publisher-prefix*: Publisher prefix of the organization.<br/> - **Version**: Updates the component manifest file with the specified patch version. It has the following parameters: <br/> - *patchversion*: Patch version of the code component. `patchversion` will only take value of the third part of the version tuple: `Major.Minor.Patch`.<br/> - *path*: Absolute or relative path of the component manifest file.<br/> - *allmanifests*: Updates the patch version for all the component manifest files.| `pac pcf init --namespace <specify your namespace here> --name <Name of the code component> --template <component type>` <br/> <br/> `pac pcf push --publisher-prefix <your publisher prefix>` <br/><br/> `pac pcf version --patchversion <number> --path <Absolute or relative path to component manifest file --allmanifests`|
51+
|**pcf**|Commands for working with [Power Apps component framework](/powerapps/developer/component-framework/overview). It has the following parameters: <br/> - **init**: Initializes the code component project. It has the following parameters <br/> - *namespace*: Namespace of the code component. <br/> - *name*: Name of the code component. <br/> - *template*: Field or dataset <br/> - **push**: Pushes the code component to the Common Data Service instance with all the latest changes. It has the following parameter: <br/> - *publisher-prefix*: Publisher prefix of the organization.<br/> - **Version**: Updates the component manifest file with the specified patch version. It has the following parameters: <br/> - *patchversion*: Patch version of the code component. `patchversion` will only take value of the third part of the version tuple: `Major.Minor.Patch`.<br/> - *path*: Absolute or relative path of the component manifest file.<br/> - *allmanifests*: Updates the patch version for all the component manifest files. <br/> - *strategy*: Updates patch version for the manifest files using specified strategy values.| `pac pcf init --namespace <specify your namespace here> --name <Name of the code component> --template <component type>` <br/> <br/> `pac pcf push --publisher-prefix <your publisher prefix>` <br/><br/> `pac pcf version --patchversion <number> --path <Absolute or relative path to component manifest file --allmanifests` <br/><br/> `pac pcf version --strategy gittags`|
5252
|**solution**|Commands for working with [Common Data Service solution projects](/powerapps/maker/common-data-service/solutions-overview). It has the following parameters: <br/> - **init**: Initializes the solution project. It has the following parameters:<br/> - *publisher-name*: Publisher name of the organization. <br/> - *publisher-prefix*: Publisher prefix of the organization. <br/> - **add-reference**: Sets the reference path to the component project folder by passing the `path` parameter.<br/> - **clone**: Creates a solution project based up on the existing solution project by passing the following parameters:<br/> -*name*: The name of the solution to be exported.<br/> -*targetversion*: The version that the exported solution supports.<br/> -*include*: Settings that should be included in the solution being exported.<br/> -**Export**: Exports a Common Data Service solution project from the current organization. It has the following parameters:<br/> -*path*: Place where the exported solution zip file will be saved.<br/> - *name*: Name oft he solution that needs to be exported.<br/> - *managed*: Defines whether the solution should be exported as a managed solution or not.<br/>-*targetversion*: The version that the exported solution supports.<br/> -*include*: Settings that should be included in the solution being exported.|`pac solution init --publisher-name <enter your publisher name> --publisher-prefix <enter your publisher prefix>` <br/><br/> `pac solution add-reference --path <path to your Power Apps component framework project>`<br/><br/> `pac solution clone –name<name of the solution to be exported> --version <version of your solution> --include <settings that should be included>`|
5353
|**auth**|Commands to [authenticate to Common Data Service](/powerapps/developer/component-framework/import-custom-controls#connecting-to-your-environment). It has the following parameters: <br/> - **create**: Creates the authentication profile for your organization by passing the `url` parameter. Pass the organization url for the `url` parameter. <br/> - **list**: Provides the list of authentication profiles. <br/> - **select**: Provides a way to switch between previously created authentication profiles by passing the `index` parameter.<br/>**delete**: Deletes the authentication profile created by passing the `index` parameter.|`pac auth create --url <your Common Data Service org’s url>` <br/> <br/> `pac auth list` <br/><br/> `Pac auth select --index <index of the active profile>`|
5454
|**telemetry**|Manages the telemetry settings. It has the following parameters: <br/>- *enable*: Enables the telemetry option.<br/> - *disable*: Disables the telemetry option.<br/> - *status*: Returns whether the telemetry is enabled or disabled.|`pac telemetry enable` <br/><br/> `pac telemetry disable`|

powerapps-docs/developer/component-framework/manifest-schema-reference/feature-usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.assetid: 87f5e921-4114-4710-a362-db741426a69b
1515

1616
# feature-usage element
1717

18-
The feature-usage element acts as a wrapper around the `uses-feature` elements, which themselves allow developers to declare which features their component wants to use. If there are no uses-feature elements defined, the feature-usage element is not required.
18+
[!INCLUDE [feature-usage-description](includes/feature-usage-description.md)]
1919

2020
## Available for
2121

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
title: Feature Usage | Microsoft Docs
3+
description:
4+
keywords:
5+
ms.date: 06/24/2020
6+
ms.service: "powerapps"
7+
ms.suite: ""
8+
ms.tgt_pltfrm: ""
9+
ms.topic: "article"
10+
applies_to:
11+
- "Dynamics 365 (online)"
12+
- "Dynamics 365 Version 9.x"
13+
---
14+
15+
The feature-usage element acts as a wrapper around the `uses-feature` elements, which themselves allow developers to declare which features their component wants to use. If there are no uses-feature elements defined, the feature-usage element is not required.

powerapps-docs/developer/component-framework/manifest-schema-reference/includes/resources-description.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ applies_to:
1515
ms.assetid: cc323973-f0c3-474a-921e-68135593d4b2
1616
---
1717

18-
The resources node in the component manifest refers to the resource file that components require to implement it's visualization.
18+
The resources node in the component manifest refers to the resource files that component requires to implement it's visualization.

powerapps-docs/developer/component-framework/manifest-schema-reference/manifest.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ Model-driven apps and canvas apps (public preview)
2929
|[type-group](type-group.md)|[!INCLUDE [type-group-description](includes/type-group-description.md)]|0 or more|Model-driven apps and canvas apps (public preview) |
3030
|[property](property.md)|[!INCLUDE [property-description](includes/property-description.md)]|0 or more|Model-driven apps and canvas apps (public preview) |
3131
|[data-set](data-set.md)|[!INCLUDE [data-set-description](includes/data-set-description.md)]|0 or more|Model-driven apps|
32-
|[resource](resources.md)|[!INCLUDE [resource-description](includes/resources-description.md)]|1 or more|Model-driven apps and canvas apps (public preview) |
32+
|[resources](resources.md)|[!INCLUDE [resource-description](includes/resources-description.md)]|1 or more|Model-driven apps and canvas apps (public preview) |
33+
|[feature-usage](feature-usage.md)|[!INCLUDE [feature-usage-description](includes/feature-usage-description.md)]|0 or more|Model-driven apps and canvas apps (public preview) |
3334

3435
## Example
3536

powerapps-docs/developer/component-framework/reference/device/getcurrentposition.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ Type: `Promise<Position>`
3131

3232
## Remarks
3333

34-
See [Promise](https://developer.mozilla.org/docs/Web/JavaScript/reference/Global_Objects/Promise) and [Position](https://developer.mozilla.org/docs/Web/API/Position)
34+
See [Promise](https://developer.mozilla.org/docs/Web/JavaScript/reference/Global_Objects/Promise) and [Position](../position.md)
3535

3636
### Related topics
3737

3838
[Device](../device.md)<br/>
3939
[Power Apps component framework API reference](../../reference/index.md)<br/>
40-
[Power Apps component framework overview](../../overview.md)
40+
[Power Apps component framework overview](../../overview.md)

powerapps-docs/developer/component-framework/reference/position.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,8 @@ Contains a set of geographic coordinates along with the associated currency as w
3232

3333
Represents the time when the object is acquired and is represented ad DOMTimeStamp.
3434

35-
**Type**: `Date`
35+
**Type**: `Date`
36+
37+
## Remarks
38+
39+
See more details on [Position](https://developer.mozilla.org/docs/Web/API/Position)

powerapps-docs/maker/model-driven-apps/create-edit-views-app-designer.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Create and edit public or system model-driven app views with Power Apps | MicrosoftDocs"
33
description: "Learn now to create or edit views by using the app designer"
44
keywords: ""
5-
ms.date: 03/23/2020
5+
ms.date: 06/23/2020
66
ms.service: powerapps
77
ms.custom:
88
ms.topic: article
@@ -45,9 +45,13 @@ More information: [Understand views](create-edit-views.md)
4545

4646
## Create a public view in Power Apps
4747
As an app maker, you can create and edit public views by using Power Apps.
48+
49+
> [!NOTE]
50+
> Public views created in Power Apps that include **Contains data** or **Does not contain data** filters will not appear in the list of saved views in Advanced Find.
51+
4852
1. Sign in to [Power Apps](https://make.powerapps.com/?utm_source=padocs&utm_medium=linkinadoc&utm_campaign=referralsfromdoc).
4953

50-
2. Expand **Data**, select **Entities**, select the entity that you want, and then select the **Views** tab.
54+
2. Expand **Data**, select **Entities**, select the entity that you want, and then select the **Views** tab.
5155

5256
3. On the toolbar, select **Add view**.
5357

@@ -66,7 +70,7 @@ As an app maker, you can create and edit public views by using Power Apps.
6670
> [!NOTE]
6771
> You can also change column order by clicking on the column header and selecting **Move Right** or **Move Left**.
6872
69-
10. Select **Publish** to save the view and make it available for other users in your organization.
73+
7. Select **Publish** to save the view and make it available for other users in your organization.
7074

7175

7276
## Work with views in app designer

powerapps-docs/sample-apps/crisis-financial-impact-tracker/configure-dashboards.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -312,8 +312,9 @@ To use your own data collected by the Higher Education Crisis Financial Impact T
312312

313313
To change the data source, select **Transform data** to open Query Editor. In the **Applied Steps** of Query Editor, change the **Source** for each entity. Use the Common Data Service environment URL.
314314

315-
## Report issues
315+
## Issues and feedback
316316

317-
To report an issue with the Higher Education Crisis Financial Impact Tracker app, visit <https://aka.ms/crisis-financial-impact-tracker-issues>.
317+
- To report an issue with the Higher Education Crisis Financial Impact Tracker app, visit <https://aka.ms/crisis-financial-impact-tracker-issues>.
318+
- For feedback about Higher Education Crisis Financial Impact Tracker app, visit <https://aka.ms/crisis-financial-impact-tracker-feedback>.
318319

319320

powerapps-docs/sample-apps/crisis-financial-impact-tracker/configure-data.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,8 @@ To create a record in Employee Compensation:
447447
To edit the record, select it, update the values as required, and then select
448448
**Save & Close.**
449449

450-
## Report issues
450+
## Issues and feedback
451451

452-
To report an issue with the Higher Education Crisis Financial Impact Tracker app, visit <https://aka.ms/crisis-financial-impact-tracker-issues>.
452+
- To report an issue with the Higher Education Crisis Financial Impact Tracker app, visit <https://aka.ms/crisis-financial-impact-tracker-issues>.
453+
- For feedback about Higher Education Crisis Financial Impact Tracker app, visit <https://aka.ms/crisis-financial-impact-tracker-feedback>.
453454

0 commit comments

Comments
 (0)