Skip to content

Commit 0b0c1e7

Browse files
committed
sharepoint-general-updates
1 parent abaf730 commit 0b0c1e7

16 files changed

+85
-18
lines changed

powerapps-docs/maker/canvas-apps/app-from-sharepoint.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: powerapps
77
ms.topic: conceptual
88
ms.custom: canvas
99
ms.reviewer:
10-
ms.date: 12/05/2019
10+
ms.date: 06/18/2020
1111
ms.author: tapanm
1212
search.audienceType:
1313
- maker
@@ -97,3 +97,7 @@ In this topic, you created an app to manage data in a SharePoint list. As a next
9797

9898
> [!div class="nextstepaction"]
9999
> [Customize a default browse screen](customize-layout-sharepoint.md)
100+
101+
### See also
102+
103+
- [SharePoint integration scenarios](sharepoint/scenarios-intro.md)

powerapps-docs/maker/canvas-apps/connections/connection-sharepoint-online.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: powerapps
77
ms.topic: reference
88
ms.custom: canvas
99
ms.reviewer: tapanm
10-
ms.date: 04/03/2019
10+
ms.date: 06/18/2020
1111
ms.author: niwaggon
1212
search.audienceType:
1313
- maker
@@ -210,3 +210,7 @@ Not all types of columns are supported, and not all types of columns support all
210210
- Learn how to [show data from a data source](../add-gallery.md).
211211
- Learn how to [view details and create or update records](../add-form.md).
212212
- See other types of [data sources](../connections-list.md) to which you can connect.
213+
214+
### See also
215+
216+
- [SharePoint integration scenarios](../sharepoint/scenarios-intro.md)

powerapps-docs/maker/canvas-apps/customize-forms-sharepoint.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: powerapps
77
ms.topic: conceptual
88
ms.custom: canvas
99
ms.reviewer:
10-
ms.date: 03/17/2018
10+
ms.date: 06/18/2020
1111
ms.author: tapanm
1212
search.audienceType:
1313
- maker
@@ -118,4 +118,8 @@ If you're unfamiliar with canvas-pps, see [What are canvas apps?](getting-starte
118118
## Next steps
119119

120120
- [Save and publish](save-publish-app.md) your app.
121-
- [Customize a card](customize-card.md) in your app.
121+
- [Customize a card](customize-card.md) in your app.
122+
123+
### See also
124+
125+
- [SharePoint integration scenarios](sharepoint/scenarios-intro.md)

powerapps-docs/maker/canvas-apps/customize-layout-sharepoint.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: powerapps
77
ms.topic: tutorial
88
ms.custom: canvas
99
ms.reviewer:
10-
ms.date: 05/06/2018
10+
ms.date: 06/18/2020
1111
ms.author: tapanm
1212
search.audienceType:
1313
- maker
@@ -144,3 +144,7 @@ In this tutorial, you've customized the gallery and made other changes to the de
144144

145145
> [!div class="nextstepaction"]
146146
> [Customize forms](customize-forms-sharepoint.md)
147+
148+
### See also
149+
150+
- [SharePoint integration scenarios](sharepoint/scenarios-intro.md)

powerapps-docs/maker/canvas-apps/sharepoint-form-integration.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: powerapps
77
ms.topic: conceptual
88
ms.custom: canvas
99
ms.reviewer: tapanm
10-
ms.date: 11/11/2017
10+
ms.date: 06/18/2020
1111
ms.author: niwaggon
1212
search.audienceType:
1313
- maker
@@ -106,3 +106,9 @@ Now that you have a better understanding of the default generated form and the *
106106
* You can't control the hiding of a form when a user clicks or taps **Cancel** in SharePoint, so make sure you reset your forms in the **OnCancel** formula of the **SharePointIntegration** control.
107107

