Hi
I have a single select field type custom field on our JIRA instance (6.1).
Say the select field has values A, B, C and D.
My requirement is to identify issues which have changed the values from A to B sometime in the past.
Is it possible? With some scripting ? directly running queries on database? or via some plugin?
Rahul
using Oracle you can do a query on the history this way. I have my own materialized view to track and index the pkey but i think this has the right fields for a normal query.
SELECT CG.ISSUEID, P.PKEY || '-' || JI.ISSUENUM as PKEY FROM JIRAUSER.CHANGEGROUP CG, JIRAUSER.CHANGEITEM CI, JIRAISSUE JI, PROJECT P WHERE CG.ID = CI.GROUPID and CG.ISSUEID = JI.ID and JI.PROJECT = P.ID AND FIELD = '<Field Name Here>' AND DBMS_LOB.Substr(OLDSTRING, 200, 1) = 'A' and DBMS_LOB.Substr(NEWSTRING, 200, 1) = 'B'
I want to identify issues which have changed their values from A to B for my custom field. Is there a way i can achieve this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What sort of output do you need? I'd like you to be more clear in your use-case or requirements. Likely this could be accomplished with Script Runner or something of that nature. Please note that System Fields can be searched via the WAS function, supporting historical searching. Custom Fields do not support the WAS function.
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.