Is there any way we can Export Filter Result in to excel and save it to Network Share OR send it via email ?
Hey there, Atul.
Can you please refer to the following documentations and see if they can be of any help:
Warm regards,
Danial
I am already aware of filtersubscription, But here i want to receive daily email with the Exported Excel as attachment Or Get this Excel saved to a Network share.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Code, if you want Jira to do it.
A human can click "excel" as a view option on a filter and save it to a network share, or email it any time you want though. You might want to consider writing a script that will hit the excel url and do what you want, rather than trying to wedge it into Jira. (I've done it both ways - a script can be three lines of code and a cron entry. A plugin is a difficult-to-maintain swathe of code)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Um, not really, it depends entirely on your systems. I do have this in a cron on an old site though:
#!/bin/bash wget https://yourjira/sr/jira.issueviews:searchrequest-excel-current-fields/10010/SearchRequest-10010.xls?tempMax=1000 cp SearchRequest-10010.xls <somewhere>
As you can see, it's not complex...
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.