Re: Walking a table field using web services

2014-06-18 Thread Misi Mladoniczky
Hi, The obvious thing would be to do 3 filters and run them depending on the number of attachments that has values. You could also add two additional display-only attachment fields on the target server and send all three attachments in a single call. After that you can create conditional

Re: Finding all filters and Escalations that contain a web service set fields

2014-06-18 Thread Support
hi, you can try with www.arsurf.it You can install the tool and after : 1. Click on the link “Webs Called” in the box Relation 2. Clicking on the name of the endpoint the tool shows the type of object that invokes the web service best regards Team Arsurf Il 13 giugno 2014 alle 20.46

Select Distinct values from regular form through table

2014-06-18 Thread Mona Fathy
Hi All, I'm working on Remedy version 7.6.4, I have a table that reads from a regular form VOD_SEET_Invoices, I need to select distinct values from this form through the qualification of the table. Is there a way or a function to do that? I need the qualification of the table to be equivalent

Create a Report for Users with Multiple Devices

2014-06-18 Thread Kemes, Lisa A DLA CTR INFORMATION OPERATIONS
We need to create a report for users with multiple device of same type. Needs to include Organization, Name, Desktop, Laptop, IPAD, Blackberry, Cell Phone, Monitors, and free form for adding Justification for Multiple Devices Needs to be created in Analytics and able to run by all hardware asset

Re: Finding all filters and Escalations that contain a web service set fields

2014-06-18 Thread Andrew Hicox
Web services can only be called from filters so don't worry with escalations etc. here's a brute force method I've used many times. 1) export all the filters to a gigantic XML file 2) open the file in a text editor and search for the existing end point ... Doing this you can scroll backward from

Re: Finding all filters and Escalations that contain a web service set fields

2014-06-18 Thread Campbell, Paul (Paul)
That was my plan, I was just trying to limit the Gigantic XML part and only locate the ones that needed changing, but I guess I have a follow up, if I have a gigantic XML of filters, if I import the whole list again, but only the web service calls ones have changed, will all get imported, or

Re: Finding all filters and Escalations that contain a web service set fields

2014-06-18 Thread Andrew Hicox
Yeah they'd all get reimported. What I'm saying is to only use the gigantic all-filter export as a means to identify the filters that need changing. Once you have that short list, make an export of just the filters that need changing, and do your search/replace/import for the little file :-)

Re: Finding all filters and Escalations that contain a web service set fields

2014-06-18 Thread Grooms, Frederick W
Sorry ... Outlook 2013 is really being a pain sending to the list Original message From: Grooms, Frederick W=20 Sent: Wednesday, June 18, 2014 9:36 AM To: 'arslist@ARSLIST.ORG' Subject: RE: Finding all filters and Escalations that contain a web service= set fields If you have

Re: Threads and queues

2014-06-18 Thread Mueller, Doug
James, Let me try a different approach to describing things. First, some definitions A Thread is an independent path of execution capability. It is equivalent to a thread in a Java application in your question. With the AR System environment, each thread includes a DB connection and the

Re: Drag and drop to sort within a table

2014-06-18 Thread Mueller, Doug
Janne, The main use of drag and drop in table fields is to move things between tables rather than within a single table. I really haven't seen use cases to drag and drop within a single table. To accomplish your goal, it would seem to me that the most convenient approach would be to have two

Re: Finding all filters and Escalations that contain a web service set fields

2014-06-18 Thread Misi Mladoniczky
Hi, The RRR|DefSearch can find the objects containing any string, and it can produce a new def-file with the matching objects only. https://rrr.se/cgi/tools/main?tool=rrrDefSearch You can also use RRR|ExportDef to export your def if you like, but if it is only filters you might be good to go

Re: Select Distinct values from regular form through table

2014-06-18 Thread Axton
You are going down the right path with a view and view form. Try this in your db view: Select Batch_No, Submitter, max(request_id) From VOD_SEET_Invoices where Batch_No 'NA' group by Batch_No, Submitter With grouping, you won't get every request ID, the same way you won't using distinct, but

Re: Threads and queues

2014-06-18 Thread Axton
Nice analogy Doug. I have historically separated out various subsystems to separate queues (e.g., approval server, AIE, email engine, midtier, etc.). I did this to provide a means to prevent one subsystem from impacting other subsystems. This has happened to me in the past where some subsystem

Re: Threads and queues

2014-06-18 Thread Misi Mladoniczky
Hi Axton, What do you mean by cache data? The threads do NOT have an individual copy of the Cache (definitions of your system including FLTR, ESCL, etc). They share a single copy of this cache. If they did, it would require an enormous amount of memory to have multiple threads. The following is

Re: Threads and queues

2014-06-18 Thread Axton
Are you sure about 1 copy of the cache in memory? In theory, in a multi threaded application there should, ideally, be one copy of the cache that is accessed in a thread safe way, but I am almost certain that is not the case with Remedy. It would be great if someone who knows for certain wants