Skip to content

Commit 5a28fbc

Browse files
Update functions-for-customizing-application-data.md
1 parent e535593 commit 5a28fbc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.service: active-directory
88
ms.subservice: app-provisioning
99
ms.workload: identity
1010
ms.topic: reference
11-
ms.date: 10/06/2021
11+
ms.date: 10/29/2021
1212
ms.author: kenwith
1313
ms.reviewer: arvinh
1414
---
@@ -786,7 +786,7 @@ Let's say you are sourcing the attributes *firstName* and *lastName* from SAP Su
786786

787787
### RandomString
788788
**Function:**
789-
RandomString(Length, MinimumNumbers, MinimumSpecialCharacters , MinimumCapital, CharactersToAvoid)
789+
RandomString(Length, MinimumNumbers, MinimumSpecialCharacters , MinimumCapital, MinimumLowerCase, CharactersToAvoid)
790790

791791
**Description:**
792792
The RandomString function generates a random string based on the conditions specified. Characters allowed can be identified [here](https://docs.microsoft.com/windows/security/threat-protection/security-policy-settings/password-must-meet-complexity-requirements#reference).
@@ -805,11 +805,11 @@ The RandomString function generates a random string based on the conditions spec
805805

806806
**Example 1:** - Generate a random string without special character restrictions:
807807
`RandomString(6,3,0,0,3)`
808-
Generates a random string with 10 characters (3 numbers and 3 lower case characters).
808+
Generates a random string with 6 characters. The string contains 3 numbers and 3 lower case characters (1a73qt).
809809

810810
**Example 2:** - Generate a random string with special character restrictions:
811811
`RandomString(10,2,2,2,1,"?,")`
812-
Generates a random string with 10 characters (2 numbers, 2 special characters, 2 capital letters, 1 lower case letter). Excludes "?" and "," from the random string generated.
812+
Generates a random string with 10 characters. The string contains at least 2 numbers, 2 special characters, 2 capital letters, 1 lower case letter and excludes the characters "?" and "," (1@!2BaRg53).
813813

814814
---
815815

0 commit comments

Comments
 (0)