Hi!
I would like to run a report that flags when a field has changed. I've done this successfully when keeping in Jira but now that I want to use a field for this from Jira Discovery, it's showing up as a time stamp, even though I created the field as Date Picker and global field. Can someone help me understand how to use a global field that I can use across Discovery and Jira
That is not a date / time stamp. It is the special date field format used by Jira Product Discovery (JPD), and it is stored as plain text. The type allows selection of...
There are several posts describing how this field type is not yet supported by JQL. Additionally, I do not believe global date / time picker fields can be added to a JPD project yet.
I believe the only workarounds for this need are:
Kind regards,
Bill
HI @Bill Sheboy Thank you for the response! I do not know how to write this script. Do you by chance know how to do this? I would very much appreciate steps to take in automation....
I believe the only workarounds for this need are:
Reminder here is what I am trying to change into MM-DD-YEAR
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
First thing, to get you started on creating your rule, please refer to these documentation and example sources:
Next, to convert one of the JPD date values to the format you want, here is a step by step to get to the final result:
{{issue.someJPDdate.substringBetween("end\":\"","\"").toDate.format("MM-dd-yyyy")}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Bill Sheboy Hmm.. I read all your docs and still am showing the special date field....
{{issue.Afro launch.substringBetween("end\":\"", "\",").toDate.format("MM-dd-yyyy")}}
is what I am using (Afro Launch is the custom field.)
I'm still seeing...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What I suggested will not change the display of the field.
Instead I suggested extracting the date value for display as text in another field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Bill Sheboy Got it! After hours of debugging, got it to work. Thank you for your time and continued response!!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
HI @Bill Sheboy Thank you for the response! I do not know how to write this script. Do you by chance know?
I believe the only workarounds for this need are:
Reminder here is what I am trying to change into MM-DD-YEAR
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.