Re: Filter Service Calls data base commits...

2011-03-15 Thread Misi Mladoniczky
Hi,

I have used error handling filters extensively in the following way:

1. create two display-only-fields:
- errorhandler errno
- errorhandler text

2. create two error handler filters
- errorhandler Message error
  run if: ('errorhandler errno' = $ERRNO$)
  action: message error: $errorhandler text$
- errorhandler Message warning
  run if: ('errorhandler errno' = $ERRNO$)
  action: message warning: $errorhandler text$

The idea is to give better feedback to the user, and either stop (error)
or allow (warning) the transaction to the database.

3. filter that can fail
  error handler: errorhandler Message warning
  action 1: set-fields current transaction
errorhandler errno = 380
errorhandler errno = The customer  + $Customer$  was not found, and
the customer field has been cleared
  action 2: set-fields from form Customer ('Customer' = $Customer$)
if no records match: error

This will allow very flexible functionality I think.

Now back to your problem.

With the new non-transactional-filter-service-call, you could do something
like this:

errorhandlerfilter
  action 1: call service: push the error handler ticket (invalid CTI
combination, ...)
  action 2: message error: transaction stopped due to ...

Then create the service that does the actual pushing:
service filter:



 I have the same trouble with the error handler feature.  I was so excited
 when it was introduced but then realized it wasn't exactly what I wanted
 it
 to be once I used it.  It seems you still need many filter qualifications
 to
 account for all of the different situations that will cause an error in
 your
 process.

 For example we have a custom db table where records are inserted and an
 escalation touches the new records using a Vendor Form to bring them into
 ARS processing (filter pushes them to a Help Desk ticket).  There are a
 number of errors that can occur: invalid CTI combination, invalid Region,
 Site, Department combination, missing Region, Site or Department, etc.
 When
 this happens we want a ticket created to review and correct the record so
 it
 can be processed for the customer.  When we initially created the process
 we
 though if the push fields fails say because a require field on the
 destination form is missing then our error handler field would create the
 ticket to research the failure and processing would stop after that.  This
 statement is where our idea fell flat:

 Pg 165 of 7.5 Workflow Objects Guide

 When all the If actions of the error handling filter complete
 successfully,
 *the error is considered handled*, the error information and keyword is
 cleared, and the filter in which the error occurred continues execution
 with
 the next action. If another error occurs during the execution of the
 filter,
 the error handler is executed again.

 In our initial development attempt would end up with a ticket to research
 the error and a ticket missing the required field(s) (who knew that was
 possible, they are required).  So then the though was to throw an error in
 the error handler after the research ticket push fields but then entire
 transaction rolled back and neither tickets were created just as if we
 didn't even have the EH.

 We ended up having our push fields filter still evaluate that all of the
 requirements were met in the qualification.  At the very end if the source
 record status is still New (would have been set to Processed if ticket
 was created) then we assume an error has occurred, set the status to
 Error
 and create a ticket to research.

 Another similar process on a web service integration form varies a little
 bit by throwing an error if a pre-check fails (CTI, RSD, item # not in the
 catalog).  The error handler is called and sets the status field to
 Error.  The pre-checks continue since the error was handled and
 concatenates the $ERRMSG$ and $ERRNO$ to a character field that is
 returned
 in web service.  All of the filters that do push fields do not fire if
 'Status' = Error.

 In both situations we need to figure out all of the possible points of
 failure ahead of time.  If an unexpected error is encountered then our
 error
 handling actions fall apart.

 I see value in the way it is designed but it would be nice if there was an
 option to terminate normal processing if an EH filter is called and only
 process the filters triggered by the EH.  Sometimes you want to take a
 special action due to an error but you still want a hard error that stops
 the original processing.

 Jason

 On Mar 14, 2011 2:04 PM, Misi Mladoniczky m...@rrr.se wrote:
 Hi Robert,

 Maybe, but the documentation does not say anything about this.

 This would both limit and extend the use of servive-calls I guess.

 In my case, when my service picks the next of several counters, it will
 create holes in my counter-series. I guess I have to redesign...

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

 Products from RRR Scandinavia (Best R.O.I. Award at WWRUG10):
 * RRR|License - Not enough 

Re: Filter Service Calls data base commits...

2011-03-15 Thread Misi Mladoniczky
Hi,

I have used error handling filters extensively in the following way:

1. create two display-only-fields:
- errorhandler errno
- errorhandler text

2. create two error handler filters
- errorhandler Message error
  run if: ('errorhandler errno' = $ERRNO$)
  action: message error: $errorhandler text$
- errorhandler Message warning
  run if: ('errorhandler errno' = $ERRNO$)
  action: message warning: $errorhandler text$

The idea is to give better feedback to the user, and either stop (error)
or allow (warning) the transaction to the database.

3. filter that can fail
  error handler: errorhandler Message warning
  action 1: set-fields current transaction
errorhandler errno = 380
errorhandler errno = The customer  + $Customer$  was not found, and
the customer field has been cleared
  action 2: set-fields from form Customer ('Customer' = $Customer$)
if no records match: error

This will allow very flexible functionality I think.

Now back to your problem.

With the new non-transactional-filter-service-call, you could do something
like this:

errorhandlerfilter
  action 1: call service: push the error handler ticket (invalid CTI
combination, ...)
  action 2: message error: transaction stopped due to ...

Then create the service that does the actual pushing:
service filter:
  action 1: push fields: ...

The problem is that you would not want to start using this before BMC has
confirmed that the functionality of the service-call works as designed...

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.

 I have the same trouble with the error handler feature.  I was so excited
 when it was introduced but then realized it wasn't exactly what I wanted
 it
 to be once I used it.  It seems you still need many filter qualifications
 to
 account for all of the different situations that will cause an error in
 your
 process.

 For example we have a custom db table where records are inserted and an
 escalation touches the new records using a Vendor Form to bring them into
 ARS processing (filter pushes them to a Help Desk ticket).  There are a
 number of errors that can occur: invalid CTI combination, invalid Region,
 Site, Department combination, missing Region, Site or Department, etc.
 When
 this happens we want a ticket created to review and correct the record so
 it
 can be processed for the customer.  When we initially created the process
 we
 though if the push fields fails say because a require field on the
 destination form is missing then our error handler field would create the
 ticket to research the failure and processing would stop after that.  This
 statement is where our idea fell flat:

 Pg 165 of 7.5 Workflow Objects Guide

 When all the If actions of the error handling filter complete
 successfully,
 *the error is considered handled*, the error information and keyword is
 cleared, and the filter in which the error occurred continues execution
 with
 the next action. If another error occurs during the execution of the
 filter,
 the error handler is executed again.

 In our initial development attempt would end up with a ticket to research
 the error and a ticket missing the required field(s) (who knew that was
 possible, they are required).  So then the though was to throw an error in
 the error handler after the research ticket push fields but then entire
 transaction rolled back and neither tickets were created just as if we
 didn't even have the EH.

 We ended up having our push fields filter still evaluate that all of the
 requirements were met in the qualification.  At the very end if the source
 record status is still New (would have been set to Processed if ticket
 was created) then we assume an error has occurred, set the status to
 Error
 and create a ticket to research.

 Another similar process on a web service integration form varies a little
 bit by throwing an error if a pre-check fails (CTI, RSD, item # not in the
 catalog).  The error handler is called and sets the status field to
 Error.  The pre-checks continue since the error was handled and
 concatenates the $ERRMSG$ and $ERRNO$ to a character field that is
 returned
 in web service.  All of the filters that do push fields do not fire if
 'Status' = Error.

 In both situations we need to figure out all of the possible points of
 failure ahead of time.  If an unexpected error is encountered then our
 error
 handling actions fall apart.

 I see value in the way it is designed but it would be nice if there was an
 option to terminate normal processing if an EH filter is called and only
 process the filters triggered by the EH.  Sometimes you want to take a
 special action due to an error but you still want a hard error that stops
 the 

Re: Active link to check field size

2011-03-15 Thread Misi Mladoniczky
Hi,

There is another way, and that is to use the like-operator:

('Field' LIKE __%)

Ten underscores means that you will match everything that is 10 characters
or over.

I guess you can fit 500 underscores in there ase well.

NOT ('Field' LIKE __%) will match 9 characters or lower.

