Hey Folks, I'm working on a SDK .Net app for scheduling. Based on the samples provided by IBM I'm able to schedule reports on daily basis. But I want the extend this to week and month. I'd really appreciate if someone can provide, or guide me on setting weekly and monthly nmtoken values. Please let me know if you need more information. Thanks for your time.
Below code sets nmtokenProp for daily schedule.
// a few more sched options.
nmtokenProp tp = new nmtokenProp();
nmtokenProp dailyPeriod = new nmtokenProp();
active.value = true;
dailyPeriod.value = "minute";
frequency.value = "10";
startDate.value = DateTime.Now.Date;
tp.value = "daily";