Page 1 of 3 1 2 3 >
Topic Options
Rate This Topic
#8008 - 06/08/99 01:13 PM Escalation Qualification ....HELP!
Anonymous
Unregistered


(which works) but it appears that my qualification is the part that is not
working. I want it to check a date/time field against the time now and if
the difference is two hours or less and the status is any one of three
states, to do the run process. Here's what I'm using:

(( 'Status' = "New") OR ( 'Status' = "Scheduled") OR ( 'Status' =
"Coordinating")) AND (( 'Date&Time' - $TIMESTAMP$) <= 7200)

This appears to be running at every time interval, regardless of the time
portion of the qualification (the status part seems to work). Can anyone
see what I'm doing wrong?

---------------------------------------------------------------------------
To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
with a body of "signoff arslist". The subject line is ignored.


Top
#8009 - 06/08/99 01:21 PM Re: Escalation Qualification ....HELP! [Re: Anonymous]
Anonymous
Unregistered



a couple of things...

1.) You are generating negative numbers because your timestamp is greater than
your date time field.
2.) Generally, you would want to subtract the off set from you timestamp and
then do a >= evaluation versus the date time field as it is more efficient...
so try this one:

(( 'Status' = "New") OR ( 'Status' = "Scheduled") OR ( 'Status' =
"Coordinating")) AND ( 'Date&Time' >= ($TIMESTAMP$ - 7200))

:)

Jim C





"Black, Dulcy A." on 06/08/99 10:13:54

Please respond to "Action Request System discussion list(ARSList)"


To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU
cc: (bcc: James P Caruso/ETC/Deluxe Corporation)
Subject: Escalation Qualification ....HELP!




I am trying to create an escalation that performs a run process action
(which works) but it appears that my qualification is the part that is not
working. I want it to check a date/time field against the time now and if
the difference is two hours or less and the status is any one of three
states, to do the run process. Here's what I'm using:

(( 'Status' = "New") OR ( 'Status' = "Scheduled") OR ( 'Status' =
"Coordinating")) AND (( 'Date&Time' - $TIMESTAMP$) <= 7200)

This appears to be running at every time interval, regardless of the time
portion of the qualification (the status part seems to work). Can anyone
see what I'm doing wrong?

---------------------------------------------------------------------------
To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
with a body of "signoff arslist". The subject line is ignored.

---------------------------------------------------------------------------
To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
with a body of "signoff arslist". The subject line is ignored.


Top
#8010 - 06/08/99 01:24 PM Re: Escalation Qualification ....HELP! [Re: Anonymous]
Anonymous
Unregistered


(($TIMESTAMP$ - 'Date&Time') <= 7200). Since $TIMESTAMP$ will always be
larger than the value in a field, the current syntax will always return a
negative number (which is less than 7200), and therefore will always fire.

Rick Cook
OSS Remedy Consultant
AT&T Wireless Services
425-580-8139

> -----Original Message-----
> From: Black, Dulcy A. [SMTP:Dulcy_Black@DEN.INVESCO.COM]
> Sent: Tuesday, June 08, 1999 10:14 AM
> To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU
> Subject: Escalation Qualification ....HELP!
>
> I am trying to create an escalation that performs a run process action
> (which works) but it appears that my qualification is the part that is not
> working. I want it to check a date/time field against the time now and if
> the difference is two hours or less and the status is any one of three
> states, to do the run process. Here's what I'm using:
>
> (( 'Status' = "New") OR ( 'Status' = "Scheduled") OR ( 'Status' =
> "Coordinating")) AND (( 'Date&Time' - $TIMESTAMP$) <= 7200)
>
> This appears to be running at every time interval, regardless of the time
> portion of the qualification (the status part seems to work). Can anyone
> see what I'm doing wrong?
>
> --------------------------------------------------------------------------
> -
> To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
> with a body of "signoff arslist". The subject line is ignored.

---------------------------------------------------------------------------
To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
with a body of "signoff arslist". The subject line is ignored.


Top
#8011 - 06/08/99 02:39 PM Re: Escalation Qualification ....HELP! [Re: Anonymous]
Anonymous
Unregistered


the future (which would seem like it would be a bigger integer value), so
that $TIMESTAMP$ would be less than the 'Date&Time' field instead of the
other way around. What am I missing with this logic?