If you do searches like this to the database, it may behave differently,
but if you do it in a FLTR/ACTL run-if-statement, it will not be affected
by the database.

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.

 Unfortunately that’s how it is designed.. Those functions are not
 available at the Run If level. Functions whose result is not a void but a
 value are used in set field / push field kind of operations..

 Only KEYWORDS can be used in Run If qualifications directly to be
 evaluated in an expression..

 Cheers

 Joe

 From: Ramey, Anne
 Sent: Monday, March 14, 2011 10:55 PM
 Newsgroups: public.remedy.arsystem.general
 To: arslist@ARSLIST.ORG
 Subject: Re: Active link to check field size

 Bummer.  I was hoping it didn’t have to be a 2 step process. Thanks



 Anne Ramey

 ***

 E-mail correspondence to and from this address may be subject to the North
 Carolina Public Records Law and may be disclosed to third parties only by
 an authorized State Official.



 From: Action Request System discussion list(ARSList)
 [mailto:arslist@ARSLIST.ORG] On Behalf Of Joe Martin D'Souza
 Sent: Monday, March 14, 2011 10:50 PM
 To: arslist@ARSLIST.ORG
 Subject: Re: Active link to check field size



 **

 Anne,



 You are close but not quite that close...You can’t use it that way in a
 qualification..



 Those functions are set field functions that can be used only in set or
 push fields actions..



 So create a temp integer field to hold the value of LENGTH(‘Field’) and
 then use that temp field in the qualification in an active link that runs
 in an order after the first active link..



 Hope this helps..



 Cheers



 Joe



 From: Ramey, Anne

 Sent: Monday, March 14, 2011 10:18 PM

 Newsgroups: public.remedy.arsystem.general

 To: arslist@ARSLIST.ORG

 Subject: Active link to check field size



 **

 I must be being dense, but I’m trying to write an active link that only
 fires if a field is more than a certain length.  Can’t figure out how to
 do that.  Know how to trim it and set the length, but not check it in the
 qualification.  I tried this

 LENGTH(‘Field’)  500

 But it didn’t like that.



 Anne Ramey

 ***

 E-mail correspondence to and from this address may be subject to the North
 Carolina Public Records Law and may be disclosed to third parties only by
 an authorized State Official.

 ___
 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


Issue Regarding RKM Search Server 5.4

2011-03-15 Thread uday kiran
Hi Team ,

I recently installed RKM on demo systems , when i installed its asking for a
key  for Search Server 5.4,, how to get that key ,

Please let me know thanks

Uday

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


Strange Error - Caught exception undefined !

2011-03-15 Thread team.rem...@libero.it
Hi All,

I got the error message Caught exception undefined: undefined - TypeError: 
Object doesn't support this property or method... AT: Undefined 
when I tried to use my browser ' Microsoft InternetExplorer 7'. However, the 
error message does not occur when I useMozilla Firefox browser.

Could someone help me out please. (please please !)
Peter

Mid Tier Version7.1.00 Patch 007 200904060530
Web Server Information  Apache Tomcat/5.5.25
Operating System Name   Windows 2003
Java Version1.6.0_23

Definition Change Check Interval(Seconds)   3600
Session Timeout (Minutes)   90

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


Re: Strange Error - Caught exception undefined !

2011-03-15 Thread Nair, Rajesh SISPL
I have seen this in my version also that 6.3
And it got foxed once I reseted the IE setting to default.
Ne ways this was just a workaround

With Best Regards

Rajesh

-Original Message-
From: Action Request System discussion list(ARSList) 
[mailto:arslist@arslist.org] On Behalf Of team.rem...@libero.it
Sent: Tuesday, March 15, 2011 4:23 PM
To: arslist@arslist.org
Subject: Strange Error - Caught exception undefined !

Hi All,

I got the error message Caught exception undefined: undefined - TypeError: 
Object doesn't support this property or method... AT: Undefined 
when I tried to use my browser ' Microsoft InternetExplorer 7'. However, the 
error message does not occur when I useMozilla Firefox browser.

Could someone help me out please. (please please !)
Peter

Mid Tier Version7.1.00 Patch 007 200904060530
Web Server Information  Apache Tomcat/5.5.25
Operating System Name   Windows 2003
Java Version1.6.0_23

Definition Change Check Interval(Seconds)   3600
Session Timeout (Minutes)   90

___
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: Issue With Midtier

2011-03-15 Thread Nair, Rajesh SISPL
I don't think that the physical location for Config file is the same which I 
see in this.

That's in the local directory which midtier is installed

With Best Regards
Rajesh Nair
Siemens IT Solutions and Services GmbH
SIS GO GAA GPC IN
HCC 247 Park, Hincon House,
Tower-A, 8-10th floor, LBS Road,
Vikhroli (West), Mumbai 400 083, INDIA
Desk   : +91 22 3937 2027
mailto:nairraj...@siemens.com

From: Action Request System discussion list(ARSList) 
[mailto:arslist@arslist.org] On Behalf Of uday kiran
Sent: Tuesday, March 15, 2011 3:42 PM
To: arslist@arslist.org
Subject: Issue With Midtier

** Hi i installed ARS 7.1 on our demo systems with o/s windows 7 everything is 
working fine ,, except midtier ,,i am using tomcat 5.5 , i am getting an error 
pasted below,, please help me out

Thanks
Uday

Error Summary
HTTP Error 404.0 - Not Found
The resource you are looking for has been removed, had its name changed, or is 
temporarily unavailable.
Detailed Error Information
Module

IIS Web Core

Notification

MapRequestHandler

Handler

StaticFile

Error Code

0x80070002

Requested URL

http://localhost:80/arsys/shared/config/config.jsp

Physical Path

C:\inetpub\wwwroot\arsys\shared\config\config.jsp

Logon Method

Anonymous

Logon User

Anonymous

Most likely causes:
* The directory or file specified does not exist on the Web server.
* The URL contains a typographical error.
* A custom filter or module, such as URLScan, restricts access to 
the file.
Things you can try:
* Create the content on the Web server.
* Review the browser URL.
* Create a tracing rule to track failed requests for this HTTP 
status code and see which module is calling SetStatus. For more information 
about creating a tracing rule for failed requests, click 
herehttp://go.microsoft.com/fwlink/?LinkID=66439.





_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


R: Re: Strange Error - Caught exception undefined !

2011-03-15 Thread team.rem...@libero.it
Hello Rajesh,
Unfortunately, this solution is not enough. I already tried to reset IE cache, 
but I've got no results.
I also changed the file ClientCore.js ... but no result!

Do you have any brilliant idea? Thanks in advance.
P.

Messaggio originale
Da: nairraj...@siemens.com
Data: 15-mar-2011 12.00
A: arslist@ARSLIST.ORG
Ogg: Re: Strange Error - Caught exception undefined !

I have seen this in my version also that 6.3
And it got foxed once I reseted the IE setting to default.
Ne ways this was just a workaround

With Best Regards

Rajesh

-Original Message-
From: Action Request System discussion list(ARSList) [mailto:arslist@arslist.
org] On Behalf Of team.rem...@libero.it
Sent: Tuesday, March 15, 2011 4:23 PM
To: arslist@arslist.org
Subject: Strange Error - Caught exception undefined !

Hi All,

I got the error message Caught exception undefined: undefined - TypeError: 
Object doesn't support this property or method... AT: Undefined 
when I tried to use my browser ' Microsoft InternetExplorer 7'. However, the 
error message does not occur when I useMozilla Firefox browser.

Could someone help me out please. (please please !)
Peter

Mid Tier Version   7.1.00 Patch 007 200904060530
Web Server Information Apache Tomcat/5.5.25
Operating System Name  Windows 2003
Java Version   1.6.0_23

Definition Change Check Interval(Seconds)  3600
Session Timeout (Minutes)  90


___
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


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


Re: Strange Error - Caught exception undefined !

2011-03-15 Thread Nair, Rajesh SISPL
Hey,
I said the IE setting in the Advance tab. Not the Cache,
Clearing the cache does not help

With Best Regards
Rajesh


-Original Message-
From: Action Request System discussion list(ARSList) 
[mailto:arslist@arslist.org] On Behalf Of team.rem...@libero.it
Sent: Tuesday, March 15, 2011 4:40 PM
To: arslist@arslist.org
Subject: R: Re: Strange Error - Caught exception undefined !

Hello Rajesh,
Unfortunately, this solution is not enough. I already tried to reset IE cache, 
but I've got no results.
I also changed the file ClientCore.js ... but no result!

Do you have any brilliant idea? Thanks in advance.
P.

Messaggio originale
Da: nairraj...@siemens.com
Data: 15-mar-2011 12.00
A: arslist@ARSLIST.ORG
Ogg: Re: Strange Error - Caught exception undefined !

I have seen this in my version also that 6.3
And it got foxed once I reseted the IE setting to default.
Ne ways this was just a workaround

With Best Regards

Rajesh

-Original Message-
From: Action Request System discussion list(ARSList) [mailto:arslist@arslist.
org] On Behalf Of team.rem...@libero.it
Sent: Tuesday, March 15, 2011 4:23 PM
To: arslist@arslist.org
Subject: Strange Error - Caught exception undefined !

Hi All,

I got the error message Caught exception undefined: undefined - TypeError: 
Object doesn't support this property or method... AT: Undefined 
when I tried to use my browser ' Microsoft InternetExplorer 7'. However, the 
error message does not occur when I useMozilla Firefox browser.

