Model category is not updated in asset
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2026 08:20 AM
Hello All,
For some of the assets model category is not updated ,even though model contains the model category and all the classes seems perfect
Does anyone have any idea?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2026 08:56 AM
Hello @Vengadeshgiri
Run below background script on such single asset record or all to find out whether they are actually empty/null or not:
var grAlmAsset = new GlideRecord('alm_asset');
if(grAlmAsset.get('sys_id')){
gs.print('Model Category Sys_Id: ' + grAlmAsset.getValue('model_category') + ' || Model Category Name: ' + grAlmAsset.getDisplayValue('model_category'));
}
I would request you to look at the dictionary entry to understand Model Category field better.
Hope that helps!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2026 11:51 PM
Seems empty .script returns null
This is not for all the records , for some records alone
This was created by SCCM .
Was this discovery sources will also map Model category?