Generate HR BBAN

The Generate HR BBAN masking activity allows you to generate BBAN numbers specific to Croatia.

Table of contents
Usage
Example
Properties

Usage

To use the Generate HR BBAN 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. Next, enter the routing number of the bank you want your generated BBANs to relate to. Note that the routing number has to be entered in string format. Lastly, we need to select the account type. The following account types are available:

  • 11-Company primary account
  • 32-Personal checking account

Example

In this example we want to mask BBANs in the Account table with Croatian BBANs, so first we place the Account masking activity into opened Package.xaml and put the Generate HR BBAN masking activity within it. Once placed, we select the BBAN property, and enter "2485003" as the routing number. Lastly, we select Personal checking account as the account type since our table holds personal accounts.

Generate HR BBAN example Figure 1: Generating Croatian BBANs

Properties

Property group Property name Description Example
Input properties AccountType Account type for Croatian bank account. "32"
BankCode The bank's routing number used to generate values. "2485003"
DataItemProperty The property to mask. Write x => x.BBAN 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.BBAN.EndsWith("000")
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. BBANRepeater
RepeatingKey Key to use for repeating detection. Write x => CompositeKey.Create(x.BBAN) or choose properties from the pop-up window
Misc DisplayName Display name of the activity in the workflow. Generate HR BBAN
Result Contains the masking definition object. It's a part of the masking infrastructure and should be ignored. -