Could someone help me out please. (please please !)
Peter

Mid Tier Version   7.1.00 Patch 007 200904060530
Web Server Information Apache Tomcat/5.5.25
Operating System Name  Windows 2003
Java Version   1.6.0_23

Definition Change Check Interval(Seconds)  3600
Session Timeout (Minutes)  90


___
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


___
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


R: Re: Strange Error - Caught exception undefined !

2011-03-15 Thread team.rem...@libero.it
Hello Rajesh,
I'm sorry but I did not understand.
could you explain better your solution?

thank you very much

Messaggio originale
Da: nairraj...@siemens.com
Data: 15-mar-2011 12.29
A: arslist@ARSLIST.ORG
Ogg: Re: Strange Error - Caught exception undefined !

Hey,
I said the IE setting in the Advance tab. Not the Cache,
Clearing the cache does not help

With Best Regards
Rajesh


-Original Message-
From: Action Request System discussion list(ARSList) [mailto:arslist@arslist.
org] On Behalf Of team.rem...@libero.it
Sent: Tuesday, March 15, 2011 4:40 PM
To: arslist@arslist.org
Subject: R: Re: Strange Error - Caught exception undefined !

Hello Rajesh,
Unfortunately, this solution is not enough. I already tried to reset IE 
cache, 
but I've got no results.
I also changed the file ClientCore.js ... but no result!

Do you have any brilliant idea? Thanks in advance.
P.

Messaggio originale
Da: nairraj...@siemens.com
Data: 15-mar-2011 12.00
A: arslist@ARSLIST.ORG
Ogg: Re: Strange Error - Caught exception undefined !

I have seen this in my version also that 6.3
And it got foxed once I reseted the IE setting to default.
Ne ways this was just a workaround

With Best Regards

Rajesh

-Original Message-
From: Action Request System discussion list(ARSList) [mailto:
arslist@arslist.
org] On Behalf Of team.rem...@libero.it
Sent: Tuesday, March 15, 2011 4:23 PM
To: arslist@arslist.org
Subject: Strange Error - Caught exception undefined !

Hi All,

I got the error message Caught exception undefined: undefined - TypeError: 
Object doesn't support this property or method... AT: Undefined 
when I tried to use my browser ' Microsoft InternetExplorer 7'. However, 
the 
error message does not occur when I useMozilla Firefox browser.

Could someone help me out please. (please please !)
Peter

Mid Tier Version  7.1.00 Patch 007 200904060530
Web Server InformationApache Tomcat/5.5.25
Operating System Name Windows 2003
Java Version  1.6.0_23

Definition Change Check Interval(Seconds) 3600
Session Timeout (Minutes) 90



___
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



___
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


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


Re: Strange Error - Caught exception undefined !

2011-03-15 Thread Nair, Rajesh SISPL
Hello,
Open IE-- go to tool -- internet options -- you get a screen with tabs go to 
advance tab and over their you will get the button to reset the setting to 
default, click on that, close the session and check

Note : this has worked for me, N I treat this as a work around 

With Best Regards
Rajesh Nair
-Original Message-
From: Action Request System discussion list(ARSList) 
[mailto:arslist@arslist.org] On Behalf Of team.rem...@libero.it
Sent: Tuesday, March 15, 2011 5:32 PM
To: arslist@arslist.org
Subject: R: Re: Strange Error - Caught exception undefined !

Hello Rajesh,
I'm sorry but I did not understand.
could you explain better your solution?

thank you very much

Messaggio originale
Da: nairraj...@siemens.com
Data: 15-mar-2011 12.29
A: arslist@ARSLIST.ORG
Ogg: Re: Strange Error - Caught exception undefined !

Hey,
I said the IE setting in the Advance tab. Not the Cache,
Clearing the cache does not help

With Best Regards
Rajesh


-Original Message-
From: Action Request System discussion list(ARSList) [mailto:arslist@arslist.
org] On Behalf Of team.rem...@libero.it
Sent: Tuesday, March 15, 2011 4:40 PM
To: arslist@arslist.org
Subject: R: Re: Strange Error - Caught exception undefined !

Hello Rajesh,
Unfortunately, this solution is not enough. I already tried to reset IE 
cache, 
but I've got no results.
I also changed the file ClientCore.js ... but no result!

Do you have any brilliant idea? Thanks in advance.
P.

Messaggio originale
Da: nairraj...@siemens.com
Data: 15-mar-2011 12.00
A: arslist@ARSLIST.ORG
Ogg: Re: Strange Error - Caught exception undefined !

I have seen this in my version also that 6.3
And it got foxed once I reseted the IE setting to default.
Ne ways this was just a workaround

With Best Regards

Rajesh

-Original Message-
From: Action Request System discussion list(ARSList) [mailto:
arslist@arslist.
org] On Behalf Of team.rem...@libero.it
Sent: Tuesday, March 15, 2011 4:23 PM
To: arslist@arslist.org
Subject: Strange Error - Caught exception undefined !

Hi All,

I got the error message Caught exception undefined: undefined - TypeError: 
Object doesn't support this property or method... AT: Undefined 
when I tried to use my browser ' Microsoft InternetExplorer 7'. However, 
the 
error message does not occur when I useMozilla Firefox browser.

Could someone help me out please. (please please !)
Peter

Mid Tier Version  7.1.00 Patch 007 200904060530
Web Server InformationApache Tomcat/5.5.25
Operating System Name Windows 2003
Java Version  1.6.0_23

Definition Change Check Interval(Seconds) 3600
Session Timeout (Minutes) 90



___
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



___
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


___
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


Change Management 7.3 Hang and gives a white pages when open the Change Mgmt Consoul

2011-03-15 Thread Ramy S. Ayoub
Dears,

we are facing very slow performance in Remedy Change Management to
view the assigned changes from Change Management Console. Users cannot
open the change management console; it hangs and gives a white page
and times out or opens after very long period of time.

ARS 7.1
ITSM 7.3
OS : Windows 2003
SQL : 2005

Best Regards,
Ramy Ayoub

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


Re: Change Management 7.3 Hang and gives a white pages when open the Change Mgmt Consoul

2011-03-15 Thread Chowdhury, Tauf
Is this on the mid tier or the WUT??
If on the mid tier, you may need to clear the cache.
If on the WUT, you could navigate to the home directory, and find the
folder that contains the form cache data for the Change Management
Console and delete it on a test machine.

(I'm assuming it's the mid tier though).

Tauf Chowdhury | Forest Laboratories, Inc.
Analyst, Service Management
Mobile:646.483.2779
 
-Original Message-
From: Action Request System discussion list(ARSList)
[mailto:arslist@ARSLIST.ORG] On Behalf Of Ramy S. Ayoub
Sent: Tuesday, March 15, 2011 8:44 AM
To: arslist@ARSLIST.ORG
Subject: Change Management 7.3 Hang and gives a white pages when open
the Change Mgmt Consoul

Dears,

we are facing very slow performance in Remedy Change Management to
view the assigned changes from Change Management Console. Users cannot
open the change management console; it hangs and gives a white page
and times out or opens after very long period of time.

ARS 7.1
ITSM 7.3
OS : Windows 2003
SQL : 2005

Best Regards,
Ramy Ayoub


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

**
This e-mail and its attachments may contain Forest Laboratories, Inc. 
proprietary information that is privileged, confidential or subject to 
copyright belonging to Forest Laboratories, Inc. This e-mail is intended solely 
for the use of the individual or entity to which it is addressed. If you are 
not the intended recipient of this e-mail, or the employee or agent responsible 
for delivering this e-mail to the intended recipient, you are hereby notified 
that any dissemination, distribution, copying or action taken in relation to 
the contents of and attachments to this e-mail is strictly prohibited and may 
be unlawful. If you have received this e-mail in error, please notify the 
sender immediately and permanently delete the original and any copy of this 
e-mail and any printout.

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


Re: Change Management 7.3 Hang and gives a white pages when open the Change Mgmt Consoul

2011-03-15 Thread Ramy S. Ayoub
**

the issue with User Tools not the Mid-Tier at all however i already
clean the Home Directory to one of the users and set the correct one
however issue still..

any suggestion !

