Re: [Hardhats-members] How do I do a silent read?

2005-03-10 Thread steven mcphelan
In the case where you are not prompting for electronic signature code, then the following would work. Your example is using screen handling by invoking the ^XGF utilities. If you do not using the ^XGF utilities, then this would work: VAHS ANS=,EOFF=^%ZOSF(EOFF),EON=^(EON) VAHW !,Enter

RE: [Hardhats-members] Dificulty with Fileman search

2005-03-10 Thread Holloway, Thomas (EDS)
For the record, the comment about the cross-reference came from Greg Woodhouse. It just happened to be posted above my name from a previous post, making it look as if it were mine. To give a bit of perspective to the depth of Fileman; I have been working with it for nearly 20 years, starting

[Hardhats-members] Time to advance?

2005-03-10 Thread Greg Kreis
David's question on the MDC Revival thread is an opportunity for us to again address the question of forums or other means of categorizing the list threads. We are open to suggestions on how to make this list serve the different needs of a somewhat diverse group. Should we declare exactly what

[Hardhats-members] CPOE May Introduce Medical Errors

2005-03-10 Thread Rjjs3505
Everyone, Someone more capable than myself needs to respond to this. And please mention that through VISTA the VA has processed more than 5,000,000 prescriptions without a single error. Or that in every single Performance Measure(Quality of Care), the National Committee for Quality

Re: [Hardhats-members] New Cache.zip, etc., on 2-27-05

2005-03-10 Thread Robert M. Witkop
Nancy, I looked at the ftp site this morning, and only saw the one that was there from 2/27. Bob On Wed, 2005-03-09 at 18:24, Nancy Anthracite wrote: Every time I log in to the ftp site, it seems like there are new releases. I wonder what is new in this one?

Re: [Hardhats-members] BAPI32 files?

2005-03-10 Thread Kevin Toppenberg
Chuck, Are these CPRS files? Kevin --- chuck5566 [EMAIL PROTECTED] wrote: I've been looking for the BAPI32.* files (.H, .BAS, etc.) like a blindfolded child whacking at a pinata. Uncle. Please, which file are they buried in. Thanks In Advance, Chuck (Chris, Dave, I know I owe

RE: [Hardhats-members] Dificulty with Fileman search

2005-03-10 Thread Bhaskar, KS
I would be interested in attending one. -- Bhaskar On Thu, 2005-03-10 at 07:04 -0800, Kevin Toppenberg wrote: Hey, Anyone interested in giving such a class at the upcoming VistA conference? Kevin --- SF email is sponsored by - The IT

Re: [Hardhats-members] Dificulty with Fileman search

2005-03-10 Thread Greg Woodhouse
No. Sorting is basically a matter of iterating through an index. If you only want one value, you can use the = syntax in the sort. Searching is considerably more flexible. George Timson's point was that sorting is often all you need if you just want records having a single index value.

Re: [Hardhats-members] Another oddity - scope of NEW in DSM

2005-03-10 Thread msys1
...why is the oddity in DSM? In the past I have discovered instances in which DSM was the only implementation of M in which the standard was correctly implemented. The 'oddity' was in all the other systems. Go figure ??? Not having a standard document at hand, I am wondering where in

Re: [Hardhats-members] Another oddity - scope of NEW in DSM

2005-03-10 Thread Greg Woodhouse
Fair enough. By oddity I meant something that is different. I am NOT claiming that one implementation or the other is correct -- only that they are dfifferent. If there's room for intetrpretation here, that's at least food for thought when we consider reconstituting the MDC. Personally, I *LIKE*

Re: Re: [Hardhats-members] Dificulty with Fileman search

2005-03-10 Thread Greg Woodhouse
No, it doesn't have to be indexed, but sorting on a field that is not indexed is, of course, more expensive. That's all I meant. --- [EMAIL PROTECTED] wrote: I believe that the FileMan 'sort' operation does not require that the field being used for the sort be an 'indexed' field. Did you mean

