Skip to content

Commit 1550ad4

Browse files
committed
Added FAQ, feedback links, and reversed text for ___location tracking.
1 parent 718e423 commit 1550ad4

File tree

1 file changed

+31
-9
lines changed

1 file changed

+31
-9
lines changed

powerapps-docs/maker/canvas-apps/sample-crisis-communication-app.md

Lines changed: 31 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,12 @@ In this walk through, you'll learn how to:
4848
- You must have a public SharePoint site where you can store the data for the app.
4949
- Download the assets from [aka.ms/CrisisCommunicationSolution](https://aka.ms/CrisisCommunicationSolution).
5050

51+
52+
> [!NOTE]
53+
> If you have feedback or issues about the app, please follow these these links:
54+
- [aka.ms/crisis-communication-feedback](https://aka.ms/crisis-communication-feedback)
55+
- [aka.ms/crisis-communication-issues](https://aka.ms/crisis-communication-issues)
56+
5157
## Create a home for your data
5258

5359
The data for the app will live in SharePoint lists. We'll first need to create new SharePoint site to get started.
@@ -180,8 +186,6 @@ connect it to your new data sources.
180186

181187
1. **Sign in** or create any necessary connections and select **Allow**:
182188

183-
![Allow connections](media/sample-crisis-communication-app/allow-connections.png)
184-
185189
1. Navigate to the data sources in the left pane:
186190

187191
![Data sources](media/sample-crisis-communication-app/data-sources.png)
@@ -211,11 +215,11 @@ connect it to your new data sources.
211215

212216
1. **Save** and **Publish** the app.
213217

214-
#### Disable ___location updates
218+
#### Enable ___location updates
215219

216-
This app records a users ___location and stores it in your SharePoint site whenever a user sets their status. This allows your crisis management team to view this data in a Power BI report.
220+
This app allows you to records users ___location and store it in your SharePoint site whenever a user sets their status. This allows your crisis management team to view this data in a Power BI report.
217221

218-
To disable this functionality, follow these steps:
222+
To enable this functionality, follow these steps:
219223

220224
1. Search for the **btnDateRange** control
221225
1. Open the **OnSelect** property of the **btnDateRante** control in the formula bar.
@@ -243,8 +247,8 @@ ForAll(
243247
PresenceStatus: LookUp(Choices('CI_Employee Status'.PresenceStatus),Value=WorkStatus_1.Selected.Value),
244248
245249
246-
Latitude: Blank(),
247-
Longitude: Blank()
250+
Latitude: Location.Latitude,
251+
Longitude: Location.Longitude
248252
}
249253
)
250254
);
@@ -342,7 +346,7 @@ To manage the app you imported, you'll want to repeat the same steps for the adm
342346
1. Sign in to [Power Apps](https://make.powerapps.com).
343347
1. Select **Apps** from the left navigation.
344348
1. Select **Import** from the command bar.
345-
1. Upload the **CrisisCommunicationAdminApp.zip** file from the GitHub repository:
349+
1. Upload the **CrisisCommunicationAdmin.zip** file from the GitHub repository:
346350

347351
![Import app package](media/sample-crisis-communication-app/import-app.png)
348352

@@ -618,7 +622,8 @@ preference.
618622
## Monitor office absences with Power BI
619623

620624
Once you have the app deployed and people start to notify that they will be out of the office for various reasons (such
621-
as being sick or working from home) you can now use a Power BI report to track how many and where those people are located.
625+
as being sick or working from home) you can now use a Power BI report to track how many and where those people are located. Please
626+
note that you need to [enable ___location tracking](#enable-___location-updates) to make the map control work.
622627

623628
To start, you can use the sample report 'Presence status report.pbix' available from the downloaded [assets package](#prerequisites).
624629
If needed, download [Power BI Desktop](https://powerbi.microsoft.com/downloads). We will also need some information from
@@ -752,6 +757,23 @@ To add the Power BI report:
752757
1. Search for and select your Power BI report.
753758
1. Select **Save**.
754759

760+
## Frequently asked questions
761+
1. **What licence do I need to run this solution?**
762+
The app within his solution only uses connectors that come with Office, so a seeded Power Apps
763+
license from Office is sufficient to run and play the end-user and admin apps. If you want to use the Power BI report that's
764+
packaged as part of this solution, you will need to have a Power BI license.
765+
766+
1. **Where should I go if I have feedback about the solution?**
767+
We'd love to hear about experience deploying and customizing this solution. To share your experience,
768+
please go to [aka.ms/crisis-communication-feedback](https://aka.ms/crisis-communication-feedback).
769+
770+
1. **I appear to have a bug with the app; where should I go?**
771+
Tl file a bug with the solution, please go to [aka.ms/crisis-communication-issues](https://aka.ms/crisis-communication-issues).
772+
773+
1. **What features are currently not supported in GCC?**
774+
The Power Automate bot connector for Teams and the Push Notification connector are currently not available for GCC.
775+
Please use the email option to alert users about internal news updates.
776+
755777
***Disclaimer:*** *This app is a sample and may be used with Microsoft Power Apps and Teams for dissemination of reference information only. This app is not intended or made available for use as a medical device, clinical support, diagnostic tool, or other technology intended to be used in the diagnosis, cure, mitigation, treatment, or prevention of disease or other conditions, and no license or right is granted by Microsoft to use this app for such purposes. This app is not designed or intended to be a substitute for professional medical advice, diagnosis, treatment, or judgement and should not be used as such. Customer bears the sole risk and responsibility for any use of this app. Microsoft does not warrant that the app or any materials provided in connection therewith will be sufficient for any medical purposes or meet the health or medical requirements of any person.*
756778

757779
## Next steps

0 commit comments

Comments
 (0)