On 3/15/11, Chowdhury, Tauf tauf.chowdh...@frx.com wrote:
 Is this on the mid tier or the WUT??
 If on the mid tier, you may need to clear the cache.
 If on the WUT, you could navigate to the home directory, and find the
 folder that contains the form cache data for the Change Management
 Console and delete it on a test machine.

 (I'm assuming it's the mid tier though).

 Tauf Chowdhury | Forest Laboratories, Inc.
 Analyst, Service Management
 Mobile:646.483.2779

 -Original Message-
 From: Action Request System discussion list(ARSList)
 [mailto:arslist@ARSLIST.ORG] On Behalf Of Ramy S. Ayoub
 Sent: Tuesday, March 15, 2011 8:44 AM
 To: arslist@ARSLIST.ORG
 Subject: Change Management 7.3 Hang and gives a white pages when open
 the Change Mgmt Consoul

 Dears,

 we are facing very slow performance in Remedy Change Management to
 view the assigned changes from Change Management Console. Users cannot
 open the change management console; it hangs and gives a white page
 and times out or opens after very long period of time.

 ARS 7.1
 ITSM 7.3
 OS : Windows 2003
 SQL : 2005

 Best Regards,
 Ramy Ayoub

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

 **
 This e-mail and its attachments may contain Forest Laboratories, Inc.
 proprietary information that is privileged, confidential or subject to
 copyright belonging to Forest Laboratories, Inc. This e-mail is intended
 solely for the use of the individual or entity to which it is addressed. If
 you are not the intended recipient of this e-mail, or the employee or agent
 responsible for delivering this e-mail to the intended recipient, you are
 hereby notified that any dissemination, distribution, copying or action
 taken in relation to the contents of and attachments to this e-mail is
 strictly prohibited and may be unlawful. If you have received this e-mail in
 error, please notify the sender immediately and permanently delete the
 original and any copy of this e-mail and any printout.

 ___
 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: Issue Regarding RKM Search Server 5.4

2011-03-15 Thread Alan Blake
From the EPD (electronic products download) on bmc.com
Alan BlakeKnowlysis

--- On Tue, 3/15/11, uday kiran uday.rem...@gmail.com wrote:

From: uday kiran uday.rem...@gmail.com
Subject: Issue Regarding RKM Search Server 5.4
To: arslist@ARSLIST.ORG
Date: Tuesday, March 15, 2011, 4:16 AM

**
Hi Team , 
I recently installed RKM on demo systems , when i installed its asking for a 
key  for Search Server 5.4,, how to get that key ,
Please let me know thanks 

Uday
_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

Crystal Report for MTTR

2011-03-15 Thread Carin Grobler
Hi,

I'm in dire need of a Crystal report that shows the MTTR (mean time to
respond/ repair for incidents)
 ITSM 7.1

Thank you

Carin

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


Re: Crystal Report for MTTR

2011-03-15 Thread Chowdhury, Tauf
Do you need the actual report or what fields to use for MTTR?

 

If you need to find MTTR, what we use is LAST_RESOLVED_DATE - INCIDENT
REPORTED DATE

 

Tauf Chowdhury | Forest Laboratories, Inc.

Analyst, Service Management

Mobile:646.483.2779

 



From: Action Request System discussion list(ARSList)
[mailto:arslist@ARSLIST.ORG] On Behalf Of Carin Grobler
Sent: Tuesday, March 15, 2011 10:25 AM
To: arslist@ARSLIST.ORG
Subject: Crystal Report for MTTR

 

** Hi, 

I'm in dire need of a Crystal report that shows the MTTR (mean time to
respond/ repair for incidents)
 ITSM 7.1 

Thank you

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

**
This e-mail and its attachments may contain Forest Laboratories, Inc. 
proprietary information that is privileged, confidential or subject to 
copyright belonging to Forest Laboratories, Inc. This e-mail is intended solely 
for the use of the individual or entity to which it is addressed. If you are 
not the intended recipient of this e-mail, or the employee or agent responsible 
for delivering this e-mail to the intended recipient, you are hereby notified 
that any dissemination, distribution, copying or action taken in relation to 
the contents of and attachments to this e-mail is strictly prohibited and may 
be unlawful. If you have received this e-mail in error, please notify the 
sender immediately and permanently delete the original and any copy of this 
e-mail and any printout.

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


Re: Crystal Report for MTTR

2011-03-15 Thread Carin Grobler
Hi,

I need an actual report - right now we are downloading the fields from the
SLM:Measurement form - this gives us the business hrs and the time spend in
pending for a more accurate measurement.
however - i was hoping that there would be an OOTB report for this but alas
no joy

C

On Tue, MaHi,r 15, 2011 at 9:37 AM, Chowdhury, Tauf
tauf.chowdh...@frx.comwrote:

 **

 Do you need the actual report or what fields to use for MTTR?



 If you need to find MTTR, what we use is LAST_RESOLVED_DATE – INCIDENT
 REPORTED DATE



 *T**auf** **C**howdhury** **|** **F**orest** **L**aboratories**, **I**nc.*
 **

 Analyst, Service Management

 Mobile:646.483.2779


   --

 *From:* Action Request System discussion list(ARSList) [mailto:
 arslist@ARSLIST.ORG] *On Behalf Of *Carin Grobler
 *Sent:* Tuesday, March 15, 2011 10:25 AM
 *To:* arslist@ARSLIST.ORG
 *Subject:* Crystal Report for MTTR



 ** Hi,

 I'm in dire need of a Crystal report that shows the MTTR (mean time to
 respond/ repair for incidents)
  ITSM 7.1

 Thank you

 Carin
 _attend WWRUG11 www.wwrug.com ARSlist: Where the Answers Are_
  --
 This e-mail and its attachments may contain Forest Laboratories, Inc.
 proprietary information that is privileged, confidential or subject to
 copyright belonging to Forest Laboratories, Inc. This e-mail is intended
 solely for the use of the individual or entity to which it is addressed. If
 you are not the intended recipient of this e-mail, or the employee or agent
 responsible for delivering this e-mail to the intended recipient, you are
 hereby notified that any dissemination, distribution, copying or action
 taken in relation to the contents of and attachments to this e-mail is
 strictly prohibited and may be unlawful. If you have received this e-mail in
 error, please notify the sender immediately and permanently delete the
 original and any copy of this e-mail and any printout.
  _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: Urgent : Memory allocation to ARS process

2011-03-15 Thread Axton
These will increase the memory footprint.

Add more concurrent users.
Add more threads.
Increase the size of the Remedy workflow/data dictionary.

do you just want it to use more memory for the sake of using more memory?

On Mon, Mar 14, 2011 at 7:06 AM, Manish SINGLA manish.sin...@st.com wrote:

 **

 Hello List,



 I find 2GB as standard memory allocation to ARS process, could you please
 suggest how to increase this memory allocation.



 Regards

 Manish
 _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: Config defaults changed on server in 7.6.04

2011-03-15 Thread Guillaume Rheault
Hi Misi,

Could it be that only specific forms have the Next Request ID Block Size set?

Guillaume


From: Action Request System discussion list(ARSList) [arslist@ARSLIST.ORG] on 
behalf of Misi Mladoniczky [m...@rrr.se]
Sent: Tuesday, February 22, 2011 6:11 AM
To: arslist@ARSLIST.ORG
Subject: Config defaults changed on server in 7.6.04

Hi,

I am seeing arschema.nextId committed on failed transactions and nextId
jumping in steps of 25 on my upgraded 7.6.04 server.

This would be OK if I had the following options set in ar.conf/cfg, but
they are not in my config file:

Next-ID-Commit:T
Next-ID-Block-Size:25

This is what the log shows, do you see the same thing as I do?
http://rrr.se/tmp/rrrLog764nextId.html

This did not happen in version 7.6.03, so the default behaviour has
apparently changed!

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.

___
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


R: Re: Strange Error - Caught exception undefined !

2011-03-15 Thread team.rem...@libero.it
Hi,
my error it's the same that is describes on Knowledge Article ID: KA328684.
I tried to modify... but no result!

This is other Info (Log Informations):

Webpage error details
 
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; 
Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; 
Media Center PC 6.0; InfoPath.2; MS-RTC LM 8; .NET4.0C; managedpc)
Timestamp: Tue, 15 Mar 2011 10:04:30 UTC
 
 
Message: 'FocusMgr' is null or not an object
Line: 2606
Char: 1
Code: 0

what you think about this thing ?
Regards
P.
 

Messaggio originale
Da: nairraj...@siemens.com
Data: 15-mar-2011 13.25
A: arslist@ARSLIST.ORG
Ogg: Re: Strange Error - Caught exception undefined !

Hello,
Open IE-- go to tool -- internet options -- you get a screen with tabs go 
to advance tab and over their you will get the button to reset the setting to 
default, click on that, close the session and check

Note : this has worked for me, N I treat this as a work around 

With Best Regards
Rajesh Nair
-Original Message-
From: Action Request System discussion list(ARSList) [mailto:arslist@arslist.
org] On Behalf Of team.rem...@libero.it
Sent: Tuesday, March 15, 2011 5:32 PM
To: arslist@arslist.org
Subject: R: Re: Strange Error - Caught exception undefined !

Hello Rajesh,
I'm sorry but I did not understand.
could you explain better your solution?

thank you very much

Messaggio originale
Da: nairraj...@siemens.com
Data: 15-mar-2011 12.29
A: arslist@ARSLIST.ORG
Ogg: Re: Strange Error - Caught exception undefined !

