Very easy! Create the required TimeStamps custom fields to fill with a Listener or a PostFunction with Groovy Scriptrunner with a CODE like this Then create a Groovy Scripted Field in JIRA to calculate the SLA (ANS in spanish). You can follow this instructions to create the HTML field Put a code like THIS: That’s…
Read MoreHow to set format to the value of a Custom Field calculated in JIRA with JIRA MISC addon
Very easy, first see this instructions to create the Custom Field To remove the decimal part of the resulting number from a division of two custom fields for example, and for adding the final character “%”, you can try to set in the “description” of the custom field (of type “Calculated Number”… for example) a…
Read MoreHow to create a Custom URL field with title in JIRA
Very easy with Adaptavist Scriptrunner / Groovy Scriptrunner Create a new field of type “Script Field Scriptrunner” Then go to “cog icon” –> Add-ons –> SCRIPTRUNNER –> Script Fields Select “Template” HTML Then in the script line add a code like this: NOTE: You can avoid a lot of lines of my code, it’s only…
Read MoreHow to restrict resolution options in JIRA
Very easy! Edit the Workflow transition to “CLOSED“ Click on “Properties“ Add this pair “key – value” jira.field.resolution.include = id_resolution_1, id_resolution_1023, .. That’s all!
Read MoreHow to create a new JIRA Scripted Custom Field obtaining LDAP attributes
Very simple! Download the plugin Kepler Custom Fields Create a SIL Script Custom Field In the custom field configuration set a new script like this: return ldapUserRecord(“attribute”, “”, “”, “”, “user@example.com”, “user”); Remember to configure the LDAP connection Go to “Cog icon” –> Addons –> KEPLER –> LDAP Configuration URL = ldap://localhost:389 BIND USER =…
Read More
New release of my plugins
Today is a goooood DAY! New release of “Kanban Combined WIP extension” and “JiraSupport Admin tools” plugins for JIRA, mow more COOLs & AMAZINGs! DOWNLOAD FROM ATLASSIAN MARKETPLACE
Read MoreNew JIRA Listener example: Copy ticket & link

My new addon for JIRA: JiraSupport Admin Tools
If your JIRA is a large instance, you probably use & abuse of the Web browser functionality : “search”… for customfields, workflows, workflow schemes, permissions schemes, views, DVCS repos … with this plugin, this functionality is added in the top buttons of each view of the project administration artifacts (with the autocomplete option)… it’s a…
Read MoreLastComment : New Custom Field in JIRA
Download the plugin Kepler Custom Fields Create a SIL Script Custom Field In the custom field configuration set a new script like this: return getLastComment(key)[“text”]; Insert the custom field in the screen That’s all! SIL Syntax programming
Read MoreHow to create and configure CC (Participant) field in JIRA
To enable users to create and configure CC or participant field in JIRA. Create a Custom Field called CC with custom field type as User Picker (multiple user). Add the newly created Custom Field CC to the relevant Screens that you require it for. Go to the relevant project’s Notification Scheme and add notification for…
Read More
How to create a Custom Field calculated in JIRA with JIRA MISC addon
To create a new custom field calculated, we can use the addon of JIRA “JIRA Misc Custom Fields”. The plugin can be downloaded from: https://marketplace.atlassian.com/plugins/com.innovalog.jmcf.jira-misc-custom-fields/server/overview Example of Custom Field that sum two different Custom Fields: 1.- Go to create new Custom Field. Select Type “Calculated Number Field” 2.- In the “description” of the new customfield set…
Read More