Generate OIB

The Generate OIB masking activity allows you to generate OIBs.

Table of contents
Usage
Example
Properties

Usage

To use the Generate OIB 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. Additionally, you can set the EnforceUnique property to make sure every generated credit card number is unique.

Example

In this example we want to mask OIBs in the Customer table, so first we place the Account masking activity and put the Generate OIB masking activity within it. Once placed, we select the OIB property and leave other properties as they are.

Generate OIB example Figure 1: Generating OIBs

Properties

Property group Property name Description Example
Input properties DataItemProperty The property to mask. Write x => x.Oib or choose property from the dropdown list
EnforceUnique If true, random selection should select unique values. true or false
Input: Filter Filter Expression used for filtering records - only filtered items will be masked. x => x.Oib.EndsWith("5")
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. OibRepeater
RepeatingKey Key to use for repeating detection. Write x => CompositeKey.Create(x.Oib) or choose properties from the pop-up window
Misc DisplayName Display name of the activity in the workflow. Generate OIB
Result Contains the masking definition object. It's a part of the masking infrastructure and should be ignored. -