Hey,
I said the IE setting in the Advance tab. Not the Cache,
Clearing the cache does not help

With Best Regards
Rajesh


-Original Message-
From: Action Request System discussion list(ARSList) [mailto:
arslist@arslist.
org] On Behalf Of team.rem...@libero.it
Sent: Tuesday, March 15, 2011 4:40 PM
To: arslist@arslist.org
Subject: R: Re: Strange Error - Caught exception undefined !

Hello Rajesh,
Unfortunately, this solution is not enough. I already tried to reset IE 
cache, 
but I've got no results.
I also changed the file ClientCore.js ... but no result!

Do you have any brilliant idea? Thanks in advance.
P.

Messaggio originale
Da: nairraj...@siemens.com
Data: 15-mar-2011 12.00
A: arslist@ARSLIST.ORG
Ogg: Re: Strange Error - Caught exception undefined !

I have seen this in my version also that 6.3
And it got foxed once I reseted the IE setting to default.
Ne ways this was just a workaround

With Best Regards

Rajesh

-Original Message-
From: Action Request System discussion list(ARSList) [mailto:
arslist@arslist.
org] On Behalf Of team.rem...@libero.it
Sent: Tuesday, March 15, 2011 4:23 PM
To: arslist@arslist.org
Subject: Strange Error - Caught exception undefined !

Hi All,

I got the error message Caught exception undefined: undefined - 
TypeError: 
Object doesn't support this property or method... AT: Undefined 
when I tried to use my browser ' Microsoft InternetExplorer 7'. However, 
the 
error message does not occur when I useMozilla Firefox browser.

Could someone help me out please. (please please !)
Peter

Mid Tier Version 7.1.00 Patch 007 200904060530
Web Server Information   Apache Tomcat/5.5.25
Operating System NameWindows 2003
Java Version 1.6.0_23

Definition Change Check Interval(Seconds)3600
Session Timeout (Minutes)90




___
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




___
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



___
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


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


Re: Config defaults changed on server in 7.6.04

2011-03-15 Thread strauss
All of the fresh installs of 7.6.04 that I have done, and some of the upgrades, 
have set the Next Request ID Block Size default value to 25.  I have always run 
100 during installs and 10 in production, and I agree that the setting of 25 is 
something new in 7.6.04.  I did NOT see it in 7.6.03 or earlier.

Christopher Strauss, Ph.D.
Call Tracking Administration Manager
University of North Texas Computing  IT Center
http://itsm.unt.edu/

-Original Message-
From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of Guillaume Rheault
Sent: Tuesday, March 15, 2011 10:30 AM
To: arslist@ARSLIST.ORG
Subject: Re: Config defaults changed on server in 7.6.04

Hi Misi,

Could it be that only specific forms have the Next Request ID Block Size set?

Guillaume


From: Action Request System discussion list(ARSList) [arslist@ARSLIST.ORG] on 
behalf of Misi Mladoniczky [m...@rrr.se]
Sent: Tuesday, February 22, 2011 6:11 AM
To: arslist@ARSLIST.ORG
Subject: Config defaults changed on server in 7.6.04

Hi,

I am seeing arschema.nextId committed on failed transactions and nextId
jumping in steps of 25 on my upgraded 7.6.04 server.

This would be OK if I had the following options set in ar.conf/cfg, but
they are not in my config file:

Next-ID-Commit:T
Next-ID-Block-Size:25

This is what the log shows, do you see the same thing as I do?
http://rrr.se/tmp/rrrLog764nextId.html

This did not happen in version 7.6.03, so the default behaviour has
apparently changed!

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.

___
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

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


7.6.4 in NON ITSM environment

2011-03-15 Thread LJ LongWing
I just installed 7.6.4 Dev Studio yesterday and am already annoyed with it.

Is anyone doing custom development anymore?  Upon launch I couldn't do
ANYTHING to ANYTHINGturns out I was in 'best practice mode'switching
out of this let me start working with the system, but any time I create a
field it warns me 'this field isn't in the reserved range'.I'M NOT USING
ITSM!!...I don't want to use overlays, I don't care about their ID ranges,
etc.anyone aware of how to turn this ITSM Warning stuff off so I can
just go back to developing in my tool?

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


Re: Issue Regarding RKM Search Server 5.4

2011-03-15 Thread uday kiran
Thanks i got the key ,,

On Tue, Mar 15, 2011 at 7:13 PM, Alan Blake alan_knowly...@yahoo.comwrote:

 ** From the EPD (electronic products download) on bmc.com

 Alan Blake
 Knowlysis

 --- On *Tue, 3/15/11, uday kiran uday.rem...@gmail.com* wrote:


 From: uday kiran uday.rem...@gmail.com
 Subject: Issue Regarding RKM Search Server 5.4
 To: arslist@ARSLIST.ORG
 Date: Tuesday, March 15, 2011, 4:16 AM

 ** Hi Team ,

 I recently installed RKM on demo systems , when i installed its asking for
 a key  for Search Server 5.4,, how to get that key ,

 Please let me know thanks

 Uday
 _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


CSV file via workflow

2011-03-15 Thread Mike Ilmer
Hi List.

Do you know if it is possible to generate the .CSV file with the data
from the remedy form using the only remedy workflow (like filters or
escalator).

I know that I can do this using C, java, Perl, etc. 
However may be someone has an idea how (automatically) extract data and
store it in the .csv file without using an external application.

Regards,
Mike

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


Re: Config defaults changed on server in 7.6.04

2011-03-15 Thread strauss
Correction, looking at my notes from NEW 7.6.03 installs, it looks like I did 
see it there late last year.  For what it's worth...

Christopher Strauss, Ph.D.
Call Tracking Administration Manager
University of North Texas Computing  IT Center
http://itsm.unt.edu/

-Original Message-
From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of strauss
Sent: Tuesday, March 15, 2011 10:43 AM
To: arslist@ARSLIST.ORG
Subject: Re: Config defaults changed on server in 7.6.04

All of the fresh installs of 7.6.04 that I have done, and some of the upgrades, 
have set the Next Request ID Block Size default value to 25.  I have always run 
100 during installs and 10 in production, and I agree that the setting of 25 is 
something new in 7.6.04.  I did NOT see it in 7.6.03 or earlier.

Christopher Strauss, Ph.D.
Call Tracking Administration Manager
University of North Texas Computing  IT Center
http://itsm.unt.edu/

-Original Message-
From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of Guillaume Rheault
Sent: Tuesday, March 15, 2011 10:30 AM
To: arslist@ARSLIST.ORG
Subject: Re: Config defaults changed on server in 7.6.04

Hi Misi,

Could it be that only specific forms have the Next Request ID Block Size set?

Guillaume


From: Action Request System discussion list(ARSList) [arslist@ARSLIST.ORG] on 
behalf of Misi Mladoniczky [m...@rrr.se]
Sent: Tuesday, February 22, 2011 6:11 AM
To: arslist@ARSLIST.ORG
Subject: Config defaults changed on server in 7.6.04

Hi,

I am seeing arschema.nextId committed on failed transactions and nextId
jumping in steps of 25 on my upgraded 7.6.04 server.

This would be OK if I had the following options set in ar.conf/cfg, but
they are not in my config file:

Next-ID-Commit:T
Next-ID-Block-Size:25

This is what the log shows, do you see the same thing as I do?
http://rrr.se/tmp/rrrLog764nextId.html

This did not happen in version 7.6.03, so the default behaviour has
apparently changed!

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.

___
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

___
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: Issue Regarding RKM Search Server 5.4

2011-03-15 Thread Easter, David
If you're doing demos, I would recommend that you demo RKM 7.6.04 which no 
longer requires the Search Server 5.4, is a native AR System application, and 
creates a richer integration with other BMC provided products like the ITSM 
Suite.

That you're asking for a Search Server 5.4 key means you're loading RKM 7.2.00 
which was released back on 19-Dec-2007.

-David J. Easter
Manager of Product Management, Remedy Platform
BMC Software, Inc.

The opinions, statements, and/or suggested courses of action expressed in this 
E-mail do not necessarily reflect those of BMC Software, Inc.  My voluntary 
participation in this forum is not intended to convey a role as a spokesperson, 
liaison or public relations representative for BMC Software, Inc.

From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of uday kiran
Sent: Tuesday, March 15, 2011 03:17 AM
To: arslist@ARSLIST.ORG
Subject: Issue Regarding RKM Search Server 5.4

** Hi Team ,

I recently installed RKM on demo systems , when i installed its asking for a 
key  for Search Server 5.4,, how to get that key ,

Please let me know thanks

Uday
_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: CSV file via workflow

2011-03-15 Thread kimberly.sant...@oracle.com santana

Mike
I create a csv file using Active Link Run Process.  In my example I 
create the file then I loop through a table to append values to the file.


First step -  set a temp field with values needed for column headings 
(row 1 in the csv file)
example: set 'bl tmp bl file text' = Sequence,Method,RelPath and 
FileName,DB_Prefix



