install_status in cmdb_ci table picks default status "installed"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2020 03:12 AM
Hi All,
I am getting the cmdb CI records from an external source to cmdb_ci_appl table through a staging table. I am getting correct values for install_status in staging table in a string field. When I transform it to cmdb_ci_appl from staging , by default all the install_status are updated as "installed". Can someone advise me on how to get the correct install status to cmdb_ci_appl table ?
Thanks & Regards,
Chinmayee Mishra
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2020 08:34 AM
Hi,
so this is the field map for that drop down
try with using toString() before returning
answer = (function transformEntry(source) {
var result;
gs.log("install status received :"+source.u_appl_install_status);
if(source.u_appl_install_status == "Installed"){result=1;}
else if(source.u_appl_install_status == "Retired"){result=7;}
gs.log("result Status :"+result);
return result.toString();
})(source);
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2020 08:54 AM
Tried this. No Luck.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2020 08:59 AM
The default value is 1.
The code has only if- else if
there is no default handler
What happens when you get something other than "Installed" or "Retired"?
Vinod Kumar Kachineni
Community Rising Star 2022
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2020 09:16 AM
I added the else statement at the end but still the same.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2020 09:25 AM
Can you post the field map screenshot
Vinod Kumar Kachineni
Community Rising Star 2022