-----Original Message-----
From: Jim Caruso [mailto:James_P_Caruso@ETCSCAN.COM]
Sent: June 08, 1999 11:21 AM
To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU
Subject: Re: Escalation Qualification ....HELP!


Dulcy,

a couple of things...

1.) You are generating negative numbers because your timestamp is greater
than
your date time field.
2.) Generally, you would want to subtract the off set from you timestamp and
then do a >= evaluation versus the date time field as it is more
efficient...
so try this one:

(( 'Status' = "New") OR ( 'Status' = "Scheduled") OR ( 'Status' =
"Coordinating")) AND ( 'Date&Time' >= ($TIMESTAMP$ - 7200))

:)

Jim C





"Black, Dulcy A." on 06/08/99 10:13:54

Please respond to "Action Request System discussion list(ARSList)"


To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU
cc: (bcc: James P Caruso/ETC/Deluxe Corporation)
Subject: Escalation Qualification ....HELP!




I am trying to create an escalation that performs a run process action
(which works) but it appears that my qualification is the part that is not
working. I want it to check a date/time field against the time now and if
the difference is two hours or less and the status is any one of three
states, to do the run process. Here's what I'm using:

(( 'Status' = "New") OR ( 'Status' = "Scheduled") OR ( 'Status' =
"Coordinating")) AND (( 'Date&Time' - $TIMESTAMP$) <= 7200)

This appears to be running at every time interval, regardless of the time
portion of the qualification (the status part seems to work). Can anyone
see what I'm doing wrong?

---------------------------------------------------------------------------
To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
with a body of "signoff arslist". The subject line is ignored.

---------------------------------------------------------------------------
To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
with a body of "signoff arslist". The subject line is ignored.

---------------------------------------------------------------------------
To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
with a body of "signoff arslist". The subject line is ignored.


Top
#8012 - 06/08/99 02:51 PM Re: Escalation Qualification ....HELP! [Re: Anonymous]
Anonymous
Unregistered



If you're referring to a field set by the database, then the 'Date&Time'
field has already been set when you compare against it, thus, it is in the
past.

$TIMESTAMP$ is the time on the server when the escalation performs its
comparison so it is larger than (future to) the 'Date&Time' field.

Does that make any more sense?

-Chris



> -----Original Message-----
> From: Black, Dulcy A. [SMTP:Dulcy_Black@DEN.INVESCO.COM]
> Sent: June 08, 1999 11:40 AM
> To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU
> Subject: Re: Escalation Qualification ....HELP!
>
> I thought that $TIMESTAMP$ is now, and the 'Date&Time' field is always in
> the future (which would seem like it would be a bigger integer value), so
> that $TIMESTAMP$ would be less than the 'Date&Time' field instead of the
> other way around. What am I missing with this logic?
>
> -----Original Message-----
> From: Jim Caruso [mailto:James_P_Caruso@ETCSCAN.COM]
> Sent: June 08, 1999 11:21 AM
> To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU
> Subject: Re: Escalation Qualification ....HELP!
>
>
> Dulcy,
>
> a couple of things...
>
> 1.) You are generating negative numbers because your timestamp is greater
> than
> your date time field.
> 2.) Generally, you would want to subtract the off set from you timestamp
> and
> then do a >= evaluation versus the date time field as it is more
> efficient...
> so try this one:
>
> (( 'Status' = "New") OR ( 'Status' = "Scheduled") OR ( 'Status' =
> "Coordinating")) AND ( 'Date&Time' >= ($TIMESTAMP$ - 7200))
>
> :)
>
> Jim C
>
>
>
>
>
> "Black, Dulcy A." on 06/08/99 10:13:54
>
> Please respond to "Action Request System discussion list(ARSList)"
>
>
> To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU
> cc: (bcc: James P Caruso/ETC/Deluxe Corporation)
> Subject: Escalation Qualification ....HELP!
>
>
>
>
> I am trying to create an escalation that performs a run process action
> (which works) but it appears that my qualification is the part that is not
> working. I want it to check a date/time field against the time now and if
> the difference is two hours or less and the status is any one of three
> states, to do the run process. Here's what I'm using:
>
> (( 'Status' = "New") OR ( 'Status' = "Scheduled") OR ( 'Status' =
> "Coordinating")) AND (( 'Date&Time' - $TIMESTAMP$) <= 7200)
>
> This appears to be running at every time interval, regardless of the time
> portion of the qualification (the status part seems to work). Can anyone
> see what I'm doing wrong?
>
> --------------------------------------------------------------------------
> -
> To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
> with a body of "signoff arslist". The subject line is ignored.
>
> --------------------------------------------------------------------------
> -
> To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
> with a body of "signoff arslist". The subject line is ignored.
>
> --------------------------------------------------------------------------
> -
> To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
> with a body of "signoff arslist". The subject line is ignored.

