I look at some of peoples query contains "cf[xyzvw]", where x, y, z, v, z are digits between 0 and 9. What does those number 'xyzvw' represent? Why people use those number in the "cf[]"? How to find out the mean of those numbers as a non-administrator? For example,
project = 15100 AND issuetype in ("Defect TRACKER") AND status in (Submitted, Assigned, "Defect Submitted", Accepted) AND cf[14836] in ("CS 09.0.00", EMPTY)
Thank you,
Lawrence
Hi @Lawrence ,
xyzvw represents custom field id. You can either use this id or custom field name in JQL.
If I'm not Jira administrator, I use REST API to get basic information about custom field.
After you log in to Jira, insert this URL to the browser:
https://your-instance-url/rest/api/2/field
You should get JSON with custom fields and if you search xyzvw through these data, you should be able to find your custom field's properties.
Why people use those numbers? Because custom field's name can change, but id is still the same, so I believe, this is the main reason.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you did a bit of digging, you would indeed find that the numbers are immutable database entries. You can change the name of something but not change the unique id for it. I'd recommend not bothering to do that digging, it's exactly what @Hana Kučerová has said
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hana provide me the tool to see what's hidden behind the number. Thank you all for your time in helping in knowing cf numbers.
Regards,
Lawrence
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.