108108
* The properties for the **SharePointIntegration** control may not be available in **OnStart** or **OnVisible**, and those events execute only once while the list is loaded. You can use **OnNew**, **OnView**, or **OnEdit** formulas to run logic before the form is shown to the user every time.
109+
110+
### See also
111+
112+
- EditForm, NewForm, SubmitForm, ResetForm, and ViewForm functions - [form functions in Power Apps](functions/function-form.md)
113+
- [RequestHide function](functions/function-requesthide.md)
114+
- [SharePoint integration scenarios](sharepoint/scenarios-intro.md)

powerapps-docs/maker/canvas-apps/sharepoint-lookup-fields.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: powerapps
77
ms.topic: conceptual
88
ms.custom: canvas
99
ms.reviewer:
10-
ms.date: 01/20/2017
10+
ms.date: 06/18/2020
1111
ms.author: emcoope
1212
search.audienceType:
1313
- maker
@@ -34,14 +34,20 @@ Data in an enterprise is large and complex. Data in one SharePoint list often re
3434
For example, you might have an **Orders** list which has a lookup field that links to a **Customers** list, to show which customer placed the order. The lookup field in the **Orders** list lets you get other data from the **Customers** list as well. You might also use a lookup field to connect the **Orders** list to a **Product** list, and bring in information you need about the product ordered, such as product pictures, specifications, manufacturer details, etc.
3535

3636
### What are Choice fields used for?
37+
3738
**Choice** fields are used for very short lists, but instead of actually creating a separate list, you include the list values in a small menu, which appears when you click or tap on the **Choice** field, and you select one of the values.
3839

3940
Examples include data like Customer Status Code, Product Availability, State Codes; basically any fixed list that is relatively short. This data could in fact be implemented as separate lists, and then you would use a **Lookup** field to link to them, but it is usually easier and quicker to implement them as **Choice** fields.
4041

42+
>[!TIP]
43+
> For more SharePoint and Power Apps integration tutorials, go to [SharePoint integration scenarios](sharepoint/scenarios-intro.md).
44+
4145
## Create the lists in SharePoint
46+
4247
In this tutorial, you link two SharePoint custom lists together, **Assets** and **RepairShop**. The **Assets** list is used to track hardware equipment in a team. Since hardware gets broken from time to time, we use the **RepairShop** list to track the local shops which can fix it.
4348

4449
### The lookup fields used in this example
50+
4551
The **RepairShop** list uses the *ContactEmail* field to identify the shop. This list is defined first so that each row in the **Assets** list has something to point to.
4652

4753
The **Assets** list has two lookup fields:
@@ -52,6 +58,7 @@ The **Assets** list has two lookup fields:
5258
You most likely would define additional fields, depending on the information you need to track.
5359

5460
### Define the RepairShop list and add data
61+
5562
You do this first, so that when you add data to the **Assets** list, **RepairShop** entries are available for you to choose from the *Assets.RepairShop* lookup field.
5663

5764
1. On your SharePoint site, create a new **RepairShop** list.
@@ -69,6 +76,7 @@ You do this first, so that when you add data to the **Assets** list, **RepairSho
6976
![](./media/sharepoint-lookup-fields/add-repair-shops.png)
7077

7178
### Define the Assets list
79+
7280
1. On your SharePoint site, create a new **Assets** list.
7381

7482
2. Click or tap the plus sign and choose **More**.
@@ -88,6 +96,7 @@ You do this first, so that when you add data to the **Assets** list, **RepairSho
8896
6. Add any additional fields you want.
8997

9098
## Create an app from the Assets list
99+
91100
You use this app to add data to the **Assets** list.
92101

