You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: powerapps-docs/developer/data-platform/best-practices/business-logic/develop-iplugin-implementations-stateless.md
Copy file name to clipboardExpand all lines: powerapps-docs/maker/canvas-apps/functions/function-showerror.md
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -18,10 +18,14 @@ search.app:
18
18
Displays a banner message to the user.
19
19
20
20
## Description
21
+
21
22
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.
22
23
23
24
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:
24
25
26
+
> [!NOTE]
27
+
> The character limit for **Notify** function is 500 characters.
28
+
25
29
| NotificationType Argument | Description |
26
30
| --- | --- |
27
31
|**NotificationType.Error**| Displays the message as an error. |
Copy file name to clipboardExpand all lines: powerapps-docs/maker/canvas-apps/functions/function-user.md
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -15,22 +15,24 @@ search.app:
15
15
- PowerApps
16
16
---
17
17
# User function in Power Apps
18
+
18
19
Returns information about the current user.
19
20
20
21
## Description
22
+
21
23
The **User** function returns a [record](../working-with-tables.md#records) of information about the current user:
22
24
23
25
| Property | Description |
24
26
| --- | --- |
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.|
26
28
|**User().FullName**|Full name of the current user, including first and last names. |
27
29
|**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. |
28
30
29
31
> [!NOTE]
30
32
> 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.
31
33
32
34
> [!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.
34
36
35
37
## Syntax
36
38
**User**()
@@ -40,14 +42,14 @@ The current Power Apps user has the following information:
|**User()**| Record of all information for the current Power Apps user. | { FullName: "John Doe", Email: "[email protected]", Image: "blob:1234...5678" } |
48
50
|**User().Email**| The email address of the current Power Apps user. | "[email protected]" |
49
51
|**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>|
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>|
Copy file name to clipboardExpand all lines: powerapps-docs/maker/canvas-apps/functions/object-app.md
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -90,6 +90,10 @@ Use **ConfirmExitMessage** to provide a custom message in the confirmation dialo
90
90
91
91
In a browser, the confirmation dialog box might appear with a generic message from the browser.
92
92
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
+
93
97
### Example
94
98
95
99
1. Create an app that contains two form controls, **AccountForm** and **ContactForm**.
0 commit comments