Info on Inline Forms

2014-04-09 Thread Prathap Pb
Hi All, I need some info on the inline forms in remedy.Few examples were they have been used. How do i create them? ThanksPB ___ UNSUBSCRIBE or access ARSlist Archives at

Re: Syntax needed for a filter to find a number string in HPD:Help Desk Notes field

2014-04-09 Thread Misi Mladoniczky
Hi, It seems like you have made this over complex there is no need to add things together. The original advanced search should be: 'Notes' LIKE [0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9][0-9][0-9]% This replace string would equal what you have: REPLACE($Detailed Description$, [0-9], XX) If you want

Re: ITSM on a Laptop Question

2014-04-09 Thread Theo Fondse (Gmail)
Hi James, This is possible indeed. I have done this many times in the past for my previous company (another BMC Partner) in order to do development and demo's on ITSM etc. The catch here is that you are guaranteed to have BAD performance of an ITSM VM if you only have 8GB RAM or less. If you

The best method of balancing for BMC Remedy ITSM 7.6.04

2014-04-09 Thread Andrey Blednykh
Hello, friends! Which method of balancing - weithted round-robin or weighted least connection suites better for BMC Remedy ITSM 7.6.04? Our configuration includes 2 web-servers, 2 application-servers and database-server. Thank in advance, Andrey.

Re: ITSM on a Laptop Question

2014-04-09 Thread Murnane, Phil
Theo: Good observation on your part to mention the SSD lifespan. I can personally attest to ITSM causing the DB to burn through the maximum number of write operations for an SSD in a few months of light usage. I'm on my second pair of SSDs in a RAID 0 config. Once my laptop is upgraded to

Re: The best method of balancing for BMC Remedy ITSM 7.6.04

2014-04-09 Thread LJ LongWing
I've never considered Round Robin to be a 'good' balancing method, I've always gone with a least connection scenario. On Wed, Apr 9, 2014 at 5:22 AM, Andrey Blednykh blednyk...@mail.ru wrote: ** Hello, friends! Which method of balancing - weithted round-robin or weighted least connection

Re: Syntax needed for a filter to find a number string in HPD:Help Desk Notes field

2014-04-09 Thread Sinclair, Keith
Hi Misi, What I am trying to do is to have the REPLACE function find a number in a filter, any number, in the 'Notes' field and replace it with an X. We are trying to create a process that searches for Government ID number strings entered into the system and replace it with Xs to remove any

Re: Syntax needed for a filter to find a number string in HPD:Help Desk Notes field

2014-04-09 Thread Grooms, Frederick W
Ah ... The Replace function in ARS is not a regex type replacement. It is a straight character replacement. (The Run-If can look for patterns like you are doing not the REPLACE function) What you can do is Run-If: 'Notes' LIKE [0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9][0-9][0-9]% Set

Re: Syntax needed for a filter to find a number string in HPD:Help Desk Notes field

2014-04-09 Thread Sinclair, Keith
Yep, I re-read Misi's email and understood what he was getting at. It has been awhile since I had to use the REPLACE function and spaced that it was limited to literal strings. Apart from doing multiple REPLACE and STRSTR functions, etc. and creating complexity, is there any simple method for

Problem with driver 7.6.04

2014-04-09 Thread Support
Hi listers, I am running driver.exe 7.6.04 and I get the following error: The ordinal 240 could not be located in the dynamic link library arapi7604_build002.dll Indeed, the Dependency Walker shows i240 does not exist. Any idea? Is there a more recent version of this DLL? Thanks André

moving saved searches from User client to Mid Tier client.

2014-04-09 Thread Reiser, John J
Hello Listers, ARS 7.6.04 MS SQL Server 2005 We are in the process of moving people from the user tool to the mid tier client. A few of these users have saved searches stored in the AR System User Central File. They want to know how to get their searches through the mid tier client. Recreating

Re: Notify Alerts in ARS 8.1

2014-04-09 Thread Dee
Hello Laurent/Mikhail Did either have a solution for this error __ I think that the classic notification alerts should work in 8.1. In aralerts.log I see **Error (22) in binding send socket for address :0**. When I set

Re: Notify Alerts in ARS 8.1

2014-04-09 Thread mkovrizhnykh
DEE wrote Hello Laurent/Mikhail Did either have a solution for this error __ I think that the classic notification alerts should work in 8.1. In aralerts.log I see **Error (22) in binding send socket for address :0**. When I

Asset Console query, related issues

