How to open a link using FAFR
Based on the condition, the below script can be used to open a new link
Open the link in the same tab
window.location.href = "link";
Open the link in a new tab
window.open("link here");
New to ADSelfService Plus?
Related Articles
How to add a URL link to a Pop Up/Alert in FAFR ?
Please use the below script as mentioned. Replace the link with the desired link. alert ("please check below link"); window.open("https://www.manageengine.com/products/service-desk-msp/readme.html"); Refer below link for FAFR config if required, ...
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){} ...
Create New request using Python Script
Script to raise a new request using Python Script. Pre-requisite - Python should be installed in the server and configured. You can review the instructions here - Requests module should be installed with the python Steps 1. Download the zip file from ...
Script to Notify Support Reps when a new reply is received for Unassigned Requests
Please do follow the below steps to notify support reps when an unassigned request is updated or when a reply is received. 1. Download the configuration.json file, sendMail.py file, requestobj.json file from the below link: ...
Script to set fields from CSV using FAFR.
Works in 10604 Requirement: Load Data from CSV depending on the value selected in an additional field. Usecase: Assume there are 3 additional fields for a request template, namely, "Reference number", "Payment type and "Vendor". "Reference number" is ...