You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Used the below code for the same, but it is not working, Any help will be appreciated,Where can I see the logs?
import com.atlassian.jira.component.ComponentAccessor
import com.onresolve.jira.groovy.user.FormField
import com.onresolve.jira.groovy.user.FieldBehaviours
import groovy.transform.BaseScript
@BaseScript FieldBehaviours fieldBehaviours
getFieldById(getFieldChanged()).clearError()
def tsvalue = getFieldById(getFieldChanged()). getValue()
if(tsvalue.endsWith(’m’) && toInteger (tsvalue.minus(“m”))< 15) {
getFieldById(getFieldChanged()).setError(“Value is not proper”)
}
if(tsvalue.endsWith(’h’) && toInteger (tsvalue.minus(“h”)) > 8) {
getFieldById(getFieldChanged()).setError(“Value is not proper”)
}
Hi @Soumya Rajeshkumar ,
To see the logs for the behavior script please import logger package like
import org.apache.log4j.Level
import org.apache.log4j.Logger
def myLog = Logger.getLogger("com.jira.groovy.behaviour")
myLog.setLevel(Level.DEBUG)
myLog.debug(" Custom message write here")
Thanks a lot, but the script is not working . Need a solution for that also
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.