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: articles/active-directory/app-provisioning/functions-for-customizing-application-data.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -289,22 +289,22 @@ The **interval** string must have one of the following values:
289
289
***INPUT** (StatusHireDate): 2012-03-16-07:00
290
290
***OUTPUT**: 3/23/2012 7:00:00 AM
291
291
292
-
**Example 2: Get a date 10 days prior to hire date**
292
+
**Example 2: Get a date ten days prior to hire date**
293
293
`DateAdd("d", -10, CDate([StatusHireDate]))`
294
294
***INPUT** (StatusHireDate): 2012-03-16-07:00
295
295
***OUTPUT**: 3/6/2012 7:00:00 AM
296
296
297
-
**Example 3: Add 2 weeks to hire date**
297
+
**Example 3: Add two weeks to hire date**
298
298
`DateAdd("ww", 2, CDate([StatusHireDate]))`
299
299
***INPUT** (StatusHireDate): 2012-03-16-07:00
300
300
***OUTPUT**: 3/30/2012 7:00:00 AM
301
301
302
-
**Example 4: Add 10 months to hire date**
302
+
**Example 4: Add ten months to hire date**
303
303
`DateAdd("m", 10, CDate([StatusHireDate]))`
304
304
***INPUT** (StatusHireDate): 2012-03-16-07:00
305
305
***OUTPUT**: 1/16/2013 7:00:00 AM
306
306
307
-
**Example 5: Add 2 years to hire date**
307
+
**Example 5: Add two years to hire date**
308
308
`DateAdd("yyyy", 2, CDate([StatusHireDate]))`
309
309
***INPUT** (StatusHireDate): 2012-03-16-07:00
310
310
***OUTPUT**: 3/16/2014 7:00:00 AM
@@ -602,7 +602,7 @@ If one of the source values is a multi-value attribute, then every value in that
602
602
---
603
603
### Left
604
604
**Function:**
605
-
Left(String,NumChars)
605
+
Left(String,NumChars)
606
606
607
607
**Description:**
608
608
The Left function returns a specified number of characters from the left of a string.
@@ -636,8 +636,8 @@ Returns a substring of the source value. A substring is a string that contains o
636
636
| Name | Required/ Repeating | Type | Notes |
637
637
| --- | --- | --- | --- |
638
638
|**source**|Required |String |Usually name of the attribute. |
639
-
|**start**|Required |integer|Index in the **source** string where substring should start. First character in the string will have index of 1, second character will have index 2, and so on. |
640
-
|**length**|Required |integer|Length of the substring. If length ends outside the **source** string, function will return substring from **start** index untill end of **source** string. |
639
+
|**start**|Required |Integer|Index in the **source** string where substring should start. First character in the string will have index of 1, second character will have index 2, and so on. |
640
+
|**length**|Required |Integer|Length of the substring. If length ends outside the **source** string, function will return substring from **start** index untill end of **source** string. |
0 commit comments