Next - use a run process to create the .csv file (client side)
example:  cmd /c echo $bl tmp bl file text$c:\Filename.csv 
(notice you can pass the above field value to the .csv file)


Finally
I use an al guide and loop a table

1. : set a temp field with values from the table and commas
   example:  set 'bl tmp bl file text' =  $col_bl_segment$ 
+  ,) + $col_bl_method$) +  ,) + $col_bl_filename$) +   ,) +


  2.  - use a run process to append the existing csv file

loop the table till there are no more entries


I hope this makes some sense. Feel free to contact me direct if this is 
unclear


Kimberly Santana
SR Programmer Analyst
Oracle





On 3/15/2011 1:34 PM, Mike Ilmer wrote:

Hi List.

Do you know if it is possible to generate the .CSV file with the data
from the remedy form using the only remedy workflow (like filters or
escalator).

I know that I can do this using C, java, Perl, etc.
However may be someone has an idea how (automatically) extract data and
store it in the .csv file without using an external application.

Regards,
Mike

___
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: CSV file via workflow

2011-03-15 Thread Mike Ilmer
Thank you, Kimberly, it is quite interesting solution.

Regards,
Mike 

-Original Message-
From: kimberly.sant...@oracle.com santana
[mailto:kimberly.sant...@oracle.com] 
Sent: Tuesday, March 15, 2011 2:16 PM
To: arslist@ARSLIST.ORG
Cc: Ilmer, Mike
Subject: Re: CSV file via workflow

Mike
I create a csv file using Active Link Run Process.  In my example I
create the file then I loop through a table to append values to the
file.

First step -  set a temp field with values needed for column headings
(row 1 in the csv file)
 example: set 'bl tmp bl file text' = Sequence,Method,RelPath and
FileName,DB_Prefix


Next - use a run process to create the .csv file (client side)
 example:  cmd /c echo $bl tmp bl file text$c:\Filename.csv 
(notice you can pass the above field value to the .csv file)

Finally
I use an al guide and loop a table

 1. : set a temp field with values from the table and commas
example:  set 'bl tmp bl file text' =  $col_bl_segment$ 
+  ,) + $col_bl_method$) +  ,) + $col_bl_filename$) +   ,)
+

   2.  - use a run process to append the existing csv file

 loop the table till there are no more entries


I hope this makes some sense. Feel free to contact me direct if this is
unclear

Kimberly Santana
SR Programmer Analyst
Oracle





On 3/15/2011 1:34 PM, Mike Ilmer wrote:
 Hi List.

 Do you know if it is possible to generate the .CSV file with the data 
 from the remedy form using the only remedy workflow (like filters or 
 escalator).

 I know that I can do this using C, java, Perl, etc.
 However may be someone has an idea how (automatically) extract data 
 and store it in the .csv file without using an external application.

 Regards,
 Mike

 __
 _ 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: CSV file via workflow

2011-03-15 Thread kimberly.sant...@oracle.com santana
I love it. it works awesome.  we even go as far adding that file as an 
attachment to the ticket.


One thing I forgot to warn about is make sure you use  to append to 
the existing file. ( will overwrite)


cmd /c echo $bl tmp bl file text$c:\Filename.csv


Good Luck

Kimberly Santana
SR Programmer Analyst
Oracle



On 3/15/2011 2:40 PM, Mike Ilmer wrote:

Thank you, Kimberly, it is quite interesting solution.

Regards,
Mike

-Original Message-
From: kimberly.sant...@oracle.com santana
[mailto:kimberly.sant...@oracle.com]
Sent: Tuesday, March 15, 2011 2:16 PM
To: arslist@ARSLIST.ORG
Cc: Ilmer, Mike
Subject: Re: CSV file via workflow

Mike
I create a csv file using Active Link Run Process.  In my example I
create the file then I loop through a table to append values to the
file.

First step -  set a temp field with values needed for column headings
(row 1 in the csv file)
  example: set 'bl tmp bl file text' = Sequence,Method,RelPath and
FileName,DB_Prefix


Next - use a run process to create the .csv file (client side)
  example:  cmd /c echo $bl tmp bl file text$c:\Filename.csv
(notice you can pass the above field value to the .csv file)

Finally
I use an al guide and loop a table

  1. : set a temp field with values from the table and commas
 example:  set 'bl tmp bl file text' =  $col_bl_segment$
+  ,) + $col_bl_method$) +  ,) + $col_bl_filename$) +   ,)
+

2.  - use a run process to append the existing csv file

  loop the table till there are no more entries


I hope this makes some sense. Feel free to contact me direct if this is
unclear

Kimberly Santana
SR Programmer Analyst
Oracle





On 3/15/2011 1:34 PM, Mike Ilmer wrote:

Hi List.

Do you know if it is possible to generate the .CSV file with the data
from the remedy form using the only remedy workflow (like filters or
escalator).

I know that I can do this using C, java, Perl, etc.
However may be someone has an idea how (automatically) extract data
and store it in the .csv file without using an external application.

Regards,
Mike

__
_ 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


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


Re: CSV file via workflow

2011-03-15 Thread LJ LongWing
Be wary of this solutionany content within a specific field (, for
example) will cause this process to puke.

-Original Message-
From: Action Request System discussion list(ARSList)
[mailto:arslist@ARSLIST.ORG] On Behalf Of kimberly.sant...@oracle.com
santana
Sent: Tuesday, March 15, 2011 12:51 PM
To: arslist@ARSLIST.ORG
Subject: Re: CSV file via workflow

I love it. it works awesome.  we even go as far adding that file as an 
attachment to the ticket.

One thing I forgot to warn about is make sure you use  to append to 
the existing file. ( will overwrite)

cmd /c echo $bl tmp bl file text$c:\Filename.csv


Good Luck

Kimberly Santana
SR Programmer Analyst
Oracle



On 3/15/2011 2:40 PM, Mike Ilmer wrote:
 Thank you, Kimberly, it is quite interesting solution.

 Regards,
 Mike

 -Original Message-
 From: kimberly.sant...@oracle.com santana
 [mailto:kimberly.sant...@oracle.com]
 Sent: Tuesday, March 15, 2011 2:16 PM
 To: arslist@ARSLIST.ORG
 Cc: Ilmer, Mike
 Subject: Re: CSV file via workflow

 Mike
 I create a csv file using Active Link Run Process.  In my example I
 create the file then I loop through a table to append values to the
 file.

 First step -  set a temp field with values needed for column headings
 (row 1 in the csv file)
   example: set 'bl tmp bl file text' = Sequence,Method,RelPath and
 FileName,DB_Prefix


 Next - use a run process to create the .csv file (client side)
   example:  cmd /c echo $bl tmp bl file text$c:\Filename.csv
 (notice you can pass the above field value to the .csv file)

 Finally
 I use an al guide and loop a table

   1. : set a temp field with values from the table and commas
  example:  set 'bl tmp bl file text' =  $col_bl_segment$
 +  ,) + $col_bl_method$) +  ,) + $col_bl_filename$) +   ,)
 +

 2.  - use a run process to append the existing csv file

   loop the table till there are no more entries


 I hope this makes some sense. Feel free to contact me direct if this is
 unclear

 Kimberly Santana
 SR Programmer Analyst
 Oracle





 On 3/15/2011 1:34 PM, Mike Ilmer wrote:
 Hi List.

 Do you know if it is possible to generate the .CSV file with the data
 from the remedy form using the only remedy workflow (like filters or
 escalator).

 I know that I can do this using C, java, Perl, etc.
 However may be someone has an idea how (automatically) extract data
 and store it in the .csv file without using an external application.

 Regards,
 Mike

 __
 _ 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


___
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: CSV file via workflow

2011-03-15 Thread Rune Sorlid
Hi

The standard Active Link Open Window action(Report) and use a standard
remedy report, and specify in a field where to send the report( to-file:
c:\temp\filename.csv)

/Rune Sorlid



2011/3/15 kimberly.sant...@oracle.com santana kimberly.sant...@oracle.com

 I love it. it works awesome.  we even go as far adding that file as an
 attachment to the ticket.

 One thing I forgot to warn about is make sure you use  to append to the
 existing file. ( will overwrite)

 cmd /c echo $bl tmp bl file text$c:\Filename.csv


 Good Luck

 Kimberly Santana
 SR Programmer Analyst
 Oracle



 On 3/15/2011 2:40 PM, Mike Ilmer wrote:

 Thank you, Kimberly, it is quite interesting solution.

 Regards,
 Mike

 -Original Message-
 From: kimberly.sant...@oracle.com santana
 [mailto:kimberly.sant...@oracle.com]
 Sent: Tuesday, March 15, 2011 2:16 PM
 To: arslist@ARSLIST.ORG
 Cc: Ilmer, Mike
 Subject: Re: CSV file via workflow

 Mike
 I create a csv file using Active Link Run Process.  In my example I
 create the file then I loop through a table to append values to the
 file.

 First step -  set a temp field with values needed for column headings
 (row 1 in the csv file)
  example: set 'bl tmp bl file text' = Sequence,Method,RelPath and
 FileName,DB_Prefix


 Next - use a run process to create the .csv file (client side)
  example:  cmd /c echo $bl tmp bl file text$c:\Filename.csv
 (notice you can pass the above field value to the .csv file)

 Finally
 I use an al guide and loop a table

  1. : set a temp field with values from the table and commas
 example:  set 'bl tmp bl file text' =  $col_bl_segment$
 +  ,) + $col_bl_method$) +  ,) + $col_bl_filename$) +   ,)
 +

