Skip to main content

ServiceNow Dynatrace Maintenance Window integration: ensuring the start/end times are clock change resistant

 script include code:


startS = grcOutage.begin; startS = this.utcUpdateTime(startS); endS = grcOutage.end; endS = this.utcUpdateTime(endS); utcUpdateTime: function(dTime) { this._dLog(" utcUpdateTime is Called"); var dateTime = dTime; //check if dateTime is diff from Approval Date Time dateTime = this.checkApprovDateTime(dTime); this._dLog(" utcUpdateTime dTime =" + dTime + " ---- dateTime = " + dateTime); var newdateTime = new GlideDateTime(dateTime); var yourDST = this._utcTimeZone(); if (yourDST == 'UTC+00:00') { //No Change to reported value } else { gs.log(yourDST+'dynatraceDST'); newdateTime.addSeconds(3600); } newdateTime = newdateTime.toString(); newdateTime = newdateTime.replace(' ', 'T'); this._dLog(" utcUpdateTime dateTime =" + dateTime + " newdateTime =" + newdateTime); return newdateTime.toString(); }, checkApprovDateTime: function(dateTime) { this._dLog(" checkApprovDateTime is Called"); var resultDate = dateTime; var aEnc = "sysapproval=" + current.sys_id + "^approver.active=true^stateINapproved,not_required"; var grcApp = new GlideRecord('sysapproval_approver'); grcApp.addEncodedQuery(aEnc); grcApp.orderBy('sys_updated_on'); grcApp.query(); if (grcApp.next()) { this._dLog(" checkApprovDateTime dateTime =" + grcApp.sys_updated_on); if (grcApp.sys_updated_on > dateTime) { this._dLog(" checkApprovDateTime Approval Did Not happend in Time"); resultDate = grcApp.sys_updated_on; } else { this._dLog(" checkApprovDateTime Approval happend in Time"); } } this._dLog(" checkApprovDateTime resultDate =" + resultDate); return resultDate; }, _utcTimeZone: function() { this._dLog(" _utcTimeZone is Called"); var zoneId = ''; var testTZ = new GlideDateTime(); var yourDST = testTZ.getDSTOffset(); if (yourDST == 0) { zoneId = 'UTC+00:00'; } else { zoneId = 'UTC+01:00'; } this._dLog(" yourDST =" + yourDST + " zoneId =" + zoneId); return zoneId; },

Comments

Popular posts from this blog

Get URL Parameter - server side script (portal or classic UI)

Classic UI : var sURL_editparam = gs . action . getGlideURI (). getMap (). get ( ' sysparm_aparameter ' ); if ( sURL_editparam == 'true' ) { gs . addInfoMessage ( 'parameter passed ); } Portal : var sURL_editparam = $sp . getParameter ( " sysparm_aparameter " ); if ( sURL_editparam == 'true' ) { gs . addInfoMessage ( 'parameter passed ); }

ServiceNow check for null or nil or empty (or not)

Haven't tested these all recently within global/local scopes, so feel free to have a play! option 1 use an encoded query embedded in the GlideRecord , e.g.  var grProf = new GlideRecord ( 'x_cls_clear_skye_i_profile' ); grProf . addQuery ( 'status=1^ owner=NULL ' ); grProf . query (); even better use the glideRecord  addNotNullQuery or addNullQuery option 2 JSUtil.nil / notNil (this might be the most powerful. See this link ) example: if ( current . operation () == 'insert' && JSUtil . notNil ( current . parent ) && ! current . work_effort . nil ())  option 3 there might be times when you need to get inside the GlideRecord and perform the check there, for example if the code goes down 2 optional routes depending on null / not null can use gs.nil : var grAppr = new GlideRecord ( 'sysapproval_approver' ); var grUser = new GlideRecord ( 'sys_user' ); if ( grUser . get ( 'sys_id' , current . approver )){