The CreatorCon Call for Content is officially open! Get started here.

Assigned To from Service Graph Connector for SCCM

jtweito
Kilo Contributor

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?

1 REPLY 1

Rahul Priyadars
Tera Sage

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

find_real_file.png

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