2014-04-09 Thread William Rentfrow
Hello listers... Vital stats: SuSe Linux running ARS 7.6.04 p2, CMDB 7.6.04 p4, ITSM 7.6.04 p2. Oracle 11g RAC backend DB on Linux My question is also at the end, but I'll add a tl;dr version here: Does anyone else know of places where the app is querying all of BMC Computer System besides

Re: moving saved searches from User client to Mid Tier client.

2014-04-09 Thread Joe D'Souza
If the qualificationString that you are looking to convert to human readable format is stored in the AR System qualification format (which looks something like a string of numbers separated by a few forward slash characters), then yes, you could use that function to build a human readable

Re: EXTERNAL: Re: moving saved searches from User client to Mid Tier client.

2014-04-09 Thread Reiser, John J
Actually that command converts human readable to internal format /1/5001/1/etcetera OK if that is the only way to get these searches moved to the Mid Tier I'll throw together a form and a filter and then move the internal search string to the AR System Searches Preference form. Thank you,

Re: Syntax needed for a filter to find a number string in HPD:Help Desk Notes field

2014-04-09 Thread Joe D'Souza
You could also use a single set field with a nested REPLACE instead of 10 separate set field actions. Given your description of what you want to do, aren't you worried though that it will replace even non Government ID kind of numerical strings that might be important to your data? For eg, if

Re: EXTERNAL: Re: moving saved searches from User client to Mid Tier client.

2014-04-09 Thread Joe D'Souza
There is an available way to reverse that function then - I do not recall what it is off hand. Look up the available list of functions when you list them on the Dev Studio. It should be in that list. Joe _ From: Action Request System discussion list(ARSList)

Re: Syntax needed for a filter to find a number string in HPD:Help Desk Notes field

2014-04-09 Thread Ben Chernys
An Oracle set fields action was given to you by Fred. There will be (should be) an equivalent MS SQL set fields action. What complexity? The fact that you are adding a piece of workflow? That is the only way to do it as the data is being updated. There are after-the-fact alternatives

Re: Syntax needed for a filter to find a number string in HPD:Help Desk Notes field

2014-04-09 Thread Misi Mladoniczky
Hi, If the format always match nnn-nn-, you can do some filter looping to mask it out without affecting performance too much. Start Filter: Run If: 'Notes' LIKE %[0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9][0-9][0-9]% Set-Fields: tmp = $Notes$ Call Guide: Remove Ids Guide Remove

How to investigate if Remedy Page is delayed.

2014-04-09 Thread Harry
Hi Experts, Please help to investigate if its really from remedy end, We have Pager service configured for Incident management. there are few service targets configured for say P1 tickets and under the milestone tab we have Action- Pager or Run Process Action. We have one pager command in

Re: How to investigate if Remedy Page is delayed.

2014-04-09 Thread Jason Miller
Does your paging system have any logs or history? We use HipLink and anytime we receive a report of a missed or delayed page we check in the HipLink UI. If we find a record of the page then Remedy sent it. As long as there wasn't a delay from when the pageable even happened in Remedy and the

Re: How to investigate if Remedy Page is delayed.

2014-04-09 Thread Pargeter, Christie :CO IS
In your TelAlert install folder you will see a telalert.trail file. This will give you a bit more information about the message that the system sent out. 2014/02/02 07:51:16Event [70]Send Change (53905/53905), Status: [81]Message sent 2014/02/02 07:51:16Event [21]Alert Completed (53905),

Re: EXTERNAL: Re: moving saved searches from User client to Mid Tier client.

2014-04-09 Thread Susan Palmer
John, You could sell a tool that does that conversion into mid-tier searches easily. We'd be interested in hearing your progress and success in this method. Thanks, Susan On Wed, Apr 9, 2014 at 3:22 PM, Reiser, John J john.j.rei...@lmco.comwrote: ** Actually that command converts human

Re: Notify Alerts in ARS 8.1

2014-04-09 Thread Deyon
thank Applied, 8.1.00 patch 2 -- issue resolved immediately. ___ UNSUBSCRIBE or access ARSlist Archives at www.arslist.org Where the Answers Are, and have been for 20 years

Re: Syntax needed for a filter to find a number string in HPD:Help Desk Notes field

2014-04-09 Thread Sinclair, Keith
Joe, Misi, I am using the specific pattern of the ID, NNN-NN- as the key on the searches, as well as the key to the error handling so that I won't affect an IP or a phone number, etc. Essentially, the process I have implemented is this, in a nut shell: 3 fields on HPD:Help Desk - 1

