SCCM Reclamation rule issue
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-09-2023 03:20 PM
Hi all,
I am new to SAM so trying to get my head around with it. I have created a reclamation rule for "wireshark" and can see the import data from SCCM for last used but I dont see them under software usage table for wireshark. We migrated to Service graph connector and since then any reclamation rule we have created doesnt seem to be working at all.
How do I go about troubleshooting this issue?
any help is appreciated.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-12-2023 03:40 PM
Hi, In a non-prod environment check the existing demo data part of OOB. Just remove the configuration or modify the data and see the result. The same you can try for your scenario.
Suresh.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-13-2023 03:55 PM
Hi @ersureshbe ,
I have already tried it and the configuration is based of the OOTB record. Still not sure why it is not working.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-17-2023 11:08 AM
We had a similar issue when we moved to SG-SCCM and HI support traced it back to a bug in an OOTB script include, "SCCMMultiDataSourceUtil".
Refer to line number 76 which calls a function in the script include SAMPLastUsed2019Util. There is a syntax error in this function call. the NEW keyword is missing.
The function call should change as below
From
sqlStatement =
sn_sccm_integrate.SAMPLastUsed2019Util().getSQLStatement(connectionAliasSysId);
TO
sqlStatement = new
sn_sccm_integrate.SAMPLastUsed2019Util().getSQLStatement(connectionAliasSysId);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-04-2023 06:30 PM