2.  - use a run process to append the existing csv file

  loop the table till there are no more entries


 I hope this makes some sense. Feel free to contact me direct if this is
 unclear

 Kimberly Santana
 SR Programmer Analyst
 Oracle





 On 3/15/2011 1:34 PM, Mike Ilmer wrote:

 Hi List.

 Do you know if it is possible to generate the .CSV file with the data
 from the remedy form using the only remedy workflow (like filters or
 escalator).

 I know that I can do this using C, java, Perl, etc.
 However may be someone has an idea how (automatically) extract data
 and store it in the .csv file without using an external application.

 Regards,
 Mike

 __
 _ 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



 ___
 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: Config defaults changed on server in 7.6.04

2011-03-15 Thread Misi Mladoniczky
Hi,

There were no lines in ar.cfg, but the behavior is equivalent to this:
Next-ID-Commit:T
Next-ID-Block-Size:25

To get the old behavior i needed to set this:
Next-ID-Commit:F
Next-ID-Block-Size:1

I did a fresh install of AR 7.6.03 and then upgraded this to 7.6.04.

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

 Correction, looking at my notes from NEW 7.6.03 installs, it looks like I
 did see it there late last year.  For what it's worth...

 Christopher Strauss, Ph.D.
 Call Tracking Administration Manager
 University of North Texas Computing  IT Center
 http://itsm.unt.edu/

 -Original Message-
 From: Action Request System discussion list(ARSList)
 [mailto:arslist@ARSLIST.ORG] On Behalf Of strauss
 Sent: Tuesday, March 15, 2011 10:43 AM
 To: arslist@ARSLIST.ORG
 Subject: Re: Config defaults changed on server in 7.6.04

 All of the fresh installs of 7.6.04 that I have done, and some of the
 upgrades, have set the Next Request ID Block Size default value to 25.  I
 have always run 100 during installs and 10 in production, and I agree that
 the setting of 25 is something new in 7.6.04.  I did NOT see it in 7.6.03
 or earlier.

 Christopher Strauss, Ph.D.
 Call Tracking Administration Manager
 University of North Texas Computing  IT Center
 http://itsm.unt.edu/

 -Original Message-
 From: Action Request System discussion list(ARSList)
 [mailto:arslist@ARSLIST.ORG] On Behalf Of Guillaume Rheault
 Sent: Tuesday, March 15, 2011 10:30 AM
 To: arslist@ARSLIST.ORG
 Subject: Re: Config defaults changed on server in 7.6.04

 Hi Misi,

 Could it be that only specific forms have the Next Request ID Block Size
 set?

 Guillaume

 
 From: Action Request System discussion list(ARSList) [arslist@ARSLIST.ORG]
 on behalf of Misi Mladoniczky [m...@rrr.se]
 Sent: Tuesday, February 22, 2011 6:11 AM
 To: arslist@ARSLIST.ORG
 Subject: Config defaults changed on server in 7.6.04

 Hi,

 I am seeing arschema.nextId committed on failed transactions and nextId
 jumping in steps of 25 on my upgraded 7.6.04 server.

 This would be OK if I had the following options set in ar.conf/cfg, but
 they are not in my config file:

 Next-ID-Commit:T
 Next-ID-Block-Size:25

 This is what the log shows, do you see the same thing as I do?
 http://rrr.se/tmp/rrrLog764nextId.html

 This did not happen in version 7.6.03, so the default behaviour has
 apparently changed!

 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.

 ___
 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

 ___
 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


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


Re: CSV file via workflow

2011-03-15 Thread Mike Ilmer
Thanks to all!
 
I'm really like the Kimberly's solution.
 
No Reports, no external applications required.
 
I've setup the filter guide to do the table walk on the server, setup
the escalator to run at certain time and it works like a charm!
 
Thanks to everyone for ideas.
 
Mike
 


From: Action Request System discussion list(ARSList)
[mailto:arslist@ARSLIST.ORG] On Behalf Of Rune Sorlid
Sent: Tuesday, March 15, 2011 3:09 PM
To: arslist@ARSLIST.ORG
Subject: Re: CSV file via workflow


** 
Hi
 
The standard Active Link Open Window action(Report) and use a standard
remedy report, and specify in a field where to send the report(
to-file: c:\temp\filename.csv)
 
/Rune Sorlid


 
2011/3/15 kimberly.sant...@oracle.com santana
kimberly.sant...@oracle.com


I love it. it works awesome.  we even go as far adding that file
as an attachment to the ticket.

One thing I forgot to warn about is make sure you use  to
append to the existing file. ( will overwrite)

cmd /c echo $bl tmp bl file text$c:\Filename.csv


Good Luck

Kimberly Santana
SR Programmer Analyst
Oracle



On 3/15/2011 2:40 PM, Mike Ilmer wrote:


Thank you, Kimberly, it is quite interesting solution.

Regards,
Mike

-Original Message-
From: kimberly.sant...@oracle.com santana
[mailto:kimberly.sant...@oracle.com]
Sent: Tuesday, March 15, 2011 2:16 PM
To: arslist@ARSLIST.ORG
Cc: Ilmer, Mike
Subject: Re: CSV file via workflow

Mike
I create a csv file using Active Link Run Process.  In
my example I
create the file then I loop through a table to append
values to the
file.

First step -  set a temp field with values needed for
column headings
(row 1 in the csv file)
 example: set 'bl tmp bl file text' =
Sequence,Method,RelPath and
FileName,DB_Prefix


Next - use a run process to create the .csv file (client
side)
 example:  cmd /c echo $bl tmp bl file
text$c:\Filename.csv
(notice you can pass the above field value to the .csv
file)

Finally
I use an al guide and loop a table

 1. : set a temp field with values from the table
and commas
example:  set 'bl tmp bl file text' =
$col_bl_segment$
+  ,) + $col_bl_method$) +  ,) + $col_bl_filename$)
+   ,)
+

   2.  - use a run process to append the existing csv
file

 loop the table till there are no more entries


I hope this makes some sense. Feel free to contact me
direct if this is
unclear

Kimberly Santana
SR Programmer Analyst
Oracle





On 3/15/2011 1:34 PM, Mike Ilmer wrote:


Hi List.

Do you know if it is possible to generate the
.CSV file with the data
from the remedy form using the only remedy
workflow (like filters or
escalator).

I know that I can do this using C, java, Perl,
etc.
However may be someone has an idea how
(automatically) extract data
and store it in the .csv file without using an
external application.

Regards,
Mike


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




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





___
UNSUBSCRIBE or access ARSlist Archives at www.arslist.org

SSI 7.6.04 64 bit vs 32 bit questions

2011-03-15 Thread Martinez, Marcelo A
Just installed the Suite Stack Installer on Win2008/SQL2008. Installation took 
around 1 hour.

Is it normal to see the following processes running in 32 bit mode?
APSVCAE.EXE
ARMONITOR.EXE
ARPLUGIN.EXE
ARSIGNALD.EXE
ARSNMPD.EXE
ARSVCDSP.EXE
PORTMAP.EXE
SLMBRSVC.EXE
SLMCOLLSVC.EXE

The only processes running in 64 bit are:
ARCMDB.EXE
AREMAILD.EXE
ARFLASHD.EXE
ARRECOND.EXE
ARSERVER.EXE

I installed JDK 6.24 64 bit
I installed JRE 6.24 64 bit
I installed JRE 6.24 32 bit (because, as I understood, you need this version to 
run the email engine).

Shouldn't all the other processes run in 64 bit mode?

Thanks,
Marcelo

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


OT: Email with Subject of Good Day

2011-03-15 Thread Shellman, David
Just wanted to give folks a heads up that it looks like something or someone is 
spoofing my tycoelectronics.com email address.  I have started to receive a 
number of delivery failure and undeliverable emails which alerted me to the 
spoofing.  The email is being sent with subject of Good Day, uses uses odd 
phrasing like They all think of how he rose from an ensign and became 
emperor. or At last the baggage wagons had all crossed, the crush was less, 
and the last battalion came onto the bridge.  The email also contains a link 
and ends with Sincerely Your and fake name.  These are usually indications that 
the message is the result of some type of virus.