---------------------------------------------------------------------------
To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
with a body of "signoff arslist". The subject line is ignored.


Top
#8013 - 06/08/99 02:53 PM Re: Escalation Qualification ....HELP! [Re: Anonymous]
Anonymous
Unregistered



Everyone has been responding to you with the assumption that the 'Date&Time'
field is representing a event in the past (, i.e. when a call was created,
assigned, etc.) Is that not the case? What is the 'Date&Time' field in
your form?

If you are trying to check that the status is in a certain state, and the
date that it was created or changed to that state is greater than 2 hours,
then the information that others have sent you is correct.

Is that what you're trying to do?

David Kirkpatrick
Legacy Health System
Portland, OR USA
503.415.5826 (Voice)
503.415.5126 (FAX)
dkirkpat@lhs.org
----------
From: Black, Dulcy A.
To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU
Subject: Re: Escalation Qualification ....HELP!
Date: 08 June, 1999 11:39

I thought that $TIMESTAMP$ is now, and the 'Date&Time' field is always in
the future (which would seem like it would be a bigger integer value), so
that $TIMESTAMP$ would be less than the 'Date&Time' field instead of the
other way around. What am I missing with this logic?

-----Original Message-----
From: Jim Caruso [mailto:James_P_Caruso@ETCSCAN.COM]
Sent: June 08, 1999 11:21 AM
To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU
Subject: Re: Escalation Qualification ....HELP!


Dulcy,

a couple of things...

1.) You are generating negative numbers because your timestamp is greater
than
your date time field.
2.) Generally, you would want to subtract the off set from you timestamp and
then do a >= evaluation versus the date time field as it is more
efficient...
so try this one:

(( 'Status' = "New") OR ( 'Status' = "Scheduled") OR ( 'Status' =
"Coordinating")) AND ( 'Date&Time' >= ($TIMESTAMP$ - 7200))

:)

Jim C





"Black, Dulcy A." on 06/08/99 10:13:54

Please respond to "Action Request System discussion list(ARSList)"


To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU
cc: (bcc: James P Caruso/ETC/Deluxe Corporation)
Subject: Escalation Qualification ....HELP!




I am trying to create an escalation that performs a run process action
(which works) but it appears that my qualification is the part that is not
working. I want it to check a date/time field against the time now and if
the difference is two hours or less and the status is any one of three
states, to do the run process. Here's what I'm using:

(( 'Status' = "New") OR ( 'Status' = "Scheduled") OR ( 'Status' =
"Coordinating")) AND (( 'Date&Time' - $TIMESTAMP$) <= 7200)

This appears to be running at every time interval, regardless of the time
portion of the qualification (the status part seems to work). Can anyone
see what I'm doing wrong?

---------------------------------------------------------------------------
To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
with a body of "signoff arslist". The subject line is ignored.

---------------------------------------------------------------------------
To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
with a body of "signoff arslist". The subject line is ignored.

---------------------------------------------------------------------------
To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
with a body of "signoff arslist". The subject line is ignored.

---------------------------------------------------------------------------
To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
with a body of "signoff arslist". The subject line is ignored.


Top
#8014 - 06/08/99 03:29 PM Re: Escalation Qualification ....HELP! [Re: Anonymous]
Anonymous
Unregistered


a date the user would put in upon submission of a ticket. The date and time
can be anywhere in the future.

-----Original Message-----
From: Woyton, Chris [mailto:CWoyton@PINACOR.COM]
Sent: June 08, 1999 12:52 PM
To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU
Subject: Re: Escalation Qualification ....HELP!


Dulcy,

If you're referring to a field set by the database, then the 'Date&Time'
field has already been set when you compare against it, thus, it is in the
past.

$TIMESTAMP$ is the time on the server when the escalation performs its
comparison so it is larger than (future to) the 'Date&Time' field.

Does that make any more sense?

-Chris



