Route from default request to service catagories

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 reference.

Script:

try{
      $req.form.destroyForm(undefined, false);
}catch(err){}
jQuery(document).ready(function(){
          window.location.href="/Templates.do?module=mergedRequest";
}); 

I have attached a screenshot for reference.



Below is for users who are in 10600 and above :

The above steps will route the page from default request page in request module to service categories page, for addition measure you can also follow the steps given below, 
  • Access the admin Module
  • Select page script module then add the below script 
  • Then disable if you have any script in the incident template in FAFR section.

Script:

jQuery("a[href='/WorkOrder.do?woMode=newWO']").attr('href', 
'/Templates.do?module=mergedRequest'); 
jQuery("a[id='new-request-hi']").attr('href', 
'/Templates.do?module=mergedRequest').prop('onclick', null);



                  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  ...
                      • Hide Asset

                        Use case If Technicians want to hide Asset field during template loading, then the same can be achieved using Execute Script option in Field and Form Rules. Solution Edit the incident/service template from which the asset needs to be hidden, choose ...
                      • Set SLA automatically for a service request using FAFR

                        Note: The below FAFR script will work only on 10600 MSP and above Requirement: Set SLA automatically for a service request depending on the Priority. Usecase: Let us consider a scenario where SLA has to be set depending on the requester's associated ...
                      • Convert Incident to Service Request

                        For builds before 10536 The option will be available at: open the respective request > Actions > Convert incident to service request For builds after 10600. Edit the respective request > click on the Template dropdown [top-right corner] > Choose the ...
                      • Account specific request template: Redirection to requester's account based template from default template using FAFR

                        Tested in builds 14000, 14200 and 14201 (Global FAFR): Step 1: In Global FAFR, on form load, configure an FAFR and execute the below script under Action as shown below, try{ $req.form.destroyForm(undefined, false); }catch(err){} ...