Our email team have verified that the messages were not sent from our email 
servers.  Our company also went through a name change last Thursday and is no 
longer sending email from an @tycoelectronics.com email address.

Dave

Dave Shellman
+01 717 810 3687 tel
+01 717 810 2124 fax
dave.shell...@te.commailto:dave.shell...@te.com

MS 161-043
PO Box 3608
Harrisburg, PA 17105-3608

[http://www.tycoelectronics.com/images/socialmedia/smallTElogo.gif]http://www.tycoelectronics.com/

[http://www.tycoelectronics.com/images/socialmedia/twitter.png]http://twitter.com/teconnectivity
 [http://www.tycoelectronics.com/images/socialmedia/facebook.png] 
http://www.facebook.com/teconnectivity  
[http://www.tycoelectronics.com/images/socialmedia/flickr.png] 
http://www.flickr.com/photos/teconnectivity/  
[http://www.tycoelectronics.com/images/socialmedia/linkedin.png] 
http://www.linkedin.com/groups?gid=1591657  
[http://www.tycoelectronics.com/images/socialmedia/youtube.png] 
http://www.youtube.com/teconnectivity


___
UNSUBSCRIBE or access ARSlist Archives at www.arslist.org
attend wwrug11 www.wwrug.com ARSList: Where the Answers Are
inline: smallTElogo.gifinline: twitter.pnginline: facebook.pnginline: flickr.pnginline: linkedin.pnginline: youtube.png

Create Task with a Push Field

2011-03-15 Thread Guillermo Alfredo Torres Barron
H dear listers
I need to create a Task for a Incident using a Push Field. Can I do Push Field 
directly to TMS:Task or is there a form like HPD:IncidentInterface_Create to 
create a Task??
I have AR Server 7.6.03 and ITSM 7.6.03
Thanks in advance
Greetings from Mexico City

__
Atentamente
Guillermo Alfredo Torres Barrón
Proyectos ARS Remedy
Grupo Financiero Banorte
Calzada de Tlalpan #2980, Col. Ejidos de
Santa Ursula Coapa, C.P. 04850
México, D.F.
Tel Directo: 51746520, ext: 8505-2520


Este correo electronico es confidencial y/o puede contener informacion 
privilegiada.
Si usted no es su destinatario o no es alguna persona autorizada por este para 
recibir sus correos electronicos, NO debera usted utilizar, copiar, revelar, o 
tomar ninguna accion basada en este correo electronico o cualquier otra 
informacion incluida en el, favor de notificar al remitente de inmediato 
mediante el reenvio de este correo electronico y borrar a continuacion 
totalmente este correo electronico y sus anexos.
Nota: Los acentos y caracteres especiales fueron omitidos para su correcta 
lectura en cualquier medio electronico.

This e-mail is confidential and/or may contain privileged information.
If you are not the addressee or authorized to receive this for the addressee, 
you must not use, copy, disclose, or take any action based on this message or 
any other information herein, please advise the sender immediately by reply 
this e-mail and delete this e-mail and  its attachments.

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


Re: SSI 7.6.04 64 bit vs 32 bit questions

2011-03-15 Thread strauss
That's almost the same as what I see on a clean 7.6.04 stack-by-piece install 
on Windows 3003 R2 x64 with 64-bit java selected everywhere.  My armonitor.exe 
is running 64-bit, not 32, and I don't have arsnmpd.exe or slmcollsvc.exe 
active (collector not installed as a service, arsnmpd throwing an error).  The 
one that really bothers me is that the arplugin.exe is running in 32-bit mode 
even though I explicitly selected 64-bit during the install.

On my Windows 2008 R2 x64 vm where I upgraded the 7.6.03 suite to 7.6.04 with 
64-bit selected everywhere you can, the only difference is that the 
armonitor.exe is in 32-bit mode, probably because it is an upgrade and the 
files remained in the (x86) file structure.

Christopher Strauss, Ph.D.
Call Tracking Administration Manager
University of North Texas Computing  IT Center
http://itsm.unt.edu/

-Original Message-
From: Action Request System discussion list(ARSList) 
[mailto:arslist@ARSLIST.ORG] On Behalf Of Martinez, Marcelo A
Sent: Tuesday, March 15, 2011 6:08 PM
To: arslist@ARSLIST.ORG
Subject: SSI 7.6.04 64 bit vs 32 bit questions

Just installed the Suite Stack Installer on Win2008/SQL2008. Installation took 
around 1 hour.

Is it normal to see the following processes running in 32 bit mode?
APSVCAE.EXE
ARMONITOR.EXE
ARPLUGIN.EXE
ARSIGNALD.EXE
ARSNMPD.EXE
ARSVCDSP.EXE
PORTMAP.EXE
SLMBRSVC.EXE
SLMCOLLSVC.EXE

The only processes running in 64 bit are:
ARCMDB.EXE
AREMAILD.EXE
ARFLASHD.EXE
ARRECOND.EXE
ARSERVER.EXE

I installed JDK 6.24 64 bit
I installed JRE 6.24 64 bit
I installed JRE 6.24 32 bit (because, as I understood, you need this version to 
run the email engine).

Shouldn't all the other processes run in 64 bit mode?

Thanks,
Marcelo

___
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: Urgent : Memory allocation to ARS process

2011-03-15 Thread Manish SINGLA
Hello Axton,

Thanks for your response.

We find a pattern when, the memory requirement of ARS increases the threshold 
limit of 2GB, it stops taking login to application.
People/user those who has already logged in could work.

So is the issue we see one of the step to remitence increasing allocated memory 
to ARServd process.

What is your comments on this?

I couldn't understand how increasing threads make increase of memory, and what 
should be calculation then for this?

Regards
Manish

From: Axton [mailto:axton.gr...@gmail.com]
Sent: Tuesday, March 15, 2011 8:32 PM
To: arslist@arslist.org
Cc: Manish SINGLA
Subject: Re: Urgent : Memory allocation to ARS process

These will increase the memory footprint.

Add more concurrent users.
Add more threads.
Increase the size of the Remedy workflow/data dictionary.

do you just want it to use more memory for the sake of using more memory?
On Mon, Mar 14, 2011 at 7:06 AM, Manish SINGLA 
manish.sin...@st.commailto:manish.sin...@st.com wrote:
**
Hello List,

I find 2GB as standard memory allocation to ARS process, could you please 
suggest how to increase this memory allocation.

Regards
Manish
_attend WWRUG11 www.wwrug.comhttp://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


BMC PROFESSIONALS WITH SECURITY CLEARANCES NEEDED FOR NUMEROUS PROJECTS

2011-03-15 Thread Frankfater, David
We are seeking top BMC Software talent to address long and short term projects 
throughout the US.  We are hoping to also find individuals who have Security 
Clearances.  Please send me  your resume if you would like to be listed in a 
talent pool even if you are currently unavailable.  This way I can email you 
details on current and future projects you may want to take on.  Please also 
included salary expectations and whether you would consider working on contract 
or going full time.

Have a great wrap to the week!

Kind regards,

David Frankfater
Column Technical Services
Toll Free 1-866-265-8665 Ext. 332
Cell 630-664-5800
Fax 630-271-1487
dfrankfa...@columnit.com
www.columntech.com 
www.columnit.com

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


Re: Urgent please help! how to refresh table using filters

2011-03-15 Thread Chintan Shah
Yes, it does work. I have tested it on 7.1 patch 7. A dynamic qualification on 
a table and iterating using filter guide with `! does work.

Thanks
Chintan.

--- On Mon, 3/14/11, Elry elryal...@gmail.com wrote:

From: Elry elryal...@gmail.com
Subject: Re: Urgent please help! how to refresh table using filters
To: arslist@ARSLIST.ORG
Date: Monday, March 14, 2011, 11:42 AM

Sounds right to me - unless she is trying to use a dynamic
qualification.

If so - I don't think this will work on a server side table walk.


On Mar 14, 1:25 pm, Thad Esser thad.es...@gmail.com wrote:
 Mary,

 I think Jason hit the nail on the head.  Just remember:
 Server Side Table Field + Filter Guide table looping = Phasing Issues
 (considerations at least).

 When using a table field on the server side (i.e. in a filter), it doesn't
 need to be refreshed, it will always have the current data (within the
 context of phasing of course).

 Hopefully that point you in the right direction. :-)
 Thad

 On Sun, Mar 13, 2011 at 3:49 PM, Mary Estrada mestr...@blizzard.com wrote:
  Thanks in advance.

  Having email update a back end table, then call filter guide to check data
  in columns in table.
  Need to refresh the table before filter call guide to loop thru all rows.

  Thanks,

  ~Mary

 ___­
 UNSUBSCRIBE or access ARSlist Archives atwww.arslist.org
 attend wwrug11www.wwrug.comARSList: Where the Answers Are

___
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