Skip to content

Commit 6ffae38

Browse files
authored
Merge pull request MicrosoftDocs#4709 from MicrosoftDocs/Nava-functions
Resolving GitHub issues
2 parents cfba34c + 07b3807 commit 6ffae38

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

powerapps-docs/developer/data-platform/best-practices/business-logic/develop-iplugin-implementations-stateless.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ services: ''
55
suite: powerapps
66
documentationcenter: na
77
author: jowells
8+
ms.reviewer: phecke
89
manager: austinj
910
editor: ''
1011
tags: ''

powerapps-docs/maker/canvas-apps/functions/function-showerror.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,14 @@ search.app:
1818
Displays a banner message to the user.
1919

2020
## Description
21+
2122
The **Notify** function displays a banner message to the user at the top of the screen, overlaying what is currently displayed. The notification will remain until the user dismisses it, another notification replaces it, or the timeout expires which defaults to 10 seconds.
2223

2324
An appropriate color and icon are used depending on the type of the message. The type is specified by the second argument to the function:
2425

26+
> [!NOTE]
27+
> The character limit for **Notify** function is 500 characters.
28+
2529
| NotificationType Argument | Description |
2630
| --- | --- |
2731
| **NotificationType.Error** | Displays the message as an error. |

powerapps-docs/maker/canvas-apps/functions/function-user.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,24 @@ search.app:
1515
- PowerApps
1616
---
1717
# User function in Power Apps
18+
1819
Returns information about the current user.
1920

2021
## Description
22+
2123
The **User** function returns a [record](../working-with-tables.md#records) of information about the current user:
2224

2325
| Property | Description |
2426
| --- | --- |
25-
| **User().Email** |Email address of the current user. |
27+
| **User().Email** |Email address of the current user. The `User().Email` function returns the user's UPN and not the SMTP email address.|
2628
| **User().FullName** |Full name of the current user, including first and last names. |
2729
| **User().Image** |Image of the current user. This will be an image URL of the form "blob:*identifier*". Set the **[Image](../controls/properties-visual.md)** property of the **[Image](../controls/control-image.md)** control to this value to display the image in the app. |
2830

2931
> [!NOTE]
3032
> The information returned is for the current Power Apps user. It will match the "Account" information that is displayed in the Power Apps players and studio, which can be found outside of any authored apps. This may not match the current user's information in Office 365 or other services.
3133
3234
> [!NOTE]
33-
> If you published your application with a User function prior to March 2020, you may find that it, intermitently, will not retrieve photos. The issues were fixed in the late March 2020 release. To take advantage of the updated implementation, simply re-open your application, save it, and republish it.
35+
> If you published your application with a User function prior to March 2020, you may find that it, intermittently, will not retrieve photos. The issues were fixed in the late March 2020 release. To take advantage of the updated implementation, simply re-open your application, save it, and republish it.
3436
3537
## Syntax
3638
**User**()
@@ -40,14 +42,14 @@ The current Power Apps user has the following information:
4042

4143
* Full Name: **"John Doe"**
4244
* Email address: **"[email protected]"**
43-
* Image: ![](media/function-user/john-doe-picture.png)
45+
* Image: ![Image icon](media/function-user/john-doe-picture.png "Image icon")
4446

4547
| Formula | Description | Result |
4648
|---------------------|---------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------|
4749
| **User()** | Record of all information for the current Power Apps user. | { FullName: "John Doe", Email: "[email protected]", Image: "blob:1234...5678" } |
4850
| **User().Email** | The email address of the current Power Apps user. | "[email protected]" |
4951
| **User().FullName** | The full name of the current Power Apps user. | "John Doe" |
50-
| **User().Image** | The image URL for the current Power Apps user. Set the **Image** property of the **Image** control to this value to display the image in the app. | "blob:1234...5678"<br><br>With **ImageControl.Image**:<br>![](media/function-user/john-doe-picture.png) |
52+
| **User().Image** | The image URL for the current Power Apps user. Set the **Image** property of the **Image** control to this value to display the image in the app. | "blob:1234...5678"<br><br>With **ImageControl.Image**:<br>![Image icon 1](media/function-user/john-doe-picture.png "Image icon 1") |
5153

5254

5355

powerapps-docs/maker/canvas-apps/functions/object-app.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,10 @@ Use **ConfirmExitMessage** to provide a custom message in the confirmation dialo
9090

9191
In a browser, the confirmation dialog box might appear with a generic message from the browser.
9292

93+
94+
> [!NOTE]
95+
> App object has two more additional properties `OnMessage` and `BackEnabled` which are experimental properties and will go away from the app object in future. We recommend not to use these properties in your production environment.
96+
9397
### Example
9498

9599
1. Create an app that contains two form controls, **AccountForm** and **ContactForm**.

0 commit comments

Comments
 (0)