Lotus Domino 9.0.1, Create weekly recurrence meeting for all days from REST calendar service is creating differently from Lotus Notes Client - lotus-domino

Lotus Domino 9.0.1, create weekly recurrence meeting for all days from REST calendar service call is creating differently from Lotus Notes Client
Please try below scenario:
Create a weekly recurrence meeting which repeats every 2 weeks or every other week, on all days starting from thursday (08/13/2015 05:00PM) and select until end date (08/26/2015) as next to next week wednesday
Lotus Notes Creates meetings on below dates:
08/13/2015 05:00PM
08/14/2015 05:00PM
08/15/2015 05:00PM
08/16/2015 05:00PM
08/17/2015 05:00PM
08/18/2015 05:00PM
08/19/2015 05:00PM
Lotus Domino REST Calendar service:
The meeting is only created from thursday till saturday
recurrenceRule: "FREQ=WEEKLY;INTERVAL=2;UNTIL=20150826T173000Z;BYDAY=SU,MO,TU,WE,TH,FR,SA"
08/13/2015 05:00PM
08/14/2015 05:00PM
08/15/2015 05:00PM
Kindly help me regarding this

Related

Crystal Reports, Record display dates from Monday to Friday every Friday

I have created a report with multiple records in Crystal Reports 2016 SP6.
I would like to Format the record {Orders.DeliveryDate} so it only displays days from Monday to Friday.
I have tried formulas like:
{Orders.DeliveryDate} = DateAdd ("ww",7,CurrentDate) which just show up blank.
The premise of the report is so a company can get their machines prepared on Friday by knowing what orders are coming in on Monday - Friday.
Image of the records on the report.
Found a Formula that works
{Orders.DeliveryDate} >= Maximum(LastFullWeek) + 8 and
{Orders.DeliveryDate} <= Maximum(LastFullWeek) + 14

Autosys Job scheduling- With Month and Day condition

I need to run a Box in Autosys using scheduler with condition 1st day of every month and every Saturday.
I tried to add run_calendar and days_of_week: sa but this does not work.
Please let me know how to achieve this functionality.
extended calendar can have such conditions.
Create an extended calendar as
extended_calendar: Cal_name
description: runs on 1st day of the month and sat
workday: mo,tu,we,th,fr
non_workday:
holiday:
holcal:
cyccal:
adjust: 0
condition: MNTHD#1|sat
Use this calendar for your job.
condition: MNTHD#1|sat
MNTHD#1 1st day of every month
| AND
sat every saturday.
refer this link for more such conditions
Autosys calendar conditions
Hope this helps.

Find last 10 business days of the current month for schedule

I have a couple of scenarios
Scheduler should compare the current day is with in the last 10 business days of the current month then it should schedule to run current day with 11AM CST.
(E-g) current day : 18th July 2017 (with in last 10 business days) should run and reschedule at 19th July 2017 11.AM CST
IF Last business day(30th or 31st) after runs the scheduler should reschedule it to next month.
(E-g )current day : 31th July 2017 (with in last 10 business days) should run and reschedule at 18th Aug2017 11.AM CST
Can any one help to derive the logic in oracle 11g scheduler?
Thanks in Advance.

Skip weekends Business day tasks NetSuite

Using NetSuite, I am trying to automate the creation of monthly tasks. These tasks will fall on the last day of the month, a day before, and 1,2,3,4,5 days after the last day of the month. But, the tasks can't be due on a weekend, only business days. So if the day falls on a sat or sun the dates have to move up. How can I use my custom record to calculate the next months task dates skipping weekends? Here is a screenshot of the record - see that 10/4 and 10/5 fall on saturday and sunday, how can I have it skip sat and sunday? I used the sql function option to generate the dates and days of the week.
I tested the following formula. Replace custbody_date with your field name. This formula should be set in your 'next month' column.
CASE WHEN INSTR(to_char({custbody_date}, 'DAY'),'SATURDAY') != 0
THEN {custbody_date}+2
WHEN INSTR(to_char({custbody_date}, 'DAY'),'SUNDAY') != 0
THEN {custbody_date}+1 ELSE {custbody_date}
END
This should also give you an idea to set the value for 'Next Month Day' (skipping saturday and sunday).

Performing MTD/YTD calcs over multiple calendars in analysis services

I have the following situation in my cube:
Shop A uses calendar Cal1. Their sales month starts Jan 5th.
Shop B uses calendar Cal2. Their sales month starts Jan 10th.
Shop C...etc
Shop calendars can not simply be represented as offsets of a main calendar. They have different working days, public holidays etc.
I need to produce a daily (reporting services) report with the actual calendar date as a parameter. The list of shops is also a multi select parameter. If a user selects the 15th of Jan, I need to show the combined MTD sales for all shops selected in the parameters. So that would mean the first 10 days of sales for shop A and the first 5 days of sales for shop B etc.
Any ideas how I can make this work? I'll also need to provide YTD figures in the same manner.
I am implementing multiple calendars using a bridging table between my date and calendar dimensions. It is the technique described here: http://duncansutcliffe.wordpress.com/2010/06/11/a-better-date-dimension/
I can not hard code the calendars as there is a requirement to possibly add more in the future without modifying the schema.
I am not sure I understand you sales data start days, but if I do then the solution is to make an extra dimension as a "reporting calendar" as a point of harmony between the actual calendars
Each shop has a known offset to the reporting calendar, so for shop A it's 5 days, for shop B it's 10 days etc
When you add fact data you also need to calculate a reporting date using the offset. So for Shop A 5 Jan is actually 1 Jan etc
When reporting, the user selects a date on the reporting calendar, and facts are selected based on that
e.g. if the user selected reporting calendar 15th Jan, it would only select actual dates 1 to 15 Jan and reporting calendar up to 15 and only Jan
Data selected would be Shop A 5 to 15, Shop B 10 to 15
1 to 4 Jan for Shop A and 1 to 9 for Shop B would be in Dec of the reporting calendar, and not included because of the filter of reporting calendar Jan