cancel
Showing results for 
Search instead for 
Did you mean: 

DYNAMIC EMAIL REPORT SETTINGS

cartercjb
10 - ETL
10 - ETL

 

Hi Sisense Community! 

Please reference the screenshot below referenced in the following questions when configuring a dashboard's email settings: 

  1. Is there a script to only export the active/visible widgets based on the Tabber selection? 
  2. Is there a script/way to automatically run this for each location shown in the selected filter? So this would deliver 7 separate emails to the subscriber's inbox - one for each of the 7 locations. The Directors currently go into this report and filter locations one by one to then export & email a copy to the appropriate building manager. I'm looking for a way to remove that step and have it sent directly to the Director's inbox who can forward it from there. Note* the managers do not have access to Sisense otherwise I would have them just subscribe directly. 

cartercjb_1-1646982857193.png

Thanks!

-Carter

4 REPLIES 4

HamzaJ
12 - Data Integration
12 - Data Integration

Hi @cartercjb ,

I have not come across situation where I had to hide a widget in the PDF. I know it is possible with a dashboard script:

dashboard.on('widgetready', function (se, ev) {
	
	//widgetid to hide from PDF
	widgetid = '3aecd1801eafb16865d4c87lre'
	
	if(ev.widget.oid == widgetid)
	{
		$('[widgetid=' + widgetid + ']').closest('.u-r').height(0)
	}
});

You could use this script (extend it with the other IDs). 

For your second question; This is something I came across. We use a python script to loop through a list. It first changes the filters and then sends it to a specified user. For every user a different filter-setting is used. 

In theory you could extend this script to also add the script to the dashboard for each day and auto change the widgetid based on the day. Do you have experience with Python? I can then share my regular script and you can adjust it. 

Hamza

Thanks, Hamza @HamzaJ . I have entry level experience with Python. How advanced is your script? If not advanced, are you able to add comments to the different section(s) outlining the purpose? Let me know if you have any follow up questions or want to take this offline to test. Thanks!

-Carter

HamzaJ
12 - Data Integration
12 - Data Integration

Could you export the dashboard to a dash-file and share it with me? I'll copy paste the filter-jaql and send you a ready-to-test python file. If you prefer not to, I can share the python file with some comments

joffrey
7 - Data Storage
7 - Data Storage

Hi @HamzaJ Hamzaj, Thanks a lot for your recommendation to use a python script.

Would it be possible to share it with us please?

Thanks 

Joffrey 

Community Toolbox

Recommended quick links to assist you in optimizing your community experience:

Developers Group:

Product Feedback Forum:

Need additional support?:

Submit a Support Request

The Legal Stuff

Have a question about the Sisense Community?

Email [email protected]