- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2025 03:10 PM
Is it possible to only update a CMDB CI via the the Integration Hub ETL (Extract Transform Load) module?
I have a requirement where we want a data source to update configuration items, but we don't want it creating net new CIs. Doing this outside of the ETL module seems possible using the IRE API and some scripting, but I am trying to stay in the Integration Hub ETL module if possible.
Thanks.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2025 04:59 PM
Hello @Constantine Kr1
Check this threads
If my response has helped you hit helpful button and if your concern is solved do mark my response as correct.
Thanks & Regards
Viraj Hudlikar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2025 04:59 PM
Hello @Constantine Kr1
Check this threads
If my response has helped you hit helpful button and if your concern is solved do mark my response as correct.
Thanks & Regards
Viraj Hudlikar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2025 09:47 AM
Thanks for the response. We took the suggestion of preventing the record from updating in ETL, and did the following in regards to IRE:
- Created a new ETL Script transform that took the most pertinent fields for the identification of the CI
- Used these fields to create an IRE JSON payload from scratch. Please see Identification Engine - Scoped
- Execute the IRE using the identifyCI(String jsonString) to simulate an IRE import.
- Reviewed the result/output JSON object from identifyCI to determine if the operation was a create or update
- Final output of the ETL Script / transform was whether the IRE was a flag with the values of Insert or Change
- Used the flag to filter out all "Insert" values in the ETL mapping option.