Assigned To from Service Graph Connector for SCCM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-03-2020 12:42 PM
Hello Everyone,
I've recently began using the Service Graph Connector for SCCM and it's working wonderfully. But one item that I really wanted to capitalize our SCCM with was the Assigned To for Computers. While running the Robust Transform for that integration I do see I am getting some results back in the loaded data, yet the assigned to is never actually updated. I suspect that is due to logins and usernames not matching user records, but what I was hoping to do was at least load the assigned to data from the loaded data into Short Description. How do I adjust that Robust Transform to add information in a new field?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-03-2020 09:55 PM
I have not used Robust Transform but seems its part of Service Now ETL.
You can use Concatenation function to Add Assigned To into Description Field.
https://docs.servicenow.com/bundle/paris-servicenow-platform/page/product/configuration-management/concept/create-etl-transform-map.html#d1574622e1690
In Plain Transform Map same way it can be used where
In Script it will like
nswer = (function transformEntry(source) {
// Add your code here
var final_desc=Sourc.Description+" "+Source.AssignedTo;
return final_desc; // return the value to be put into the target field
Regards
RP