Generate reports through flow designer

Sprankle
Tera Contributor

I have a requirement to generate reports on schedule basics using flow designer

1 REPLY 1

Ankur Bawiskar
Tera Patron
Tera Patron

@Sprankle 

not possible directly.

You will have to use custom flow action and write script there to trigger scheduled report

var rec = new GlideRecord('sysauto_report');
if (rec.get('name', 'MyReport')) {
    gs.executeNow(rec);
}

If my response helped please mark it correct and close the thread so that it benefits future readers.

Regards,
Ankur
✨ Certified Technical Architect  ||  ✨ 9x ServiceNow MVP  ||  ✨ ServiceNow Community Leader