Skip to main content

ServiceNow fix script: get CMDB Azure classes details to see when records last updated

 var tables_to_deoperate = generateReport().toString();

gs.print('\n tables_to_deoperate: \n' + tables_to_deoperate);

deoperateRecordsOfTables(tables_to_deoperate);

function generateReport() {
    var tables = new GlideRecord('sys_db_object');
    tables.addQuery('name', 'CONTAINS', 'azure');
    tables.addQuery('name', 'IN', getTableExtensions('cmdb_ci'));
    tables.query();
    // gs.print(tables.getRowCount());

    var encoded_condition = 'sys_updated_on<javascript:gs.beginningOfOneYearAgo()';
    var tables_meeting_condition = [];

    while (tables.next()) {
        var table_name = tables.name.toString();
        var msg = '';
        var azure_table = new GlideRecord(table_name);
        azure_table.addQuery(encoded_condition);
        azure_table.orderByDesc('sys_updated_on');
        azure_table.query();
        var records_count = azure_table.getRowCount();
        msg += 'Table name: ' + table_name + '\n';
        msg += 'Number of records in table \'' + table_name + '\': ' + records_count + '\n';
        msg += 'https://' + gs.getProperty('instance_name') + '.service-now.com/' + table_name + '_list.do' + '\n';
        if (records_count > 0) {
            azure_table.next();
            msg += 'Last updated record date/time: ' + azure_table.sys_updated_on.getDisplayValue() + '\n';
            var current_azure_table = new GlideRecord(table_name);
            current_azure_table.addQuery('operational_status', 1); // Where 'Operational Status' is 'Operational'.
            current_azure_table.query();
            if (current_azure_table.getRowCount() == records_count)
                msg += 'All records have an Operational Status of: ' + azure_table.getDisplayValue('operational_status') + '\n';
            else
                msg += 'Only ' + current_azure_table.getRowCount() + ' records have an Operational Status of: ' + azure_table.getDisplayValue('operational_status') + '\n';
        }
        tables_meeting_condition.push(table_name);
        gs.print(msg);
    }

    // gs.print(tables_meeting_condition);
    // gs.print(tables_meeting_condition.length);
    return tables_meeting_condition;
}

function deoperateRecordsOfTables(tables_to_deoperate) {
    var tables = tables_to_deoperate.split(',');
    for (var i=0; i<tables.length; i++) {
        var azure_table = new GlideRecord(tables[i]);
        azure_table.addQuery(encoded_condition);
        azure_table.addQuery('operational_status', 1); // Where 'Operational Status' is NOT 'Operational'.
        azure_table.query();
gs.print('azure_table.getRowCount(): ' + azure_table.getRowCount());
gs.print('tables[i]: ' + tables[i]);
        while (azure_table.next()) {
            // azure_table.operational_status == '6'; // Set 'Operational Status' to be 'Retired'
            azure_table.autoSysFields(false); // Leave last update intact
            azure_table.setWorkflow(false); // Skip business rules and notifications
            azure_table.setEngines(false); // Skip data policy rules
            // azure_table.update();
        }
    }
}

Comments

Popular posts from this blog

URL link in addInfoMessage

var ga=new GlideAjax('gld_HR_ajax'); ga.addParam('sysparm_name', 'checkEmployeeNumber_hrProfile'); ga.addParam('sysparm_hrprofilenumber', g_form.getValue('number')); ga.addParam('sysparm_employeenumber', newValue); ga.getXMLAnswer(function(answer) { if (answer!='undefined' && answer!=''){ var navURL="<a style='text-decoration:underline;color:blue' href=hr_profile.do?sysparm_query=number=" + answer + ">" + answer + "</a><img width='3' src='images/s.gif'/>"; var sMsg='The employee number entered already exists on another HR Profile ' + navURL; //alert(sMsg); g_form.showErrorBox('employee_number', 'error - please check'); g_form.addInfoMessage(sMsg); } });

GlideRecord setValue

setValue(String name, Object value) Sets the specified field to the specified value. Normally a script would do a direct assignment, for example,  gr.category = value . However, if in a script the element name is a variable, then  gr.setValue(elementName, value)  can be used. When setting a value, ensure the data type of the field matches the data type of the value you enter. This method cannot be used on journal fields. If the value parameter is null, the record is not updated, and an error is not thrown https://developer.servicenow.com/app.do#!/api_doc?v=madrid&id=r_GlideRecord-setValue_String_Object