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.
Hi
I would like to add a scripted custom field with dropdown options Yes & No. I want the scripted field to check for attachment(s) in an issue and set custom field option as yes if there are attachments, else No.
What is the best way? and I have no experience in groovy and accessing attachments.
Any help is appreciated, Thanks
Scripted fields do not have options, they calculate something and display it to the users.
Your desired behaviour is unclear to me, could you describe what the users will see (and do) without worrying about any part of the "how"? What is the question you are trying to answer for your users?
Hi @Nic Brough -Adaptavist- As of now in Jira issue search navigator we don't see attachments and while JQL subscription it is hard for users to understand if there is an attachment to the issue or not. To solve this I was thinking to have a scripted filed to say YES or NO if there are any attachments or not and add this field to issue navigator and to JQL subscription
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Nic Brough -Adaptavist- Reason is, the set of users who receives email subscription will not have Jira access per business logic, hence a simple subscription which talks about tickets and say whether there is an attachment or not
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ah, I see.
I would go one step further than yes/no, and give your people even more information.
Try setting up a scripted field that
return issue.getAttachments().size()
This will put the count of attachments in front of your people, so they can sort by it and your "yes" could be searched for with "number of attachments" > 0
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Nic,
The approach helps in solving my problem.
Thank you for sharing your knowledge
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.