> -----Original Message-----
> From: Black, Dulcy A. [SMTP:Dulcy_Black@DEN.INVESCO.COM]
> Sent: June 08, 1999 11:40 AM
> To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU
> Subject: Re: Escalation Qualification ....HELP!
>
> I thought that $TIMESTAMP$ is now, and the 'Date&Time' field is always in
> the future (which would seem like it would be a bigger integer value), so
> that $TIMESTAMP$ would be less than the 'Date&Time' field instead of the
> other way around. What am I missing with this logic?
>
> -----Original Message-----
> From: Jim Caruso [mailto:James_P_Caruso@ETCSCAN.COM]
> Sent: June 08, 1999 11:21 AM
> To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU
> Subject: Re: Escalation Qualification ....HELP!
>
>
> Dulcy,
>
> a couple of things...
>
> 1.) You are generating negative numbers because your timestamp is greater
> than
> your date time field.
> 2.) Generally, you would want to subtract the off set from you timestamp
> and
> then do a >= evaluation versus the date time field as it is more
> efficient...
> so try this one:
>
> (( 'Status' = "New") OR ( 'Status' = "Scheduled") OR ( 'Status' =
> "Coordinating")) AND ( 'Date&Time' >= ($TIMESTAMP$ - 7200))
>
> :)
>
> Jim C
>
>
>
>
>
> "Black, Dulcy A." on 06/08/99 10:13:54
>
> Please respond to "Action Request System discussion list(ARSList)"
>
>
> To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU
> cc: (bcc: James P Caruso/ETC/Deluxe Corporation)
> Subject: Escalation Qualification ....HELP!
>
>
>
>
> I am trying to create an escalation that performs a run process action
> (which works) but it appears that my qualification is the part that is not
> working. I want it to check a date/time field against the time now and if
> the difference is two hours or less and the status is any one of three
> states, to do the run process. Here's what I'm using:
>
> (( 'Status' = "New") OR ( 'Status' = "Scheduled") OR ( 'Status' =
> "Coordinating")) AND (( 'Date&Time' - $TIMESTAMP$) <= 7200)
>
> This appears to be running at every time interval, regardless of the time
> portion of the qualification (the status part seems to work). Can anyone
> see what I'm doing wrong?
>
> --------------------------------------------------------------------------
> -
> To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
> with a body of "signoff arslist". The subject line is ignored.
>
> --------------------------------------------------------------------------
> -
> To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
> with a body of "signoff arslist". The subject line is ignored.
>
> --------------------------------------------------------------------------
> -
> To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
> with a body of "signoff arslist". The subject line is ignored.

---------------------------------------------------------------------------
To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
with a body of "signoff arslist". The subject line is ignored.

---------------------------------------------------------------------------
To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
with a body of "signoff arslist". The subject line is ignored.


Top
#8015 - 06/08/99 03:54 PM Re: Escalation Qualification ....HELP! [Re: Anonymous]
Anonymous
Unregistered



Sorry for the bum steer, I assumed (and I know what that makes me) that you
were comparing this to a date in the past. All you need to do to get what you
are looking for is to add a section to your run if that evaluates if the
'Date&Time' is greater than the $TIMESTAMP$. So:

(( 'Status' = "New") OR ( 'Status' = "Scheduled") OR ( 'Status' =
"Coordinating")) AND ( 'Date&Time' > $TIMESTAMP$) AND ( 'Date&Time' <=
($TIMESTAMP$ + 7200))

Should get you all of the tickets where the 'Date&Time' is somewhere between
now and two hours from now.

HTH,

Jim C





"Black, Dulcy A." on 06/08/99 12:29:34

Please respond to "Action Request System discussion list(ARSList)"


To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU
cc: (bcc: James P Caruso/ETC/Deluxe Corporation)
Subject: Re: Escalation Qualification ....HELP!




This Date&Time field is NOT automatically populated by the database. It is
a date the user would put in upon submission of a ticket. The date and time
can be anywhere in the future.

-----Original Message-----
From: Woyton, Chris [mailto:CWoyton@PINACOR.COM]
Sent: June 08, 1999 12:52 PM
To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU
Subject: Re: Escalation Qualification ....HELP!


Dulcy,

If you're referring to a field set by the database, then the 'Date&Time'
field has already been set when you compare against it, thus, it is in the
past.

$TIMESTAMP$ is the time on the server when the escalation performs its
comparison so it is larger than (future to) the 'Date&Time' field.

Does that make any more sense?

-Chris



