Re: AR 7.5 - Filters. Adding a wait time before the filter executes

2011-04-18 Thread Brittain, Mark
Can't tell if you are processing one record on the 2 other forms or groups of 
records so I will assume it is one record each. Instead of thinking of it as 
waiting on the other forms, take the approach of when to tell the staging form 
to go.

LJ is on the right track where there needs to be some piece of data that tells 
the staging form to go. If the forms are processed in sequence, then maybe you 
can use the last modified date on the second form to push the go signal to 
staging form.  If you are processing a lot of records, then you might consider 
pushing the results to a pre-staging form that then issues the go. Join form 
might be another option to look at.

Mark

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of LJ LongWing
Sent: Saturday, April 16, 2011 5:48 PM
To: arslist@ARSLIST.ORG
Subject: Re: AR 7.5 - Filters. Adding a wait time before the filter executes

**
Andre,
You could write one filter that does a setfield from your 'other' form to check 
if it's done, then have a second filter that fires a goto action before the 
first one until it returns the results you are looking forbut I don't think 
this is a very good idea...

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of Andre H
Sent: Saturday, April 16, 2011 9:18 AM
To: arslist@ARSLIST.ORG
Subject: AR 7.5 - Filters. Adding a wait time before the filter executes

**
Hello,

Is there any way to add time to when a filter starts its execution?

I have a staging form that references 2 other forms and I need to add about 2
minutes of wait time to a filter that starts a filter guide. This filter needs 
to wait until
the processing of the other two forms are completed (Submit and Modify records)

Is there something that can be done to delay the start of the filter?

I want to keep everything in Filters and Filter Guides if possible.

Thanks,

Andre

_attend WWRUG11 www.wwrug.com ARSlist: Where the Answers Are_
_attend WWRUG11 www.wwrug.com ARSlist: Where the Answers Are_


This e-mail is the property of NaviSite, Inc. It is intended only for the 
person or entity to which it is addressed and may contain information that is 
privileged, confidential, or otherwise protected from disclosure. Distribution 
or copying of this e-mail, or the information contained herein, to anyone other 
than the intended recipient is prohibited.

___
UNSUBSCRIBE or access ARSlist Archives at www.arslist.org
attend wwrug11 www.wwrug.com ARSList: Where the Answers Are


Re: AR 7.5 - Filters. Adding a wait time before the filter executes

2011-04-16 Thread Misi Mladoniczky
Hi,

The normal way would be via Escalations. If you create a indexed field for
the execution timestamp, you can run it every minute without a problem.

The other way would be to do it by an interval Active-Link.

The ACTL would not be as robust, but it would keep the interaction with
the user.

Best Regards - Misi, RRR AB, http://www.rrr.se

Products from RRR Scandinavia (Best R.O.I. Award at WWRUG10):
* RRR|License - Not enough Remedy licenses? Save money by optimizing.
* RRR|Log - Performance issues or elusive bugs? Analyze your Remedy logs.
Find these products, and many free tools and utilities, at http://rrr.se.

 Hello,

 Is there any way to add time to when a filter starts its execution?

 I have a staging form that references 2 other forms and I need to add
 about 2
 minutes of wait time to a filter that starts a filter guide. This filter
 needs to wait until
 the processing of the other two forms are completed (Submit and Modify
 records)

 Is there something that can be done to delay the start of the filter?

 I want to keep everything in Filters and Filter Guides if possible.

 Thanks,

 Andre

 ___
 UNSUBSCRIBE or access ARSlist Archives at www.arslist.org
 attend wwrug11 www.wwrug.com ARSList: Where the Answers Are

___
UNSUBSCRIBE or access ARSlist Archives at www.arslist.org
attend wwrug11 www.wwrug.com ARSList: Where the Answers Are


Re: AR 7.5 - Filters. Adding a wait time before the filter executes

2011-04-16 Thread LJ LongWing
Andre,

You could write one filter that does a setfield from your 'other' form to
check if it's done, then have a second filter that fires a goto action
before the first one until it returns the results you are looking for..but I
don't think this is a very good idea.

 

From: Action Request System discussion list(ARSList)
[mailto:arslist@ARSLIST.ORG] On Behalf Of Andre H
Sent: Saturday, April 16, 2011 9:18 AM
To: arslist@ARSLIST.ORG
Subject: AR 7.5 - Filters. Adding a wait time before the filter executes

 

** 


Hello,

Is there any way to add time to when a filter starts its execution?

I have a staging form that references 2 other forms and I need to add about
2
minutes of wait time to a filter that starts a filter guide. This filter
needs to wait until
the processing of the other two forms are completed (Submit and Modify
records)

Is there something that can be done to delay the start of the filter?

I want to keep everything in Filters and Filter Guides if possible.

Thanks,

Andre

_attend WWRUG11 www.wwrug.com ARSlist: Where the Answers Are_


___
UNSUBSCRIBE or access ARSlist Archives at www.arslist.org
attend wwrug11 www.wwrug.com ARSList: Where the Answers Are


Re: AR 7.5 - Filters. Adding a wait time before the filter executes

2011-04-16 Thread Shafqat Ayaz
Why don't you write back to your stage form from the other two forms? for 
example you could do a Push Fields back on After Submit from your other two 
forms. Have the filter check both values on Modify. I think that should work. 
Unless there is a specific reason that you don't want a Push back from the 
other two forms.

 


Shafqat Ayaz    






From: LJ LongWing lj.longw...@gmail.com.

To: arslist@ARSLIST.ORG
Sent: Saturday, April 16, 2011 2:47 PM
Subject: Re: AR 7.5 - Filters. Adding a wait time before the filter executes


** 
Andre,
You could write one filter that does a setfield from your ‘other’ form to check 
if it’s done, then have a second filter that fires a goto action before the 
first one until it returns the results you are looking for….but I don’t think 
this is a very good idea…
 
From:Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of Andre H
Sent: Saturday, April 16, 2011 9:18 AM
To: arslist@ARSLIST.ORG
Subject: AR 7.5 - Filters. Adding a wait time before the filter executes
 
** 
Hello,

Is there any way to add time to when a filter starts its execution?

I have a staging form that references 2 other forms and I need to add about 2
minutes of wait time to a filter that starts a filter guide. This filter needs 
to wait until
the processing of the other two forms are completed (Submit and Modify records)

Is there something that can be done to delay the start of the filter?

I want to keep everything in Filters and Filter Guides if possible.

Thanks,

Andre 
_attend WWRUG11 www.wwrug.com ARSlist: Where the Answers Are_
_attend WWRUG11 www.wwrug.com  ARSlist: Where the Answers Are_

___
UNSUBSCRIBE or access ARSlist Archives at www.arslist.org
attend wwrug11 www.wwrug.com ARSList: Where the Answers Are