how to generate scheduled job on 15 jan every year?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-17-2016 02:57 AM
how to generate scheduled job on 15 jan every year and suppose year is leap year then what to do ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-17-2016 03:32 AM
Hi Anurag Jain
your absolutely right.
Thanks,
Rajashekhar Mushke
Rising star : 2022 - 2024
Community Leader -2018
Connect me on LinkedIn : Rajashekhar Mushke
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-17-2016 04:03 AM
Hi anurag
I have to autocreate a request for a particular assignment group on 15 jan every year
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-17-2016 04:44 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-17-2016 05:24 AM
Thanks anurag.Can you help me with script for autocreation of request?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-17-2016 05:34 AM
That would be:
var req = new GlideRecord("sc_request");
req.assignment_group = 'sys id of group where request should be routed';
req.insert();
--> you can add and update fields based on your requirements.