Skip to main content

Advanced Reporting Techniques

Report referencing a script include to pull back sysids to condition field:


Report:



sys id filter:

javascript:new refqual_functions().report_sysidlist('auth_request');


script include code, note: the client callable box must be ticked (note, the script include contains some bonus code for refreshing group membership of a group to contain open approvals used for chasing up approvals via a scheduled email of the report)


var refqual_functions = Class.create();
refqual_functions.prototype = {
    initialize: function() {
        //gs.log('test initialise--', 'refqual_functions');
       
       
    },
   
    report_sysidlist: function(filterToApply){
        //--build up list of sysids to return to a report condition field filter by sysid
        gs.log('test--', 'refqual_functions');
       
        var ids = [];
        if (filterToApply=='auth_request'){
            //--build up a list of sysids to return to ' Auth Process  Outstanding Approvals' report,
            var grApprovals=new GlideRecord('sysapproval_approver');
            grApprovals.addQuery('state','requested');
            grApprovals.query();
            while(grApprovals.next()){
                var grReqItem=new GlideRecord('sc_req_item');
                grReqItem.addQuery('sys_id', grApprovals.sysapproval);
            grReqItem.addQuery('order_guide','7d292af7371c57008ca1138943990e7d'); //--auth req order guide
                grReqItem.query();
                if (grReqItem.next()){
                    ids.push(grApprovals.sys_id.toString());
                }
            }
        }
        return ids;
    },
   
    refresh_groupMemberShip_authprocess: function(){
        //--called from sch job 'refresh group  Auth Requests Open Approvals'
        //--group membership to refresh a group membership list
        var grGroupMem_old=new GlideRecord('sys_user_grmember');
        grGroupMem_old.addQuery('group', 'e6cda34137cdd7403bef532e53990e91');//--" Auth Requests Open Approvals"
        //grGroupMem_old.query();
        //gs.print(grGroupMem_old.getRowCount());
        grGroupMem_old.deleteMultiple();
       
        var grApprovals=new GlideRecord('sysapproval_approver');
        grApprovals.addQuery('state','requested');
        grApprovals.query();
        while(grApprovals.next()){
            var grReqItem=new GlideRecord('sc_req_item');
            grReqItem.addQuery('sys_id', grApprovals.sysapproval);
        grReqItem.addQuery('order_guide','7d292af7371c57008ca1138943990e7d'); //--auth req order guide
            grReqItem.query();
            if (grReqItem.next()){
                if (this._checkAlreadyGroupMember('e6cda34137cdd7403bef532e53990e91', grApprovals.approver)==0){
                   
                    var grGroupMem=new GlideRecord('sys_user_grmember');
                    grGroupMem.newRecord();
                    grGroupMem.group='e6cda34137cdd7403bef532e53990e91';//--" Auth Requests Open Approvals"
                    grGroupMem.user=grApprovals.approver;
                    grGroupMem.insert();
                }
            }
        }
    },
   
    _checkAlreadyGroupMember: function(groupSYSID, userSYSID){
        var grGroupMem=new GlideRecord('sys_user_grmember');
        grGroupMem.addQuery('group', groupSYSID);
        grGroupMem.addQuery('user', userSYSID);
        grGroupMem.query();
        return (grGroupMem.getRowCount());
        //--returns zero if not a member
    },
   
    type: 'refqual_functions'



};

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 timeout settings for virtual agent chat

  After connecting to live agent User is connected to live agent and not responding to live agent chat or distracted. The below properties controls the timeout settings, the OOB settings for reminder is [180 sec] and for cancelling the chat is [360 sec]. The job is default configured to 2 min so I believe no tweaking is required here.  Property -   com.glide.cs.idle_chat_reminder_timeout                  com.glide.cs.idle_chat_cancel_timeout Scheduled job   - Idle Chat Timer Task   https://community.servicenow.com/community?id=community_article&sys_id=1453b03bdbaad0109e691ea668961929   (ServiceNow ) 

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 )){...