Skip to content

Commit d076d63

Browse files
authored
Merge pull request #195059 from ArvindHarinder1/patch-247
Update functions-for-customizing-application-data.md
2 parents a6d0cd8 + dd10f4c commit d076d63

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

articles/active-directory/app-provisioning/functions-for-customizing-application-data.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: active-directory
77
ms.subservice: app-provisioning
88
ms.workload: identity
99
ms.topic: reference
10-
ms.date: 02/16/2022
10+
ms.date: 04/13/2022
1111
ms.author: kenwith
1212
ms.reviewer: arvinh
1313
---
@@ -1237,6 +1237,18 @@ Generate a user alias by taking first three letters of user's first name and fir
12371237
* **INPUT** (surname): "Doe"
12381238
* **OUTPUT**: "JohDoe"
12391239

1240+
### Add a comma between last name and first name.
1241+
Add a comma between last name and first name.
1242+
1243+
**Expression:**
1244+
`Join(", ", "", [surname], [givenName])`
1245+
1246+
**Sample input/output:**
1247+
1248+
* **INPUT** (givenName): "John"
1249+
* **INPUT** (surname): "Doe"
1250+
* **OUTPUT**: "Doe, John"
1251+
12401252

12411253
## Related Articles
12421254
* [Automate User Provisioning/Deprovisioning to SaaS Apps](../app-provisioning/user-provisioning.md)

0 commit comments

Comments
 (0)