93102
1. [Sign in to Power Apps Studio](https://make.powerapps.com?utm_source=padocs&utm_medium=linkinadoc&utm_campaign=referralsfromdoc). If you are new to Power Apps, [sign up for free](https://powerapps.microsoft.com) using your organizational email address.
@@ -106,6 +115,7 @@ You use this app to add data to the **Assets** list.
106115

107116

108117
## Add data to the Assets list
118+
109119
Now you can run the app and see how the view details screen looks for the lookup fields.
110120

111121
1. Press F5 or select Preview ( ![](./media/sharepoint-lookup-fields/preview.png) ).
@@ -128,8 +138,13 @@ Now you can run the app and see how the view details screen looks for the lookup
128138

129139
8. Press Esc to return to the default workspace.
130140

131-
## For more information
141+
## Next steps
142+
132143
* [Introducing support for lookups and a new sample app](https://powerapps.microsoft.com/blog/support-for-lookups/)
133144
* [Performance, Refresh button, ForAll, and multiple field lookups](https://powerapps.microsoft.com/blog/performance-refresh-forall-multiple-field-lookups-531/)
134145
* [Generate an app by using a Common Data Service database](data-platform-create-app.md)
135146
* [Create an app from scratch using a Common Data Service database](data-platform-create-app-scratch.md)
147+
148+
### See also
149+
150+
- [SharePoint integration scenarios](sharepoint/scenarios-intro.md)

powerapps-docs/maker/canvas-apps/sharepoint-scenario-alerts-flow.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: powerapps
77
ms.topic: conceptual
88
ms.custom: canvas
99
ms.reviewer:
10-
ms.date: 06/12/2017
10+
ms.date: 06/18/2020
1111
ms.author: niwaggon
1212
search.audienceType:
1313
- maker
@@ -68,3 +68,6 @@ We will see this flow run when we [run through the scenario end-to-end](sharepoi
6868
## Next steps
6969
The next step in this tutorial series is to [embed the Power BI project report in SharePoint Online](sharepoint-scenario-embed-report.md).
7070

71+
### See also
72+
73+
- [SharePoint integration scenarios](sharepoint/scenarios-intro.md)

powerapps-docs/maker/canvas-apps/sharepoint-scenario-approval-flow.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: powerapps
77
ms.topic: conceptual
88
ms.custom: canvas
99
ms.reviewer:
10-
ms.date: 01/09/2018
10+
ms.date: 06/18/2020
1111
ms.author: stepsic
1212
search.audienceType:
1313
- maker
@@ -161,3 +161,6 @@ By default, this branch sends a rejection email to the requestor. We'll also upd
161161
## Next steps
162162
The next step in this tutorial series is to [create an app to manage projects](sharepoint-scenario-build-app.md).
163163

164+
### See also
165+
166+
- [SharePoint integration scenarios](sharepoint/scenarios-intro.md)

powerapps-docs/maker/canvas-apps/sharepoint-scenario-build-app.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: powerapps
77
ms.topic: conceptual
88
ms.custom: canvas
99
ms.reviewer:
10-
ms.date: 04/30/2020
10+
ms.date: 06/18/2020
1111
ms.author: emcoope
1212
search.audienceType:
1313
- maker
@@ -509,3 +509,6 @@ When you put the functions together in the formula, here's what happens:
509509
## Next steps
510510
The next step in this tutorial series is to [create a Power BI report to analyze projects](sharepoint-scenario-build-report.md).
511511

512+
### See also
513+
514+
- [SharePoint integration scenarios](sharepoint/scenarios-intro.md)

powerapps-docs/maker/canvas-apps/sharepoint-scenario-build-report.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: powerapps
77
ms.topic: conceptual
88
ms.custom: canvas
99
ms.reviewer:
10-
ms.date: 01/10/2018
10+
ms.date: 06/18/2020
1111
ms.author: fikaradz
1212
search.audienceType:
1313
- maker
@@ -381,3 +381,6 @@ That brings us to the end of the report section, and you should now have a compl
381381
## Next steps
382382
The next step in this tutorial series is to [publish the Power BI project report and create a dashboard](sharepoint-scenario-publish-report.md).
383383
384+
### See also
385+
386+
- [SharePoint integration scenarios](sharepoint/scenarios-intro.md)

0 commit comments

Comments
 (0)