> -----Original Message-----
> From: Black, Dulcy A. [SMTP:Dulcy_Black@DEN.INVESCO.COM]
> Sent: June 08, 1999 11:40 AM
> To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU
> Subject: Re: Escalation Qualification ....HELP!
>
> I thought that $TIMESTAMP$ is now, and the 'Date&Time' field is always in
> the future (which would seem like it would be a bigger integer value), so
> that $TIMESTAMP$ would be less than the 'Date&Time' field instead of the
> other way around. What am I missing with this logic?
>
> -----Original Message-----
> From: Jim Caruso [mailto:James_P_Caruso@ETCSCAN.COM]
> Sent: June 08, 1999 11:21 AM
> To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU
> Subject: Re: Escalation Qualification ....HELP!
>
>
> Dulcy,
>
> a couple of things...
>
> 1.) You are generating negative numbers because your timestamp is greater
> than
> your date time field.
> 2.) Generally, you would want to subtract the off set from you timestamp
> and
> then do a >= evaluation versus the date time field as it is more
> efficient...
> so try this one:
>
> (( 'Status' = "New") OR ( 'Status' = "Scheduled") OR ( 'Status' =
> "Coordinating")) AND ( 'Date&Time' >= ($TIMESTAMP$ - 7200))
>
> :)
>
> Jim C
>
>
>
>
>
> "Black, Dulcy A." on 06/08/99 10:13:54
>
> Please respond to "Action Request System discussion list(ARSList)"
>
>
> To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU
> cc: (bcc: James P Caruso/ETC/Deluxe Corporation)
> Subject: Escalation Qualification ....HELP!
>
>
>
>
> I am trying to create an escalation that performs a run process action
> (which works) but it appears that my qualification is the part that is not
> working. I want it to check a date/time field against the time now and if
> the difference is two hours or less and the status is any one of three
> states, to do the run process. Here's what I'm using:
>
> (( 'Status' = "New") OR ( 'Status' = "Scheduled") OR ( 'Status' =
> "Coordinating")) AND (( 'Date&Time' - $TIMESTAMP$) <= 7200)
>
> This appears to be running at every time interval, regardless of the time
> portion of the qualification (the status part seems to work). Can anyone
> see what I'm doing wrong?
>
> --------------------------------------------------------------------------
> -
> To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
> with a body of "signoff arslist". The subject line is ignored.
>
> --------------------------------------------------------------------------
> -
> To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
> with a body of "signoff arslist". The subject line is ignored.
>
> --------------------------------------------------------------------------
> -
> To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
> with a body of "signoff arslist". The subject line is ignored.

---------------------------------------------------------------------------
To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
with a body of "signoff arslist". The subject line is ignored.

---------------------------------------------------------------------------
To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
with a body of "signoff arslist". The subject line is ignored.

---------------------------------------------------------------------------
To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
with a body of "signoff arslist". The subject line is ignored.


Top
#8016 - 06/08/99 03:56 PM Re: Escalation Qualification ....HELP! [Re: Anonymous]
Anonymous
Unregistered



Are your customers entering the date in mm/dd/yy hh:mm:ss format? If they
supply just the date, Remedy will assume 12:00 AM on that date. It could be
causing miscalculations with the time.

Perhaps?

