Filter Transformation

Overview

Filter transformation in Astera Centerprise is used to filter out records based on some pre-defined rule. The records that match the specified rule are filtered out and can be mapped further in the dataflow whereas the records that do not satisfy the specified condition are omitted. The rule or logic to filter out records from data can either be chosen from an extensive library of built-in functions or you can write one of your own.

Filter transformation is quite similar to Data Quality Rules in its function. However, unlike data quality rules, which return an error or warning when the rule condition fails while still passing the record downstream, the Filter transformation will completely filter out any such records. The filtered records, as well as their status will not be accessible to any downstream object on the dataflow, including any type of log.

Use Case

In this case, we have Customers data for a fictitious organization stored in a Delimited file source. We want to filter out the records in which the customer has:

  • Country = Germany
  • Contact title = Owner

To filter out these records from our source data, we will use Filter transformation and write the relevant expression in the expression builder to achieve our desired output. We will then write our filtered output to a Fixed length destination.

How to Work with Filter transformation

  1. Retrieve your source data by using the relevant source object from the Sources section in the toolbox. In this case, our sample Customers data is stored in a delimited file so we will be using a Delimited file source object to retrieve this data in the dataflow.
  2. Next, drag and drop the Filter transformation object from the Transformations section of the toolbox onto the designer and map fields from the source object to the Filter transformation object.

gif-drag-and-drop

3. Right-click on the Filter transformation object and select Properties.

1

A Layout builder screen will open where you can modify fields and the object layout.

2

4. Click Next. This will take you to the Filter Transformation Properties screen. Here, you can see the following three sections:

3

  • Functions: It is an extensive library of built-in functions organized in various categories. From here, you can select functions according to your requirement.

  • Expressions: Your filter expression will appear in this Expression box. You can either write your own expression or choose from the built-in functions library.

  • Objects: It contains your object layout. You can double click on any element in the layout to write it in your expression builder.

    5. In this example, we want to filter out records of customers with the contact title ‘Owner’ in Germany. For this, we will write the following expression in the Expression box:

    Country = “Germanyand ContactTitle = “Owner

After writing the expression, click on the Compile button to check if the expression is correct. If the compile status is Successful, the expression is correct. If it’s not, then you need to check and rectify your expression before proceeding to the next screen.

4

6. Click Next. This will take you to the Config Parameters screen where you can further configure and define parameters for Filter transformation.

5

7. Click Next to proceed to the General Options screen. This screen shared the options common to most objects in a dataflow, such as:

6

  • Comments:

    The Comments input option allows you to enter comments associated with this object.

  • Clear Incoming Record Messages

When this option is checked, any messages coming in from objects preceding the current object will be cleared. This is useful when you need to capture record messages in the log generated by the current object and filter out any record messages generated earlier in the dataflow.

  • Do Not Process Records with Errors

When this option is checked, records with errors will not be output by the object. When this option is off, records with errors will be output by the object, and a record message will be attached to the record. This record message can then feed into downstream objects on the dataflow, for example a destination file that will capture record messages, or a log that will capture the messages and as well as collect their statistics.

Filter transformation object has been configured, click OK.

8. To preview filtered records, right-click on the Filter transformation object and select Preview Output.

gif-preview-output

The output would look like:

8

9. You can now write your output to a destination or further transform it by applying some transformation.

In this case, we will write our output to a FixedLength file destination.

Rename your destination object by right-clicking on top of it. Here, we will rename it as German_Customers.

7

This concludes using the Filter transformation in Astera Centerprise.