How can i set the filter through JQL to find the report of issues whose status is open since last 24 hours via email at fixed time daliy.
Community moderators have prevented the ability to post new answers.
See https://answers.atlassian.com/questions/209394/fetch-the-issues-automatically-at-fixed-time where you already asked, and Jobin already answered.
I think this one is slightly different because he needs issues were status was not changed from open. Not changed is currently not supported :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Create a filter with the following JQL.
status changed after -24h
Create another filter like this.
status = open and filter != "filter created earlier"
You can then subscribe to the second filter, every day at a fixed time.
https://confluence.atlassian.com/display/JIRA/Receiving+Search+Results+via+Email
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.