Workaround for Bulk mark/remove default technician option

Workaround for Bulk mark/remove default technician option

Feature ID: 14285.

This Workaround works only from version 10.5. Also take a backup before implementing the steps.

Bulk mark default technician option:

1-> Go to Admin -> technician list view -> Select All Accounts and All Sites -> Bulk select Technicians which has to be marked as default technician -> Action -> Associate to Site -> A popup to select site will appear.

2-> Open debug tool ->Add following script in console and press ENTER
      jQuery("#Site_Id").append('<option value="null">defaultSite</option>');
      jQuery("#Site_Id").val("null");

3->In the associate site popup defaultSite will be selected -> Click on Associate -> All the selected technician in list view will be marked as default technician.



Bulk remove default technician option:

1-> Go to Admin -> technician list view -> Select All Accounts and All Sites -> Bulk select Technicians which has to be removed as default technician -> Action -> Dissociate from Site -> A popup to select site will appear.

2-> Open debug tool (F12 in chrome or right click-> inspect) ->Add following script in console and press ENTER
      jQuery("#Site_Id").append('<option value="null">defaultSite</option>');
      jQuery("#Site_Id").val("null");

3->In the dissociate site popup defaultSite will be selected -> Click on Dissociate -> All the selected technician in list view will be removed as default technician.

        New to ADManager Plus?

          New to ADSelfService Plus?

            • Related Articles

            • Disable Default Template - Using FAFR

              1. Navigate to Admin>Incident Template>> Edit Default Template  2. Select Field & Form Rules Tab 3. Select On form Load  4. Make sure to select "Applies to Technicians" and set the action as Execute Script and paste the below script  ...
            • Difference between Default Settings, Custom Settings and Copy Default

              In SDP-MSP, the configurations are done based on the site, under Admin >> Sites >> Related Settings, we have 3 different types of settings, Copy Default Settings, Refer Settings and Custom Settings for the features mentioned under How to ...
            • Mark Worklog Billable as NO by default with scripts using Custom Triggers

              There are situations, where you want the Worklog to be marked as NON-BILLABLE by default. This can achieved using our Business Rules, where you can have the Action set as "Mark Request" as Non-Billable. However, this option is applicable provided ...
            • Option to remove headers from all form of exported reports

              We can remove header in reports by execute the below query. This will remove headers in all format of reports like csv , xls ,html and pdf. For PGSQL:  update customreportsettings set removetitle='t'; For MSSQL:  update customreportsettings set ...
            • Route from default request to service catagories

              To route from default request page to service catagories Kindly follow the steps below, Access the Admin Module Select incident template>>Fields and Forms Rules Create a new rule, paste the script and save it I have attached a screenshot for ...