Re: Syntax needed for a filter to find a number string in HPD:Help Desk Notes field

2014-04-09 Thread Sinclair, Keith
Hey Ben, I am going to turn it over to the DBAs as a last resort. I'll let you know the outcome if that is what ends up happening. -Original Message- From: Action Request System discussion list(ARSList) [mailto:arslist@ARSLIST.ORG] On Behalf Of Ben Chernys Sent: Wednesday, April 09,

Atrium 7.6.04 SP5 Upgrade Issues

2014-04-09 Thread Simon Ellis
Since we upgraded our 7.6.04 SP4 environment to SP5 for ARS and Atrium to fix a memory leak within our CMDB we've noticed that for our ADDM dataset populated with a sync from ADDM the number of CI's normalised and reconciled has gone through the roof against what is actually coming through from

Analytics - scheduled report does not show file extenstion like. MyReport.xls

2014-04-09 Thread Harry
Hi Team, Where scheduling a report within analytics on a regular bases and sending file to a fileshare, the extension of file type isn't showing on file within the file share. If we save a report directly to the file share (not scheduled) the extension is visible. appreciate your help...

Port and Queue Server Admin Display issue in MT

2014-04-09 Thread Deyon
Hello. ARS Version: 8.1.00 201301251157 OS VERSION: 7100-02-03-1334 DB Version :: 11.2.0.3.0 - 64bit Production ARServer and DB are local. MT VERSION: Version 8.1.00 201401101150 Hotfix WEBSPHERE VERSION: IBM WebSphere Application Server/8.5 OS VERSION OF MT : AIX 6.1 JAVA VERSION: 1.6

Re: Port and Queue Server Admin Display issue in MT

2014-04-09 Thread LJ LongWing
Well one thing you could try is upgrading to the latest, you are on 8.1 patch 2, but you could upgrade to 8.1 SP1 patch 1, see if that fixes it :) On Apr 9, 2014 7:56 PM, Deyon ddus...@aim.com wrote: Hello. ARS Version: 8.1.00 201301251157 OS VERSION: 7100-02-03-1334 DB Version ::

Re: Port and Queue Server Admin Display issue in MT

2014-04-09 Thread Deyon Dussie
Thanks longwing, That would be may next option, as BMC is still researching the issue. Trying to see if this can be resolved at this level, before moving to the next and have new issues to resolve, also. ___

Re: How to investigate if Remedy Page is delayed.

2014-04-09 Thread Harry
Hi Christie, On Incident form, when I see the submit date and ( from SLM Status link ) the Milestone for that Service target, where, one of the Milestone- say XYZ shows execution time are as follow. *4/9/2014 12:30:50 PM* === Incident *submit date* *4/9/2014 12:54:21 PM* === *XYZ milestone* -

Remedy, OpenSSL, and the Heartbleed bug

2014-04-09 Thread Mueller, Doug
Everyone, I am sure that most if not all of you have seen the reports in the media about the security bug (called the Heartbleed bug) that has been found out on the internet. Some details: OpenSSL is the source of the bug. It is a technology used for encryption. The AR System environment

Re: Remedy, OpenSSL, and the Heartbleed bug

2014-04-09 Thread DEE
Thank you Doug, This is perfect. DEE -Original Message- From: Mueller, Doug doug_muel...@bmc.com To: arslist arslist@ARSLIST.ORG Sent: Wed, Apr 9, 2014 11:30 pm Subject: Remedy, OpenSSL, and the Heartbleed bug ** Everyone, I am sure that most if not all of you have seen the

Re: Port and Queue Server Admin Display issue in MT

2014-04-09 Thread patchsk
I have seen the similar issue. Any time you make changes and commit in Admin Console in midtier it is actually deleting all the threads in ar.conf And the server will end up running the default admin thread upon next restart. It has been fixed in the 8.1SP1. If you are not interested in

Without using /arsys how to point the remedy login page.

2014-04-09 Thread Suresh Loganathan
Team, Our remedy web URL is remedy.upc.biz. when we try this URL it showing like Tomcat is running. Instead of this, enter like remedy.upcoming.biz/arsys its pointing to login page. How to point the remedy login page with out using the /arsys. Can you please advise? Regards, Suresh

Re: Without using /arsys how to point the remedy login page.

2014-04-09 Thread patchsk
There are multiple ways you can do it. The way we do it is create an index.html page under tomcat ROOT folder with the following html head meta http-equiv=refresh content=1;URL=arsys/shared/login.jsp?/arsys/home /head body /body /html