Please continue yiur series with practical use cases qs well
@indrasengupta7 ай бұрын
what are the key benefits of implementing a cmdb in servicenow 1)Seamless Integration with ServiceNow Modules 2)Advanced Discovery and Dependency Mapping:Service Mapping 3)Data Health Dashboards and Insights:CMDB Health 4)Reconciliation and Duplication Prevention 5)Enhanced Security and Compliance 6)AI and Machine Learning Enhancements:Predictive Intelligence:
@NaveenKumar-h5x1x6 ай бұрын
Please make a video to explain the given scenario usecase Can you write a scheduled job script to check if there are 5 incident created in a day with the 'Hardware' Category, then you need to create a problem ticket and assign it to the manager of the Hardware Group.
@shivalikagupta34333 ай бұрын
var ga = new GlideAggregate('incident'); ga.addAggregate('COUNT'); ga.addQuery('category','hardware'); ga.addQuery('sys_created_on',gs.beginningOfToday()); ga.query(); If(ga.next()) { If(ga.getAggregate('COUNT') == 5) var gr = new GlideRecord('problem'); gr.initialize(); gr.assignment_group = ga.assignment_group; gr.assigned_to = ga.assignment_group.manager; gr.insert(); }
@dev_maanus6 ай бұрын
What do you think about the future of ServiceNow developers