How can I run Scheduled Export Twice in every Week

Vennela Maraboi
Kilo Explorer

Hi,

I want to run Scheduled Export twice in every week i.e, on Tuesday and Thursday at 2 AM.

Can any one please give some solution for this.

 

Thanks,

 

2 REPLIES 2

Fares Asadi
ServiceNow Employee
ServiceNow Employee

Hi Vennela,

 

I guess the easiest way would be to create 2 export jobs that run weekly, one that runs on Tuesday and on that runs on Thursday.

 

Regards

Fares

Ian Mildon
Tera Guru

And this to the conditional script on the scheduled job:

    (function() {  
      //run on Tuesday and Thursday  
      var day = new Date().getDay();  
      return (day == 2 || day == 4);  
    })();