Re: Temporal expression configuration

2015-09-25 Thread Gil portenseigne
Hi Vyom, I did some test about DAILY_GRIND and HOUR_RANGE, and it seems to work. To answer you question you can add another element to you daily_grind temporal expression like : tempExprTypeId="INTERSECTION" description="Monday to Friday at 8am at 00min without US Federal Holidays"/>

Re: Temporal expression configuration

2015-09-19 Thread Vyom Jain
I've been testing with the demo data and this is more likely a bug with HOUR_RANGE. For example, if I use TemporalExpression DAILY_GRIND (ServiceDemoData.xml) on a job, the job runs once but no jobs are scheduled for the next day. -- Vyom On 18 September 2015 at 20:51, Vyom Jain

Re: Temporal expression configuration

2015-09-19 Thread Vyom Jain
https://issues.apache.org/jira/browse/OFBIZ-6636 -- Vyom On 19 September 2015 at 16:57, Pierre Smits wrote: > Hi Vyom, > > Feel free to create a JIRA issue for tracking and resolvement purposes. > > Best regards, > > Pierre Smits > > *OFBiz Extensions Marketplace* >

Re: Temporal expression configuration

2015-09-19 Thread Pierre Smits
Hi Vyom, Feel free to create a JIRA issue for tracking and resolvement purposes. Best regards, Pierre Smits *OFBiz Extensions Marketplace* http://oem.ofbizci.net On Sat, Sep 19, 2015 at 12:11 PM, Vyom Jain wrote: > I've been testing with the demo data and this is more

Re: Temporal expression configuration

2015-09-19 Thread Adrian Crum
http://demo-trunk-ofbiz.apache.org/workeffort/control/calendar Adrian Crum Sandglass Software www.sandglass-software.com On 9/19/2015 8:30 AM, Vyom Jain wrote: Okay, can you provide some steps or link to a Work Effort in the demo (

Re: Temporal expression configuration

2015-09-19 Thread Adrian Crum
It is best to test temporal expressions with the Work Effort application - so you can see the effect of your expression. I used the DAILY_GRIND temporal expression in a work effort and it creates the correct events. Adrian Crum Sandglass Software www.sandglass-software.com On 9/19/2015 3:11

Re: Temporal expression configuration

2015-09-19 Thread Vyom Jain
Okay, can you provide some steps or link to a Work Effort in the demo ( http://demo-trunk-ofbiz.apache.org/workeffort/control/EditWorkEffort?workEffortId=1) so that I can see what fields need to be filled? In my testing with a job on trunk code, first job would get finished but no new jobs

Re: Temporal expression configuration

2015-09-19 Thread Vyom Jain
Thanks, I figured out the reasons for why no new jobs were getting created, there were additional associations DAILY_GRIND in my database (as old seed data used to have TIME_OF_DAY_RANGE association). After fixing the seed data, the new job doesn't get scheduled at 8:00AM, I think it retains the

Re: Temporal expression configuration

2015-09-18 Thread Vyom Jain
I've been trying to prepare similar expression on trunk code but neither INTERSECTION nor DIFFERENCE give desired results (mentioned in first message). I've split "TIME_OF_DAY_RANGE" expression & replaced it with separate "FREQUENCY" & "HOUR_RANGE(8, 18)" expressions. There seems to be an issue

Re: Temporal expression configuration

2014-08-11 Thread Adrian Crum
You are missing a Frequency expression. It is needed to make the event repeat every 5 seconds. Time Of Day Range was removed because it was a bad implementation and it didn't function properly. Adrian Crum Sandglass Software www.sandglass-software.com On 8/10/2014 8:32 PM, Vyom Jain wrote:

Re: Temporal expression configuration

2014-08-11 Thread Vyom Jain
TIME_OF_DAY_RANGE includes a frequency portion in it (integer1=13 integer2=05), when I had independently used TemporalExpression tempExprId=8AM6PM integer1=13 integer2=05 tempExprTypeId=TIME_OF_DAY_RANGE string1=08:00 string2=18:00/, the service would start *everyday* at 8:00, get scheduled after

Temporal expression configuration

2014-08-10 Thread Vyom Jain
Hello Everyone, I would like to schedule recurring jobs in such a way that the job executes every 5 seconds from Monday to Wednesday starting from 08:00 till 18:00. I've tried following temporal expression - TemporalExpression tempExprId=8AM6PM_MON_FRI tempExprTypeId=INTERSECTION/