- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2022 05:52 AM
Hi
Using IntegrationHub ETL, is it possible to ignore certain rows with specific values?
By ‘ignore’ I mean do not insert the row into the target table.
Thanks
Solved! Go to Solution.
- Labels:
-
Data Foundations

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2022 06:03 AM
Hi Anton,
You can specify a before script on the CMDB Integration Studio Application Data Source record as defined in this doc Add before and after scripts to an integration data source (servicenow.com)
" * 3) The 'status' can be set to 'SKIPPED' in order to skip a payload in this batch from further processing. Setting 'status' to any other value will be ignored by the RTE processo"

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2022 06:03 AM
Hi Anton,
You can specify a before script on the CMDB Integration Studio Application Data Source record as defined in this doc Add before and after scripts to an integration data source (servicenow.com)
" * 3) The 'status' can be set to 'SKIPPED' in order to skip a payload in this batch from further processing. Setting 'status' to any other value will be ignored by the RTE processo"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2022 07:26 AM
Perfect! Thanks Kieran

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2022 08:05 AM
I would look into conditional classes within the ETL mapping.
This will allow you to specify a condition to insert/update a class. You can use the existing fields if it is a simple check (IE: There may already be a field called "ignore" that you will use for the condition). If it isn't a simple field check you can create a script operation to set a value of a new field. You can then use the output field of this script operation in the conditional class.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2022 06:21 AM
Thanks - will look into this.