Time Period
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2023 11:37 AM - edited 09-02-2023 06:18 AM
Hello Team, is it possible to add a quarterly period ?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2023 11:48 AM
Is there some reason you do not want to just use 60 days or something like that?
If you are looking for it to run say the first day of each quarter then you are going to have to use a conditional script for that job to check to see if its the first day of the quarter and if it is then let it run. The fields are not on the form but you could add them and see if a Workflow Schedule will use the fields. You will have to test it to find out. The two fields you would have to add are Condition and Conditional.
Adding what you are asking for to the workflow
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2023 12:22 PM - edited 09-02-2023 06:19 AM
Hi @DrewW Thanks ! this is my conditional script :
var answer = false;
if ((new Date().getMonth() == 1 || new Date().getMonth() == 4 || new Date().getMonth() == 7 || new Date().getMonth() == 10) && (new Date().getDate() == 1))
answer = true;
answer;
can this be implemented by another user-friendly solution like someting like this : "every x months", then we can set that to "every 3 months".

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2023 12:44 PM
That looks like it should work. So if the workflow scheduled job will use the script then you just need to add the fields you want and use a business rule to build the right script and put it in the field for the system to run.
But this is all assuming that a workflow scheduled job will even run that script, it may not, you will need to verify that.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2023 01:06 PM - edited 09-02-2023 06:18 AM
Hi @DrewW can you help me figure out