Skip to content

Commit 14f4151

Browse files
authored
Merge branch 'live' into pr-avoid-window-top
2 parents 41484ed + bd543dc commit 14f4151

File tree

10 files changed

+41
-22
lines changed

10 files changed

+41
-22
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/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/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

powerapps-docs/sample-apps/crisis-financial-impact-tracker/deploy-solution.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,8 @@ For admin users to use the admin app (the model-driven app), it must be shared w
169169

170170
4. Specify the Azure AD group or admin users who you want to share this app with, assign them the **Higher Education Crisis Financial Impact Tracker App User** security role, and then select **Share**.
171171

172-
## Report issues
172+
## Issues and feedback
173173

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

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The Higher Education Crisis Financial Impact Tracker solution helps researchers
1919
## Demo: Quick overview
2020

2121
Watch a quick overview of the Higher Education Crisis Financial Impact Tracker solution.
22-
<!--note from editor: I see that the fictitious employee names in the video are included with sample data for the app. However, the email address format ("[email protected]") doesn't comply with CELA guidelines, which say to use first name followed by an approved fictitious ___domain name (e.g. "[email protected]"). It does look like having just the first name might not work for this content, but is there any way to double-check to make sure that the "email.com" ___domain is copacetic with CELA? (Please see https://microsoft.sharepoint.com/sites/CELAWeb-Copyrights-Trademarks-And-Patents/sitepages/trademarks-fictitious-names.aspx under **Guidance for using fictitious content** > **Email addresses**.)-->
22+
2323
<br/>
2424

2525
> [!VIDEO https://www.youtube.com/embed/oJynCh3rX_Y]
@@ -43,9 +43,10 @@ More information: [Licensing overview for Power Platform](https://docs.microsoft
4343
|Use the mobile app to track and report loss|Staff|[Use the Higher Education Crisis Financial Impact Tracker app](use-mobile-app.md)|
4444
|||
4545

46-
## Report issues
46+
## Issues and feedback
4747

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

5051
### Disclaimer
5152

powerapps-docs/sample-apps/crisis-financial-impact-tracker/use-mobile-app.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ ms.reviewer: nkrb
1212

1313
# Use the Higher Education Crisis Financial Impact Tracker mobile app
1414

15-
With the Higher Education Crisis Financial Impact Tracker app, users can review the sponsored programs they're working on and report loss of effort caused by the pandemic or other crisis.
15+
With the Higher Education Crisis Financial Impact Tracker app, users can review the sponsored programs they're working on and report loss of effort caused by the pandemic or other crisis.
1616

17-
## Prerequisites
17+
## Prerequisites
1818

1919
To get started with the mobile app, you need to download the Power Apps Mobile app on your device using the device's app store.
2020

@@ -172,7 +172,8 @@ You can review frequently asked questions by selecting the information symbol ![
172172
> [!div class="mx-imgBorder"]
173173
> ![Frequently Asked Questions details](./media/frequently-asked-questions-record-with-details.png "Frequently Asked Questions details")
174174
175-
## Report issues
175+
## Issues and feedback
176176

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

powerapps-docs/user/calendar-view.md

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Work with records in the new calendar view in model-driven apps | MicrosoftDocs"
33
description: "Learn how to view, create, and delete activities in the new calendar view."
4-
ms.date: 05/11/2020
4+
ms.date: 06/23/2020
55
ms.service:
66
- "dynamics-365-sales"
77
ms.topic: article
@@ -69,18 +69,28 @@ If you want to set a calendar view as the default view, you do that through pers
6969

7070
You can view a summary of a record by selecting it in the calendar. A pop-up window opens and displays the summary information.
7171

72+
**Record details for an activity**
73+
7274
> [!div class="mx-imgBorder"]
73-
> ![Details of a calendar item](media/details-pop-up.png "Details of a calendar item")
75+
> ![Details of a calendar item for an activity](media/details-pop-up.png "Details of a calendar item for an activity")
76+
77+
**Record details for an opportunity**
78+
79+
> [!div class="mx-imgBorder"]
80+
> ![Details of a calendar item for an opportunity](media/opportunity-details-pop-up.png "Details of a calendar item for an opportunity")
7481
7582
If you want to view complete details about the record, select **More Details** in the pop-up window.
7683

84+
> [!NOTE]
85+
> This view is not customizable. If you would like to customize this view, add your suggestion [here](https://ideas.powerapps.com).
86+
7787
### Create and delete records from the calendar
7888

7989
The new calendar view allows you to create and delete records from the calendar.
8090

8191
**To create a record**
8292

83-
1. In the calendar, select a date tile (in **Month** view) or a time slot (in **Day** or **Week** view) in which you want to create a record.
93+
1. In the calendar, double-click a date tile (in **Month** view) or select a time slot (in **Day** or **Week** view) in which you want to create a record.
8494

8595
> [!div class="mx-imgBorder"]
8696
> ![Select a date tile in Month view](media/date-tile.png "Select a date tile in Month view")
@@ -91,7 +101,7 @@ The new calendar view allows you to create and delete records from the calendar.
91101
Depending on the entity on which the calendar control was added, an appropriate **New** form is opened. For example, if you're viewing leads, a form to create a new lead is opened. If you're viewing opportunities, a form to create a new opportunity is opened.
92102

93103
> [!NOTE]
94-
> - When you add the new calendar control on the Activity entity, an appointment is created when you create a record from the calendar.
104+
> - When you add the new calendar control on the Activity entity, an appointment is created when you create a record from the calendar. The start and end times are filled-in automatically as per the selected date tile or time slots. By default, the duration is set to 30 minutes.
95105
> - When you add the new calendar control on an entity other than Activity, the corresponding entity record is created when you create a record from the calendar.
96106
> - You can also create a new record by selecting and dragging across time slots in **Day** or **Week** view.
97107
Loading

0 commit comments

Comments
 (0)