How to resize the fields in a change template
1. Under Admin >> Change Template >> Select Field and Form Rules
2. Create a rule on Form load and use the below script
jQuery('#s2id_Change_REASONFORCHANGEID').attr("style","width:50%!important");
New to ADSelfService Plus?
Related Articles
Script to Populate User Additional Field under Incident Template using FAFR
The script load the Requester Name under Incident Additional field ( As a pick list), by choosing the requester name under additional field the script populates the user additional field value. * Kindly create two additional fields under Admin -> ...
Template configuration
This report will give you the complete list of templates configured in the application. MSSQL SELECT serd.Name AS "Service Category", list.Templatename AS "Template Name", (SELECT STUFF( ( SELECT ',' + tgm.QUEUENAME FROM TemplateToGroupMapping tgm ...
Script to Update Fields in Change Template Based on Category
Requirement : Implementer, UAT Owner, Reviewer, Change Approver, Line Manager, and Change Owner should be updated based on the change category selected. Steps : 1. Stop the product. 2. Take a backup of the application . 3. Navigate to the ...
Change Risk Assessment Questionnaire using Custom module - Implementation steps
We’re excited to share a step-by-step guide( Attached) on implementing a Change Risk Assessment Questionnaire in ServiceDesk Plus using the Custom Module feature. This solution leverages Custom Modules, Change Additional Fields, and Field & Form ...
Change template count
SELECT ct.NAME "Template", Count(chdt.changeid) "count" FROM changedetails chdt LEFT JOIN changetemplate ct ON chdt.templateid=ct.templateid WHERE chdt.createdtime >= <from_lastmonth> ...