Suitescript Object Script Deployment Recurrence
When creating an XML object definition for your Suitescript deployment I noticed the schedule for the deployment was different to what I had coded. Here’s a snippet of the XML object definition for a script where I wanted the script to run monthly, on the first day of the month at midnight: 1 2 3 4 5 6 7 8 9 <status>SCHEDULED</status> <recurrence> <monthly> <startdate>2024-12-02</startdate> <starttime>00:00:00Z</starttime> <dayofmonth>1</dayofmonth> <everyxmonths>1</everyxmonths> </monthly> </recurrence> As you see it has all the necessary definitions. ...