Generate number in range

The Generate number in range masking activity allows you to generate a random number in a specific range.

Table of contents
Usage
Example
Properties

Usage

To use the Generate number in range masking activity, it must be placed inside a table masking activity or a similar activity that iterates over data. Once placed, select the property you want to mask. Generating a number in a specific range requires you to enter the start and end numbers of the range.

Additionally, you can set the EnforceUnique property to make sure every generated number is unique. This option must be used with care so that the number of table records is not greater than the possible numbers in the desired range.

Example

In this example we want to generate CSC (Credit Card Security) number in the CreditCard table. This number has to be three digits long, so the Generate number in range is perfect for this situation. First we place the CreditCard masking activity into opened Package.xaml and put the Generate number in range masking activity within it. Once placed, we select the Csc property that we want to mask with generated numbers. We enter 100 and 999 as the numbers used for range generation so that every generated number is three digits long, and we leave other properties as they are.

Generating numbers in a specific range Figure 1: Generating numbers in a specific range

Properties

Property group Property name Description Example
Input properties DataItemProperty The property to mask. Write x => x.Csc or choose property from the dropdown list
EnforceUnique If true, random selection should select unique values. true or false
Max Maximal number to generate. 1
Min Minimal number to generate. 100
Input: Filter Filter Expression used for filtering records - only filtered items will be masked. x => x.Csc.IsBetween(100, 999)
SkipDefaultValues If true, default values will be omitted in masking (i.e. null values are not masked). true or false
Input: Repeating RepeaterId The ID of the repeater that will be used to detect repeating and save results when masking item key repeats. GenerateNumberInRangeRepeater
RepeatingKey Key to use for repeating detection. Write x => CompositeKey.Create(x.Csc) or choose properties from the pop-up window
Misc DisplayName Display name of the activity in the workflow. Generate number in range
Result Contains the masking definition object. It's a part of the masking infrastructure and should be ignored. -