Re: [Hardhats-members] Another oddity - scope of NEW in DSM

2005-03-10 Thread Greg Woodhouse
My co-worker (I'll have to try and entice him to join the list!) also pointed out that you can QUIT out of different levels in Cache to achieve the same effect. Again, my point is not to say that one platform is better or worse than the other, only to point out the implementation difference.

Re: [Hardhats-members] Another oddity - scope of NEW in DSM

2005-03-10 Thread Bhaskar, KS
On Thu, 2005-03-10 at 09:23 -0800, Greg Woodhouse wrote: My co-worker (I'll have to try and entice him to join the list!) also pointed out that you can QUIT out of different levels in Cache to achieve the same effect. Again, my point is not to say that one platform is better or worse than

Re: [Hardhats-members] Another oddity - scope of NEW in DSM

2005-03-10 Thread Greg Woodhouse
I was unsure of what rules might apply to symbol table management in direct mode. It occured to me that the difference between Cache on and DSM could have been driven either by the desire to provide a new feature (not tying variable scope to line structure in programmer mode) or implementation

Re: [Hardhats-members] Another oddity - scope of NEW in DSM

2005-03-10 Thread Maury Pepper
For what it's worth, in this case, MSM behaves the same as DSM. The programmer's shell Xecutes the command line, so of course, the implicit QUIT at the end of the line unstacks NEW'd variables. I like this feature because sometimes I want to save all variables while I DO something and then

[Hardhats-members] Any billing capability in VistA

2005-03-10 Thread Sleeman, Richard
Title: Message Is there any billing capability in VistA? Richard Sleeman, Project Manager/System Administrator Fairfax-Falls Church Community Services Board 703-324-7024 This message is intended for the use of the addressee and may contain information this is privileged, confidential and

Re: [Hardhats-members] Time to advance?

2005-03-10 Thread Lloyd Milligan
In January 2003 Hardhats had 5 postings per day (average), in January 2004, 11 postings per day, and in the first month of the current year, 16 per day. This growth in activity is a positive sign, on the one hand. On the other hand it represents an increased burden to the reader whose

RE: [Hardhats-members] Xdialog, dialog, m2web

2005-03-10 Thread Bhaskar, KS
On Sun, 2005-03-06 at 09:43 -0600, John Leo Zimmer wrote: [KSB2] ...snip... [KSB] Try something like: export DIALOG=${DIALOG:=`which Xdialog`} ; if [[ -z $DIALOG ]] ; then export DIALOG=`which dialog` ; fi and in your script use $DIALOG as the program to use. Now that I think

Re: [Hardhats-members] Dificulty with Fileman search

2005-03-10 Thread Greg Kreis
You will still get the 'just a moment' message if the field is indexed and you use the = syntax. To make the best use of the index, specify the field and put in the same value for 'start with' and 'goto'. Greg Woodhouse wrote: No. "Sorting" is basically a matter of iterating through an

Re: [Hardhats-members] Any billing capability in VistA

2005-03-10 Thread Nancy Anthracite
There have been some patches added quite recently that extract the data needed for clearing houses to process bills from VistA. There is some software that is within the Indian Health Service software that might be able to use that data to prepare a HIPAA compliant electronic submission.

[Hardhats-members] A Model Patient Record System in FCW

2005-03-10 Thread Nancy Anthracite
http://newsletters.101com.com/c.asp?id=563162l=10c=9b191f8ffb484f38 -- Nancy Anthracite --- SF email is sponsored by - The IT Product Guide Read honest candid reviews on hundreds of IT Products from real users. Discover which products truly

Re: [Hardhats-members] Time to advance?

2005-03-10 Thread Kevin Toppenberg
It would be nice if we had threads etc, with topics etc, like some bulletin boards have. The problem is that many like to get the posts as email. Kevin --- Lloyd Milligan [EMAIL PROTECTED] wrote: In January 2003 Hardhats had 5 postings per day (average), in January 2004, 11 postings per

Re: [Hardhats-members] Dificulty with Fileman search

2005-03-10 Thread Kevin Toppenberg
While we are on the topic of sorting etc, can someone explain how the START WITH option works. Everytime I put something in this field, I get back no records. What do I put there? Kevin --- Greg Kreis [EMAIL PROTECTED] wrote: You will still get the 'just a moment' message if the field is

Re: [Hardhats-members] Dificulty with Fileman search

2005-03-10 Thread Greg Woodhouse
I just created an option with a name beginning with PRCV. If I wanted a list of all of them, I could do this: Select VA FileMan Option: Print File Entries OUTPUT FROM WHAT FILE: COTS INVENTORY SUBSCRIPTION CONTROL// 19 OPTION (13283 entries) SORT BY:

Re: [Hardhats-members] How do I do a silent read?

2005-03-10 Thread Kevin Toppenberg
I just tried this function out, and it is not like the text outlined below. This looks like a copy from a manual below, but here is the code. It accepts no parameters. SIG ;Call with DUZ; Return X1= if fail else hashed ESC. N X2,K S X2=$G(^VA(200,+$G(DUZ),20)),X1=$P(X2,U,4)

Re: [Hardhats-members] Dificulty with Fileman search

2005-03-10 Thread Kevin Toppenberg
Well, it seems to be working correctly for me now. I can't remember what I was doing before. Thanks Kevin --- Greg Woodhouse [EMAIL PROTECTED] wrote: I just created an option with a name beginning with PRCV. If I wanted a list of all of them, I could do this: Select VA FileMan

Re: [Hardhats-members] MDC Revival

2005-03-10 Thread Jim Self
Nancy wrote: The speed and reliability of M has been proven over and over and there is no reason that VistA or M should be killed by neglect or that the VA should spend whatever countless millions of our tax dollars to migrate VistA to Java just because people are running around telling all of the

Re: [Hardhats-members] Dificulty with Fileman search

2005-03-10 Thread Greg Kreis
Can you give us an example of what you are seeing so we can diagnose it? Kevin Toppenberg wrote: While we are on the topic of sorting etc, can someone explain how the "START WITH" option works. Everytime I put something in this field, I get back no records. What do I put there? Kevin

Re: [Hardhats-members] Dificulty with Fileman search

2005-03-10 Thread Greg Kreis
If you really want to find an accomplished FM users, find a user that is very analytical, has a great need to know and boundless curiosity, topped with great heapings of patience. Why not a programmer? Because the M programmer has a pressure release valve. When they can't get FM to do what

Re: [Hardhats-members] Room share at VistA conf?

2005-03-10 Thread Chris Richardson
Kevin; You might want to reconsider the rental car. Parking in Boston in almost non-existant (I lived there for 7 months without a car). You should be able to reach almost anywhere in the Boston/Cambridge area via MTA. Just bring Susan B Anthony's for the toll or lots of ones, or you can buy

Re: [Hardhats-members] New Cache.zip, etc., on 2-27-05

2005-03-10 Thread Nancy Anthracite
I think the last Cache.zip and GTM version before 2-27 that I had downloaded were from 2-12-05. Maybe the 2-27 was only news to me, or maybe I just forgot. On Thursday 10 March 2005 09:23 am, Robert M. Witkop wrote: Nancy, I looked at the ftp site this morning, and only saw the one that was

Re: [Hardhats-members] Dificulty with Fileman search

2005-03-10 Thread Nancy Anthracite
Me too. On Thursday 10 March 2005 10:18 am, Bhaskar, KS wrote: I would be interested in attending one. -- Bhaskar On Thu, 2005-03-10 at 07:04 -0800, Kevin Toppenberg wrote: Hey, Anyone interested in giving such a class at the upcoming VistA conference? Kevin

Re: [Hardhats-members] Dificulty with Fileman search

2005-03-10 Thread Chris Richardson
Greg; You got that right... But when you start getting users and programmers together, magic happens and the model gets better. If they do it right, then we add it to the general release and everyone wins. We would like to have every site become a testing ground for new ideas and new