Troubleshooting error from version 1.4.3 Service Graph Connector for VMware Worksapce ONE UEM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2022 08:29 PM
Anyone know what this error means?
- Labels:
-
Service Graph Connector

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2022 10:47 PM
Did you solve this?
I am having this problem right now and have engaged with SN support.
ServiceNow Nerd
ServiceNow Developer MVP 2020-2022
ServiceNow Community MVP 2019-2022

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-03-2022 06:24 AM
This issue looks to be isolated if your rest calls to Airwatch are routing through a MID Server. This release of Service Graph doesn't work when calls are routed through the MID Server. This is due to ServiceNow transitioning to calling the Flow API in a new way.
As a work around until ServiceNow fixes the root issue. Note I've heard many performance complaints after making this change. The job is taking upwards of 18 hours to run.
The fix is to customize the application. Look to the script include called SG_WS1_UEM_Datasource_Helper line 81 in the invokeAction function. Also update line 289 of the loadRemovedSoftwareData() method. Note this script include is read only so you'll have to either make a copy or extend and override these methods.
//change this:
//var result = sn_fd.FlowAPI.getRunner().action(name).inForeground().withInputs(arg).quick().run();
//to this
var result = sn_fd.FlowAPI.getRunner().action(name).inForeground().withInputs(arg).run();

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-03-2022 06:57 PM
I came to the same conclusions, with the import taking so long I thought that my fix didn't work... Good to know it still "works", just taking a long time.
Will continue to discuss with SN support.
ServiceNow Nerd
ServiceNow Developer MVP 2020-2022
ServiceNow Community MVP 2019-2022

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-08-2022 11:45 PM
There is now a KB for this issue:
Service Graph Connector for VMware Workspace ONE UEM - Import(s) throwing FlowObjectAPIException
ServiceNow Nerd
ServiceNow Developer MVP 2020-2022
ServiceNow Community MVP 2019-2022