-Chris
> -----Original Message-----
> From: Black, Dulcy A. [SMTP:Dulcy_Black@DEN.INVESCO.COM]
> Sent: June 08, 1999 12:30 PM
> To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU
> Subject: Re: Escalation Qualification ....HELP!
>
> This Date&Time field is NOT automatically populated by the database. It
> is
> a date the user would put in upon submission of a ticket. The date and
> time
> can be anywhere in the future.
>
> -----Original Message-----
> From: Woyton, Chris [mailto:CWoyton@PINACOR.COM]
> Sent: June 08, 1999 12:52 PM
> To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU
> Subject: Re: Escalation Qualification ....HELP!
>
>
> Dulcy,
>
> If you're referring to a field set by the database, then the 'Date&Time'
> field has already been set when you compare against it, thus, it is in the
> past.
>
> $TIMESTAMP$ is the time on the server when the escalation performs its
> comparison so it is larger than (future to) the 'Date&Time' field.
>
> Does that make any more sense?
>
> -Chris
>
>
>
> > -----Original Message-----
> > From: Black, Dulcy A. [SMTP:Dulcy_Black@DEN.INVESCO.COM]
> > Sent: June 08, 1999 11:40 AM
> > To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU
> > Subject: Re: Escalation Qualification ....HELP!
> >
> > I thought that $TIMESTAMP$ is now, and the 'Date&Time' field is always
> in
> > the future (which would seem like it would be a bigger integer value),
> so
> > that $TIMESTAMP$ would be less than the 'Date&Time' field instead of the
> > other way around. What am I missing with this logic?
> >
> > -----Original Message-----
> > From: Jim Caruso [mailto:James_P_Caruso@ETCSCAN.COM]
> > Sent: June 08, 1999 11:21 AM
> > To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU
> > Subject: Re: Escalation Qualification ....HELP!
> >
> >
> > Dulcy,
> >
> > a couple of things...
> >
> > 1.) You are generating negative numbers because your timestamp is
> greater
> > than
> > your date time field.
> > 2.) Generally, you would want to subtract the off set from you timestamp
> > and
> > then do a >= evaluation versus the date time field as it is more
> > efficient...
> > so try this one:
> >
> > (( 'Status' = "New") OR ( 'Status' = "Scheduled") OR ( 'Status' =
> > "Coordinating")) AND ( 'Date&Time' >= ($TIMESTAMP$ - 7200))
> >
> > :)
> >
> > Jim C
> >
> >
> >
> >
> >
> > "Black, Dulcy A." on 06/08/99 10:13:54
> >
> > Please respond to "Action Request System discussion list(ARSList)"
> >
> >
> > To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU
> > cc: (bcc: James P Caruso/ETC/Deluxe Corporation)
> > Subject: Escalation Qualification ....HELP!
> >
> >
> >
> >
> > I am trying to create an escalation that performs a run process action
> > (which works) but it appears that my qualification is the part that is
> not
> > working. I want it to check a date/time field against the time now and
> if
> > the difference is two hours or less and the status is any one of three
> > states, to do the run process. Here's what I'm using:
> >
> > (( 'Status' = "New") OR ( 'Status' = "Scheduled") OR ( 'Status' =
> > "Coordinating")) AND (( 'Date&Time' - $TIMESTAMP$) <= 7200)
> >
> > This appears to be running at every time interval, regardless of the
> time
> > portion of the qualification (the status part seems to work). Can
> anyone
> > see what I'm doing wrong?
> >
> >
> --------------------------------------------------------------------------
> > -
> > To unsubscribe from this list, send mail to
> listserv@listserv.buffalo.edu
> > with a body of "signoff arslist". The subject line is ignored.
> >
> >
> --------------------------------------------------------------------------
> > -
> > To unsubscribe from this list, send mail to
> listserv@listserv.buffalo.edu
> > with a body of "signoff arslist". The subject line is ignored.
> >
> >
> --------------------------------------------------------------------------
> > -
> > To unsubscribe from this list, send mail to
> listserv@listserv.buffalo.edu
> > with a body of "signoff arslist". The subject line is ignored.
>
> --------------------------------------------------------------------------
> -
> To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
> with a body of "signoff arslist". The subject line is ignored.
>
> --------------------------------------------------------------------------
> -
> To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
> with a body of "signoff arslist". The subject line is ignored.

---------------------------------------------------------------------------
To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
with a body of "signoff arslist". The subject line is ignored.


Top
#8017 - 06/08/99 03:59 PM Re: Escalation Qualification ....HELP! [Re: Anonymous]
Anonymous
Unregistered


AM" and if so, it displays an error message telling them to input the
correct time. They are populating the field via the drop down calendar, so
the format would be mm/dd/yy hh:mm:ss AM.

-----Original Message-----
From: Woyton, Chris [mailto:CWoyton@PINACOR.COM]
Sent: June 08, 1999 1:57 PM
To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU
Subject: Re: Escalation Qualification ....HELP!


Ahhhh....here's an idea...

Are your customers entering the date in mm/dd/yy hh:mm:ss format? If they
supply just the date, Remedy will assume 12:00 AM on that date. It could be
causing miscalculations with the time.

Perhaps?

-Chris
> -----Original Message-----
> From: Black, Dulcy A. [SMTP:Dulcy_Black@DEN.INVESCO.COM]
> Sent: June 08, 1999 12:30 PM
> To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU
> Subject: Re: Escalation Qualification ....HELP!
>
> This Date&Time field is NOT automatically populated by the database. It
> is
> a date the user would put in upon submission of a ticket. The date and
> time
> can be anywhere in the future.
>
> -----Original Message-----
> From: Woyton, Chris [mailto:CWoyton@PINACOR.COM]
> Sent: June 08, 1999 12:52 PM
> To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU
> Subject: Re: Escalation Qualification ....HELP!
>
>
> Dulcy,
>
> If you're referring to a field set by the database, then the 'Date&Time'
> field has already been set when you compare against it, thus, it is in the
> past.
>
> $TIMESTAMP$ is the time on the server when the escalation performs its
> comparison so it is larger than (future to) the 'Date&Time' field.
>
> Does that make any more sense?
>
> -Chris
>
>
>
> > -----Original Message-----
> > From: Black, Dulcy A. [SMTP:Dulcy_Black@DEN.INVESCO.COM]
> > Sent: June 08, 1999 11:40 AM
> > To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU
> > Subject: Re: Escalation Qualification ....HELP!
> >
> > I thought that $TIMESTAMP$ is now, and the 'Date&Time' field is always
> in
> > the future (which would seem like it would be a bigger integer value),
> so
> > that $TIMESTAMP$ would be less than the 'Date&Time' field instead of the
> > other way around. What am I missing with this logic?
> >
> > -----Original Message-----
> > From: Jim Caruso [mailto:James_P_Caruso@ETCSCAN.COM]
> > Sent: June 08, 1999 11:21 AM
> > To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU
> > Subject: Re: Escalation Qualification ....HELP!
> >
> >
> > Dulcy,
> >
> > a couple of things...
> >
> > 1.) You are generating negative numbers because your timestamp is
> greater
> > than
> > your date time field.
> > 2.) Generally, you would want to subtract the off set from you timestamp
> > and
> > then do a >= evaluation versus the date time field as it is more
> > efficient...
> > so try this one:
> >
> > (( 'Status' = "New") OR ( 'Status' = "Scheduled") OR ( 'Status' =
> > "Coordinating")) AND ( 'Date&Time' >= ($TIMESTAMP$ - 7200))
> >
> > :)
> >
> > Jim C
> >
> >
> >
> >
> >
> > "Black, Dulcy A." on 06/08/99 10:13:54
> >
> > Please respond to "Action Request System discussion list(ARSList)"
> >
> >
> > To: ARSLIST@LISTSERV.ACSU.BUFFALO.EDU
> > cc: (bcc: James P Caruso/ETC/Deluxe Corporation)
> > Subject: Escalation Qualification ....HELP!
> >
> >
> >
> >
> > I am trying to create an escalation that performs a run process action
> > (which works) but it appears that my qualification is the part that is
> not
> > working. I want it to check a date/time field against the time now and
> if
> > the difference is two hours or less and the status is any one of three
> > states, to do the run process. Here's what I'm using:
> >
> > (( 'Status' = "New") OR ( 'Status' = "Scheduled") OR ( 'Status' =
> > "Coordinating")) AND (( 'Date&Time' - $TIMESTAMP$) <= 7200)
> >
> > This appears to be running at every time interval, regardless of the
> time
> > portion of the qualification (the status part seems to work). Can
> anyone
> > see what I'm doing wrong?
> >
> >
> --------------------------------------------------------------------------
> > -
> > To unsubscribe from this list, send mail to
> listserv@listserv.buffalo.edu
> > with a body of "signoff arslist". The subject line is ignored.
> >
> >
> --------------------------------------------------------------------------
> > -
> > To unsubscribe from this list, send mail to
> listserv@listserv.buffalo.edu
> > with a body of "signoff arslist". The subject line is ignored.
> >
> >
> --------------------------------------------------------------------------
> > -
> > To unsubscribe from this list, send mail to
> listserv@listserv.buffalo.edu
> > with a body of "signoff arslist". The subject line is ignored.
>
> --------------------------------------------------------------------------
> -
> To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
> with a body of "signoff arslist". The subject line is ignored.
>
> --------------------------------------------------------------------------
> -
> To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
> with a body of "signoff arslist". The subject line is ignored.

---------------------------------------------------------------------------
To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
with a body of "signoff arslist". The subject line is ignored.

---------------------------------------------------------------------------
To unsubscribe from this list, send mail to listserv@listserv.buffalo.edu
with a body of "signoff arslist". The subject line is ignored.


Top
Page 1 of 3 1 2 3 >


Moderator:  Matt Reinfeldt