Re: [U2] International Date Format

2013-02-05 Thread Buffington, Wyatt
You could try "D-YMD[4,2,2]"


Wyatt Buffington 
AMPS Support
Manitoba Hydro
204- 360-4473
I wish i would have an out of body experience then i wouldn't be here. 


-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of 
charles_shaf...@ntn-bower.com
Sent: Tuesday, February 05, 2013 8:20 AM
To: U2 Users List
Subject: [U2] International Date Format

Is there a date conversion mask that returns -mm-dd format?

Charles Shaffer
Senior Analyst
NTN-Bower Corporation
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Count-Sup

2011-10-07 Thread Buffington, Wyatt
Try   COUNT.SUP



Wyatt Buffington
AMPS Support
Manitoba Hydro


-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wjhonson
Sent: Friday, October 07, 2011 2:11 PM
To: u2-users@listserver.u2ug.org
Subject: [U2] Count-Sup


Just wanted to throw this out into the Internet world for documentation
on the ability to suppress items listed message in Universe


LIST VOC LIKE A... COUNT-SUP
will merrily list the voc items that start with A and then state xxx items 
listed

It does not complain that it has no idea what "COUNT-SUP" means, perhaps this 
is a Universe thing, that unknown words on the line are ignored.

LIST VOC LIKE A... COUNT.SUP
note the use of the period instead of the hyphen, performs normally in that the 
xxx items listed message is suppressed

I did a Google and didn't get no Googs, so now my successors should get at 
least one Goog.

W
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] PC based UniBasic program editor for 64 bit OS

2011-09-01 Thread Buffington, Wyatt
I got my HyperEdit to work. All happy now.
Thanks for all the responses, it was a real eye-opener.



Wyatt Buffington
AMPS Support
Manitoba Hydro


-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Charlie Noah
Sent: Thursday, September 01, 2011 7:17 AM
To: U2 Users List
Subject: Re: [U2] PC based UniBasic program editor for 64 bit OS

Hi Doug,

A few questions:

How do you know how much disk space there is on my workstation?
How do you know what my CPU is doing?
Since when does my workstation cost nothing?
When did VIM, EMACS and Notepad+ become line editors?

When you are replying to a post, would you at least quote the salient 
portions of that post? It puts your reply in context, especially for 
someone who didn't read the original.

Regards,

Charlie Noah
Charles W. Noah Associates
cwn...@comcast.net


The views and opinions expressed herein are my own (Charlie Noah) and do 
not necessarily reflect the views, positions or policies of any of my 
former, current or future employers, employees, clients, friends, 
enemies or anyone else who might take exception to them.


On 08-31-2011 8:18 PM, Doug Averch wrote:
> Eclipse runs as client software. You have plenty of disk space on your
> workstation.  Your workstation CPU is barely registering when you are using
> any Eclipse based software.
>
> If you don't want to use a tool that will save your company money, too bad
> for you but your boss does.  If you are worried about your client machine
> that cost nothing compared to what an unproductive programmer wastes using
> antiquated tools, you may not have a job next year.
>
> Do you think any twenty-five year old programmer would be caught dead with
> line editor like AE, ED, VIM, EMACS, Notepad+, or whatever?
>
> Regards,
> Doug
> www.u2logic.com/tools.html
> "Building tools for the next generation"
> ___
> U2-Users mailing list
> U2-Users@listserver.u2ug.org
> http://listserver.u2ug.org/mailman/listinfo/u2-users
>
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


[U2] PC based UniBasic program editor for 64 bit OS

2011-08-31 Thread Buffington, Wyatt
Thank you all for your responses. This will give me a lot to chew on and I look 
forward to evaluating each to find the best fit for our situation.

Wyatt

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


[U2] PC based UniBasic program editor for 64 bit OS

2011-08-31 Thread Buffington, Wyatt
Can anyone suggest a good editor for 64 bit OS systems that allows people to 
edit UniBasic programs?
I was using HyperEdit by Sunergos Software for many years but I have upgraded 
my laptop and it will not run.
Must have color coded of reserved words if at all possible.

Any assistance would be greatly appreciated.

Wyatt



___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Doing Multiple Selects in BASIC and combining the lists

2011-07-27 Thread Buffington, Wyatt
EXECUTE "SELECT FILE WITH VALUE = 'A' TO 1"
EXECUTE "SELECT FILE WITH VALUE = 'B' TO 2"
EXECUTE "MERGE.LIST 1 UNION 2 TO 0"

TOT.VAL = 0
END.OF.LIST = FALSE
LOOP
   READNEXT KEY FROM 0 ELSE END.OF.LIST = TRUE
UNTIL END.OF.LIST = TRUE DO
   READ RECORD FROM FILE, KEY THEN
  VALUE= OCONV(RECORD,'MD2')
  TOT.VAL += VAL
   END
REPEAT




-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of John Thompson
Sent: Wednesday, July 27, 2011 1:17 PM
To: U2 Users List
Subject: Re: [U2] Doing Multiple Selects in BASIC and combining the
lists

Ok, got stuck again...

How would your example play out in BASIC?

Its just a bunch of archive info in a file that only has a couple of
indexes, but, I would like to look at the active file as well...

EXECUTE \SELECT FILE1 WITH VALUE = 'A' TO 1\
EXECUTE \SELECT FILE2 WITH VALUE = 'A' TO 2\
EXECUTE \MERGE.LIST 1 UNION 2 TO 0\

I get an error claiming select list 1 is not active this way.  I need
the
selects to be separate and not stack.  I know how to stack them with
PASSLIST and RTNLIST... I'm just fuzzy on how to do them separately and
then
combine them?

Would I need to save them and use LIST.UNION?

Or just do the two READNEXTS?
(I'm trying to avoid because the READNEXT loop is kind of big)

Any help is appreciated.


On Wed, Jul 27, 2011 at 1:22 PM, Buffington, Wyatt
 wrote:

> In a nutshell
>  SELECT FILE WITH VALUE = 'A' TO 1
>  SELECT FILE WITH VALUE = 'B' TO 2
>  MERGE.LIST 1 UNION 2 TO 0
>  SORT FILE VALUE
>
>
>
>
> -Original Message-
> From: u2-users-boun...@listserver.u2ug.org
> [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of John
Thompson
> Sent: Wednesday, July 27, 2011 12:16 PM
> To: U2 Users List
> Subject: [U2] Doing Multiple Selects in BASIC and combining the lists
>
> This may be an easy one, or a hard one, however, I realized I don't
> recall
> ever having to do this until today, or I could just be tired...
>
> How can you do a SELECT from two different files in a BASIC program
and
> then
> combine the lists of ID's so that you can do a READNEXT on it?
>
> I ask this because I believe by default that Universe does not store
the
> select lists as dynamic arrays.
>
> For example:
>
> EXECUTE \SELECT FILE1 WITH AMOUNT = "112.50"\ RTNLIST FILE1_LIST
> EXECUTE \SELECT FILE2 WITH AMOUNT = "112.50"\ RTNLIST FILE2_LIST
>
> ...Code to combine FILE1_LIST and FILE2_LIST into FINAL_LIST...
>
> REANEXT ID FROM FINAL_LIST THEN
> do something
> NEXT ID
>
> I am using Universe 10.3.x on AIX 5.3.  I'm in a PICK flavor account.
>
> --
> John Thompson
> ___
> U2-Users mailing list
> U2-Users@listserver.u2ug.org
> http://listserver.u2ug.org/mailman/listinfo/u2-users
> ___
> U2-Users mailing list
> U2-Users@listserver.u2ug.org
> http://listserver.u2ug.org/mailman/listinfo/u2-users
>



-- 
John Thompson
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Doing Multiple Selects in BASIC and combining the lists

2011-07-27 Thread Buffington, Wyatt
In a nutshell
 SELECT FILE WITH VALUE = 'A' TO 1
 SELECT FILE WITH VALUE = 'B' TO 2
 MERGE.LIST 1 UNION 2 TO 0
 SORT FILE VALUE




-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of John Thompson
Sent: Wednesday, July 27, 2011 12:16 PM
To: U2 Users List
Subject: [U2] Doing Multiple Selects in BASIC and combining the lists

This may be an easy one, or a hard one, however, I realized I don't
recall
ever having to do this until today, or I could just be tired...

How can you do a SELECT from two different files in a BASIC program and
then
combine the lists of ID's so that you can do a READNEXT on it?

I ask this because I believe by default that Universe does not store the
select lists as dynamic arrays.

For example:

EXECUTE \SELECT FILE1 WITH AMOUNT = "112.50"\ RTNLIST FILE1_LIST
EXECUTE \SELECT FILE2 WITH AMOUNT = "112.50"\ RTNLIST FILE2_LIST

...Code to combine FILE1_LIST and FILE2_LIST into FINAL_LIST...

REANEXT ID FROM FINAL_LIST THEN
do something
NEXT ID

I am using Universe 10.3.x on AIX 5.3.  I'm in a PICK flavor account.

-- 
John Thompson
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] PC setup for to use ODBC

2010-10-26 Thread Buffington, Wyatt
We currently have it set up. But there some things you watch out for
like file names and dictionary entries with embedded periods. Email me
offline at wgbuffing...@hydro.mb.ca and I'll send you our documentation
for the setup. 


-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Oaks, Harold
Sent: Tuesday, October 26, 2010 1:22 PM
To: U2 Users List
Subject: [U2] PC setup for to use ODBC

A question for those who have done it-

I want to set up ODBC access on user PCs to Universe files for several
of my users.  The Universe side is all set up. 
This, of course, requires the ODBC driver be installed on the user's PC
when creating the ODBC data source.
I have this driver on my personal PC from some time ago, gotten from the
very large IBM download that includes UniDK, UniAdmin, and much more. Of
course that download from IBM is no longer available.

Anybody have simple steps to get the needed driver all loaded on a PC so
that the Universe driver is available for setup?

I know - this is the lowest form of communication to the Universe files,
but I want to give users the option.  It's a perception thing mostly, if
they see "ODBC" they think good things.

Thanks-
Harold D. Oaks
Sr. Analyst/Programmer
Office of the Budget and Information Systems Clark County, Washington
ph: (360) 397-6121 x4132
fax: (360) 397-2342



This e-mail and related attachments and any response may be subject to
public disclosure under state law.
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


[U2] SmarTerm/Unidata problem

2010-07-21 Thread Buffington, Wyatt
I don't know if anyone here can help with a strange 'feature' that has
occurred just recently.
We are running Unidata 7.2 on a HP-UX B11.23 with a terminal emulator
called SmarTerm by Esker.

I was given the task of upgrading and testing to version 13. There are
some differences between it and the earlier version.
When I log off our machine I get a dialog box stating "Connection Closed
by 127.0.0.1". This does NOT appear in the earlier version and I don't
know how to eliminate it. Esker tells me it is a Unidata/Unix setting. I
would like to have this NOT appear because our users would get
aggravated if they have to click the OK button associated with this
popup. So what has to be done to eliminate this popup from displaying?

But what has bothered me is this, I use this same emulator on two
machines. Once of our machines USE to display the dialog box and then
exit SmarTerm when you click on the button but now it does not display
and Unix seems to hang. Our administrators stated they have NOT done
anything and I have NOT messed with the SmarTerm settings. What happens
to which files when a user logs off a HP-UX machine?

Any assistance would be greatly appreciated. I'm just a lowly developer
and I'm trended in unfamiliar territory.



___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] OPENSEQ and Abnormal termination of UV

2010-05-17 Thread Buffington, Wyatt
I far as I know. The OPENSEQ statement requires both a file name and a
record name.
(i.e.: OPENSEQ DATA.DIRECTORY, FLAT.FILE.NAME TO F.TEMP ELSE ...)

HTH


-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Rajesh Menon
Sent: Monday, May 17, 2010 2:09 PM
To: U2 Users List
Subject: Re: [U2] OPENSEQ and Abnormal termination of UV

I already tried that. Same Error and the fault occurring at FILEVAR(1) =
FV.TEMP line.

Thanks,
Rajesh
-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Perry Taylor
Sent: Monday, May 17, 2010 11:59 AM
To: U2 Users List
Subject: Re: [U2] OPENSEQ and Abnormal termination of UV

Just for giggles... what happens if you...

OPENSEQ '/tmp/file.txt' TO FV.TEMP ELSE ...
FILEVARS(1) = FV.TEMP 

??

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Rajesh Menon
Sent: Monday, May 17, 2010 2:56 PM
To: u2-users@listserver.u2ug.org
Subject: [U2] OPENSEQ and Abnormal termination of UV

Does anyone knows what is happening here:
I am trying to open a text file (over 4Gb) using OPENSEQ and storing the
file variable into a array as follows:
COMMON /MYPROG/ FILEVARS(10)
OPENSEQ "/tmp/file.txt" to FILEVARS(1) ELSE ...
This operation results abnormal termination with fault type error 11.
Fault occurred at address 1c (which is the OPENSEQ command.). If the
file size is less than 2147483647 bytes (2Gb), it works.

Opening the same file using a scalar file variable always work
irrespective of the file size.
OPENSEQ "/tmp/file.txt" TO FV.FILE ELSE ...

Any reason why the first method failing for +2Gb files? Any workarounds?

Universe: 10.2.7
AIX:  5.3

Thanks
Rajesh Menon

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

CONFIDENTIALITY NOTICE: This e-mail message, including any attachments,
is for the sole use of the intended recipient(s) and may contain
confidential and privileged information.  Any unauthorized review, use,
disclosure or distribution is prohibited. ZirMed, Inc. has strict
policies regarding the content of e-mail communications, specifically
Protected Health Information, any communications containing such
material will be returned to the originating party with such advisement
noted. If you are not the intended recipient, please contact the sender
by reply e-mail and destroy all copies of the original message.
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


[U2] Error logging on

2009-11-17 Thread Buffington, Wyatt
I am trying to log onto one of our UniData servers and I am
unable to. I gives me the following error and I do not where to start
looking:

U_mutexwait(1), mainId:47, subId:1, errno=28.
$

We are using UniData 7.2 running on HP-UX B.11.2.

Any assistance would be greatly appreciated.

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


[U2] UniBasic SYSTEM() not returning the full process id number

2009-07-02 Thread Buffington, Wyatt
We are running UniData 7.2 on our HP Unix 11.23 machine.

Since the upgrade, an issue has reoccured that at one time was fixed.
The SYSTEM() in UniBasic returns the UID that is locking a record.
But we have noticed that if the UID is 5 characters long and starts with a 3, 
the first character is truncated before it returns the value back.
Hence if process 32321 has actually locked the record, it is returning 2321 
instead.

I have also noticed that the UniData command LIST.READU is truncating the last 
number of the UID if the length is greater than 4. Thusly it displays 3232 as 
locking that same record.

Any assistance would be greatly appreciated.





 _/  _/  _/_/_/_/
_/  _/  _/ _/
   _/  _/  _/  _/_/_/_/
  _/  _/  _/  _/ _/
 _/_/_/_/_/ yatt _/_/_/_/ uffington
 
AMMS Support
(360-4473)


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] [OT] STATUS() returning 4 digit uid, need to be 5 digits

2009-06-23 Thread Buffington, Wyatt
Sorry, I should know better.
We are running Unidata 7.2 on a HP Unix 11.23.
 

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Steve Romanow
Sent: Tuesday, June 23, 2009 9:23 AM
To: U2 Users List
Subject: Re: [U2] [OT] STATUS() returning 4 digit uid, need to be 5
digits

What OS?  I _think_ we had that issue with aix 5.3, and it was resolved
with one of the July patch releases.

Buffington, Wyatt wrote:
> Can some one help me with a problem we have.
> The STATUS() is returning a 4 digit uid of the person who has a record

> locked.
> I need this to reflect the actual 5 digit uid number. It is causing a 
> problem by informed a user that a record is locked by user 1234 but it

> is actually locked by user 51234.
>
> I pretty sure that this is related, but the LISTUSER is only 
> displaying a 4 digit UID with the first digit being truncated.
>
>
> Wyatt Buffington
> Manitoba Hydro
>
>
>
> ___
> U2-Users mailing list
> U2-Users@listserver.u2ug.org
> http://listserver.u2ug.org/mailman/listinfo/u2-users
>   

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


[U2] [OT] STATUS() returning 4 digit uid, need to be 5 digits

2009-06-23 Thread Buffington, Wyatt
Can some one help me with a problem we have.
The STATUS() is returning a 4 digit uid of the person who has a record
locked.
I need this to reflect the actual 5 digit uid number. It is causing a
problem by informed a user that a record is locked by user 1234 but it
is actually locked by user 51234.

I pretty sure that this is related, but the LISTUSER is only displaying
a 4 digit UID with the first digit being truncated.


Wyatt Buffington
Manitoba Hydro



___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


RE: [U2] - UniBasic String Search

2009-03-13 Thread Buffington, Wyatt
I would use the UniData ESEARCH verb:

:ESEARCH FILE.NAME 
STRING: MIL
STRING: Spec
STRING: SPEC
STRING: -14
STRING:

12 records selected to list 0.

>SORT FILE.NAME FIELD1 FIELD2


-Original Message-
From: owner-u2-us...@listserver.u2ug.org
[mailto:owner-u2-us...@listserver.u2ug.org] On Behalf Of Brutzman, Bill
Sent: Friday, March 13, 2009 9:40 AM
To: u2-users@listserver.u2ug.org
Subject: [U2] - UniBasic String Search

I need to examine fields for perhaps one thousand part.numbers looking
for tech specs that contain character strings like
   "MIL" 
   "Spec" 
   "SPEC" 
   "-14"   etc

While I can do this with commands like... execute 'SELECT IM WITH
OP.SPEC LIKE "...-14..." ', this technique is awkward since I have a few
dozen strings to look for...

I have the IBM tech manual describing the MATCH operator and the
MATCHFIELD function.  Is there a handy UniBasic method to handle this or
should I write a little program to do this myself?

Fixes would be appreciated.

--Bill
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] Unidata upgrades

2008-07-10 Thread Buffington, Wyatt
I would like to get some good or bad issues/concerns in regards to upgrading
Unidata from version 6.0.4 to 6.1

Also in anybody has experienced any problems when upgrading Unidata from
version 6.1 to 7.1.

We are running on an HP machine with Unix 11.
All issues, problems, kudos would be appreciated.


Wyatt Buffington
Systems Developer
Manitoba Hydro
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] terminal emulator

2008-06-27 Thread Buffington, Wyatt
We user SmarTerm from www.Esker.com 
Works great from a PC and via Citrix.
Nicely configurable with Colors, Hotspots, Buttons, Keyboard Mapping and
Triggers.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Bob Witney
Sent: Friday, June 27, 2008 6:09 AM
To: u2-users@listserver.u2ug.org
Cc: Andy Stenning
Subject: [U2] terminal emulator

We are using PowerTerm Lite as our terminal emulator



Works fine from a PC but sadly won't work through Citrix



Is anyone using a terminal emulator via Citrix (we have MAC's that need
to come across that way)



Thanks



Bob Witney

IT Senior

Explore Worldwide

Nelson House

55 Victoria Road

Farnborough

Hants

GU14 7PA




Confidentiality Notice:  This e-mail and any attachments are intended
solely for the addressee and may contain confidential or privileged
information.
If you are not the named addressee, or the person responsible for
delivering the message to the named addressee, please notify the sender
as soon as possible and delete the material from your computer.  This
message will be protected by copyright.  If it has come to you in error,
you must not take any action based on its contents nor must you copy or
show the message to any person other than the intended recipient.
_
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
__
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Corrupt file

2008-04-25 Thread Buffington, Wyatt
The fix worked beautifully and quick too.
Thank you very much for your assistance.
I have added your procedure to our notes for future reference.
 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Colin Alfke
Sent: Thursday, April 24, 2008 9:36 AM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Corrupt file

 Wyatt;

guide and verify2 simply find the corruption.
dumpgroup/fixgroup and fixfile are used to correct the file. fixfile
takes the output from guide and does it's own dumpgroup and fixgroup. I
use dump/fixgroup mostly because I like to see what's happening.

My steps:
1. get exclusive access to the file
2. create OS level copy of the file
3. use "RECORD" to get the other items in the group (RECORD OPEN.MO
082352500) within UniData
4. Dump the group (DUMPGROUP OPEN.MO 1327 -dopenmo1327) from the OS
prompt 5. Fix the group (FIXGROUP OPEN.MO 1327 -iopenmo1327) also from
the OS prompt (the options are lowercase and can not have a space after
them) 6. verify the file is OK (GUIDE OPEN.MO -O) from the OS 7. verify
that your data is all there using the list of items from step 3.
Edit the records. You can create a VOC entry to your backup copy to
compare if things don't look right.

There is a section in the Administering UniData document on File
Corruption that explains all of the above.

There is also an "Advanced File Fixing for UniData" document. I'm not
sure if I got it from the website or the support disc that they send
out.

hth
Colin Alfke
Calgary, Canada

-----Original Message-
From: Buffington, Wyatt

We are running UniData 6.0.4 on an HP.UX 11 and the following error
keeps
appearing:

   2:blk check error in U_catch_tuple for file 'OPEN.MO', key
'082352500',
number=1327

I have run following command:

   :!guide OPEN.MO -o

   OPEN.MO
 Basic statistics:
   File type... Dynamic Hashing
   File size
 [dat001].. 8129536
 [over001]. 43686912
   File modulo. 7937
   File minimum modulo. 7937
   File split factor... 60
   File merge factor... 40
   File hash type.. 1
   File block size. 1024
 File Integrity:
   Group 1327, block 1328, record number 3 = "082352500"
 offset occurs in wrong order 35587084
   Group 1327, block 34753, record number 3 = "082352500"
 offset error 35587084
   Group 1327, block 34753, record number 2 = "076754900"
 record length of 414 is wrong.
   Group 1327, block 34753, record number 3 = "082352500"
 record length of 1035 is wrong.
   Group 1327, block 34753 bytes used 1449 and bytes left 989 are
inconsistent
   Free blocks in overflow file(s). 7982
 Management advice:
This file's integrity has been compromised,
   please repair it.
   Files processed:1
   Errors encountered: 5

We need to fix this problem, but the manuals are pretty vague on what
steps are required.
Do I use 'guide' and 'fixfile' or do I use 'verify2', 'dumpgroup' and
'fixgroup'?
Can anyone help me with this?

Wyatt Buffington
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] Corrupt file

2008-04-24 Thread Buffington, Wyatt
We are running UniData 6.0.4 on an HP.UX 11 and the following error
keeps appearing:

   2:blk check error in U_catch_tuple for file 'OPEN.MO', key
'082352500', number=1327

I have run following command:

   :!guide OPEN.MO -o

   OPEN.MO
 Basic statistics:
   File type... Dynamic Hashing
   File size
 [dat001].. 8129536
 [over001]. 43686912
   File modulo. 7937
   File minimum modulo. 7937
   File split factor... 60
   File merge factor... 40
   File hash type.. 1
   File block size. 1024
 File Integrity:
   Group 1327, block 1328, record number 3 = "082352500"
 offset occurs in wrong order 35587084
   Group 1327, block 34753, record number 3 = "082352500"
 offset error 35587084
   Group 1327, block 34753, record number 2 = "076754900"
 record length of 414 is wrong.
   Group 1327, block 34753, record number 3 = "082352500"
 record length of 1035 is wrong.
   Group 1327, block 34753 bytes used 1449 and bytes left 989 are
inconsistent
   Free blocks in overflow file(s). 7982
 Management advice:
This file's integrity has been compromised,
   please repair it.
   Files processed:1
   Errors encountered: 5

We need to fix this problem, but the manuals are pretty vague on what
steps are required.
Do I use 'guide' and 'fixfile' or do I use 'verify2', 'dumpgroup' and
'fixgroup'?
Can anyone help me with this?

Wyatt Buffington
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] unibasic select woes

2007-05-30 Thread Buffington, Wyatt
Try: SELECT HRPER WITH EVAL "UPCASE(HRP.LAST.NAME)" LIKE 'SC...' 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Greg Schraiber
Sent: Wednesday, May 30, 2007 12:28 PM
To: u2-users@listserver.u2ug.org
Subject: [U2] unibasic select woes

How does one select alpha-numeric data from a unidata datafile using
SELECT when the case of the text is not known?

I have tried things like:
SELECT HRPER WITH UPCASE(HRP.LAST.NAME) LIKE 'SC...'
but all I get is a syntax error.

Can someone tell me which function(s) can be used to facilitate this
type of search?

Any help is greatly appreciated!

Thank you,
Greg
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] @VARIABLES

2007-03-22 Thread Buffington, Wyatt
We define variables for the various @ statements

**Screen clearing options
  CS   = @(-1)   ;**Clear Screen
  EOS  = @(-3)   ;**Clear to End Of Screen
  EOL  = @(-4)   ;**Clear to End Of Line

**Define various ways to emphasize certain data/labels
  SBV  = @(-5)   ;**Start Blink Video
  EBV  = @(-6)   ;**End Blink Video
  SRV  = @(-13)  ;**Start Reverse Video
  ERV  = @(-14)  ;**End Reverse Video
  SUL  = @(-15)  ;**Start UnderLine video
  EUL  = @(-16)  ;**End UnderLine video

**Useful for placing boxes around information
  SGM  = @(-27)  ;**Start Graphics Mode
  EGM  = @(-28)  ;**End Graphics Mode

**Cursor movements
  CUB  = @(-9)   ;**CUrsor Backward
  CUU  = @(-10)  ;**CUrsor Up a line
  CUD  = @(-33)  ;**CUrsor Down a line
  CUF  = @(-34)  ;**CUrsor Foreward

**Use the following to indicate text input fields
  SRT.BOLD = @(-81)  ;**Start BOLD font
  END.BOLD = @(-82)  ;**End BOLD font 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Sanjeebkumar
Sarangi
Sent: Thursday, March 22, 2007 7:52 AM
To: u2-users@listserver.u2ug.org
Subject: [U2] @VARIABLES

Hi

CRT @(2,15):@(-4):@(2,15):
Basically when we use @(-4) ,it should go to the end of line...but when
I tried the above statement I could not understand what it exactly
did...I also tried by giving different x and y coordinate values ..ie
CRT @(23,45):@(-4):@(23,45)..but the result seemed similar.I could
not find the difference.Please help in this regard.
Thanks,
Sanjeeb
=-=-=
Notice: The information contained in this e-mail message and/or
attachments to it may contain confidential or privileged information. If
you are not the intended recipient, any dissemination, use, review,
distribution, printing or copying of the information contained in this
e-mail message and/or attachments to it are strictly prohibited. If you
have received this communication in error, please notify us by reply
e-mail or telephone and immediately and permanently delete the message
and any attachments. Thank you
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] What Good Are Associations?

2006-10-06 Thread Buffington, Wyatt
I treat our dictionaries as the Bible. If you add a mutli-valued field that is
associcated with another multi-valued field, then the dictionary entries must
have the same association. This is also very helpful to a programmer
(especially the new guy in the group) when revised or writing another program
that needs to access other same fields. The association is used with ODBC
calls and will also assist when it comes time to convert to another system.
It is very important that when a program removes or inserts from a
multi-valued field that it does so in all associated multi-valued fields. So
if your dictionary in not up to date, you are asking for trouble.

 _/  _/  _/_/_/_/
_/  _/  _/ _/
   _/  _/  _/  _/_/_/_/
  _/  _/  _/  _/ _/
 _/_/_/_/_/ yatt _/_/_/_/ uffington

AMMS Support
(474-4553)
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Unidata LIMIT command

2006-09-08 Thread Buffington, Wyatt
I found the answer to my question by typing HELP LIMIT at the colon
prompt.
It says that the limits are not configurable.

:HELP LIMIT
 
 Help Information For: "UNIDATA LIMIT"
Page: 1/3
 
LIMIT
 
Syntax
 
LIMIT
 
Description
 
The ECL LIMIT command displays maximum size limits for elements of
UniData. These limits are not configurable.
See Using UniQuery for more information on limits to UniQuery
parameters.
  

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Buffington,
Wyatt
Sent: Friday, September 08, 2006 10:33 AM
To: u2-users@listserver.u2ug.org
Subject: [U2] Unidata LIMIT command

Does anyone know how to change a value of U_MAXFNAME that appears in the
LIMIT list?
Run are running Unidata 6.0.4 on a HPUX 11.0. We need to change this
value to 49.
:LIMIT
U_MAXFNAME:  Unix file name limit =  46.
U_NAMESZ:Record id(key) size =   126.
U_SELEMAX:   Number of select list = 10.
U_MAXDATA:   Number of DATA statement =  500.
U_HEADSZ:HEADER/FOOTER length =  2120.
U_MAXHASHTYPES: Number of hash functions =   3.
U_MAXSORT:   Number of sort fields(BY...) in LIST =  20.
U_MAXWITH:   WITH stack size =   256.
U_MAXWHEN:   WHEN stack size =   60.
U_MAXCAL:Number of SUM+AVG+PCT+CAL in LIST = 54.
U_MAXBREAK:  Number of BREAK.ON+BREAK.SUP in LIST =  15.
U_MAXLIST:   Number of attribute names in LIST = 999.
U_LINESZ:Page width in printing =272.
U_PARASIZE:  Paragraph name and its parameter size = 256.
U_LPCMD: System spooler name =   lp -c .
U_MAXPROMPT: Number of prompts allowed in paragraph =  60.
U_FSIZE: Dictionary field name size =31.
U_MAXVALUE:  Number of values WHEN can handle =  10240.
U_MAXBYEXPVAL:  Number of values BY.EXP can handle =  10240.
U_SENTLEN:   Maximum sentence length =   9247.
U_PROCBUFSZ:  Proc buffer size = 4095.
U_NIDES: Maximum number of virtual fields in query=  256.
:

Wyatt Buffington
Manitoba Hydro
AMMS Support
Systems Developer
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] Unidata LIMIT command

2006-09-08 Thread Buffington, Wyatt
Does anyone know how to change a value of U_MAXFNAME that appears in the
LIMIT list?
Run are running Unidata 6.0.4 on a HPUX 11.0. We need to change this
value to 49.
:LIMIT
U_MAXFNAME:  Unix file name limit =  46.
U_NAMESZ:Record id(key) size =   126.
U_SELEMAX:   Number of select list = 10.
U_MAXDATA:   Number of DATA statement =  500.
U_HEADSZ:HEADER/FOOTER length =  2120.
U_MAXHASHTYPES: Number of hash functions =   3.
U_MAXSORT:   Number of sort fields(BY...) in LIST =  20.
U_MAXWITH:   WITH stack size =   256.
U_MAXWHEN:   WHEN stack size =   60.
U_MAXCAL:Number of SUM+AVG+PCT+CAL in LIST = 54.
U_MAXBREAK:  Number of BREAK.ON+BREAK.SUP in LIST =  15.
U_MAXLIST:   Number of attribute names in LIST = 999.
U_LINESZ:Page width in printing =272.
U_PARASIZE:  Paragraph name and its parameter size = 256.
U_LPCMD: System spooler name =   lp -c .
U_MAXPROMPT: Number of prompts allowed in paragraph =  60.
U_FSIZE: Dictionary field name size =31.
U_MAXVALUE:  Number of values WHEN can handle =  10240.
U_MAXBYEXPVAL:  Number of values BY.EXP can handle =  10240.
U_SENTLEN:   Maximum sentence length =   9247.
U_PROCBUFSZ:  Proc buffer size = 4095.
U_NIDES: Maximum number of virtual fields in query=  256.
:

Wyatt Buffington
Manitoba Hydro
AMMS Support
Systems Developer
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Duplicate Print Jobs

2006-06-02 Thread Buffington, Wyatt
We've had this problem before. Had to set the buffer on the printer from
'Auto' to the maximum setting and all was well. 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Friday, June 02, 2006 11:41 AM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] Duplicate Print Jobs


> Karl,
>
>> When we print very large jobs, either to HP laser printers with a 
>> JetDirect card, or to label printers, on a JetDirect print server, 
>> the job prints fine, then starts over. I've been thinking it might be

>> a buffer overflow, but can't track it down.
>>
>>
> We have had similar issues due to a flaky network cables -- the jobs 
> kept erroring and AIX would just restart the job.
> What platform are you on? perhaps it is your local queue config -- I 
> would try sending a large job from an non-U2 source and see what
happens.

We are on AIX 5.2, but could set the printer up on a PC somewheres. How
large a job? Do you know? One printer is dedicated to checks, so it may
be tough to get a big enough job to test with, however that's not as bad
as it is now.

The other printer is a label printer and it's going to be a bear to
trouble shoot. Our month-end jobs, which go to an Okidata 421 don't have
any problems like this. They have different problems...

Thanks,

Karl

>
>
>
> Craig
> ---
> u2-users mailing list
> u2-users@listserver.u2ug.org
> To unsubscribe please visit http://listserver.u2ug.org/
>


--
karl

 _/  _/  _/  _/_/_/      __o
_/ _/   _/  _/_/   _-\<._
   _/_/_/  _/_/_/ (_)/ (_)
  _/ _/   _/  _/   ..
 _/   _/ arl _/_/_/  _/ earson[EMAIL PROTECTED]

--
IT Director, ATS Industrial Supply, Inc.
http://www.atsindustrial.com
Toll-free: 800-789-9300 x29
Direct2Desk: 801-978-4429
Facsimile: 801-972-3888
--
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] [AD] Courtesy Posting - Need Unidata/ System Builder - Programmer/Analyst - Financial Systems

2005-11-22 Thread Buffington, Wyatt
I sure the abbreviation for Maryland in not MB, because there is no B in
Maryland and
I'm sure there is no city in Manitoba called Baltimore. 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Debster
Sent: Tuesday, November 22, 2005 12:18 AM
To: [EMAIL PROTECTED] U2ug. Org
Subject: [U2] [AD] Courtesy Posting - Need Unidata/ System Builder -
Programmer/Analyst - Financial Systems

Need Unidata/ System Builder - Programmer/Analyst - Financial Systems
Contract 6-12 months Essential Job Functions
LOC: Baltimore MB
This req is for an existing client!

This position is responsible for the planning, execution, and
maintenance of financial systems used to manage and report on the
business on a day-to-day basis.  Web-based, Windows GUI, and
character-based systems are utilized to support these functions.
Specific job functions include:

Core Responsibilities:

o   Design, implementation and maintenance of complex financial
systems
utilizing state of the art technologies that support the financial,
operational, and supply-chain systems.
o   Development of user and system documentation.
o   Support for new and existing system modules.
o   Facilitation of training for users in use of new modules.
o   Coordination of development efforts on major information system
projects.
o   Analysis and implementation of systems used to integrate
business units.
o   Analysis of functional business requirements and evaluation of
alternate
solutions to complex business problems.
o   Design, coding and configuration of data transformations and
flows using
EAI tools such as MS BizTalk and IBM DataStage
o   Participation in the review process after implementation to
ensure a
quality product.

Requirements:

o   Bachelor's degree in Computer Science or related field.
o   Four to six years of financial systems experience with
demonstrated
success in the design, documentation, development and implementation of
business information systems.
o   Knowledge of accounting functions in the areas of A/R, A/P, G/L,
etc.
o   Demonstrated competence in Pick Basic language and Unidata DBMS.
o   Experience with IBM System Builder 4GL
o   Strong organizational skills with the ability to coordinate and
prioritize
multiple and complex projects.
o   Basic knowledge of all phases of systems analysis, design,
programming,
testing and implementation.
o   Experience with Financial and/or Distribution applications.
o   Excellent problem solving, communication and organizational
skills.
Motivated self-study skills in learning existing software modules and
programming code.
o   Experience with Redback Web development and EDI is desired.



***
TO APPLY SEND  RESUME AND :  HIT THE REPLY BUTTON TO REPLY





Regards,

Jolly Paily
267-590-1100 ext-24 Direct
267-590- Fax

Pronto Solutions LLC
195 Bristol Oxford Valley Road, #201
Langhorne, PA-19047
http://www.prontosol.com
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Is there a method to suppress printing the Banner page after the fact?

2005-10-21 Thread Buffington, Wyatt
Yes. In your SETPTR add NHEAD or NOHEAD as one of the options before you
spool.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Denny Watkins
Sent: Friday, October 21, 2005 7:20 AM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] Is there a method to suppress printing the Banner page
after the fact?


I'm sorry but the print-ready files on our system do not have any data 
pertaining to the BANNER
anywhere in the file.

The info regarding the banner must be somewhere else.

Denny


At 07:58 AM 10/21/2005 +1000, you wrote:
>If you look at the print-ready file in usr/spool/uv (or wherever it is
>that your UVSPOOL points to), it already has the banner page; this is 
>added by the generating process.  So, the only way you could "suppress"

>the header would be to direct the job to another "printer" that uses a 
>special driver to remove the banner page.  Such a script should not be 
>difficult to create; you seek to remove all lines up to and including
the 
>second form-feed character.
>
>- Original Message -
>From: "Denny Watkins" <[EMAIL PROTECTED]>
>To: u2-users@listserver.u2ug.org
>Subject: [U2] Is there a method to suppress printing the Banner page
>after  the fact?
>Date: Thu, 20 Oct 2005 09:14:12 -0500
>
> >
> > We are running UniVerse release 9.6.2.5 under IBM AIX 4.3.3 on an 
> > IBM F50.
> >
> > Question:
> >
> > Is there a way to suppress the printing of the 'banner' page after a

> > print job has already been submitted and is in the queue but did not

> > have the parameter NHEAD or NOHEAD set to suppress printing the 
> > banner?
> >
> > Thanks,
> >
> >
> > Denny Watkins
> > Director Computer Services
> > Morningside College
> > 1501 Morningside Ave
> > Sioux City, Ia 51106-1717
> >
> > Phone:  1-712-274-5250
> >
> > Email:   [EMAIL PROTECTED]
> > ---
> > u2-users mailing list
> > u2-users@listserver.u2ug.org
> > To unsubscribe please visit http://listserver.u2ug.org/
>---
>u2-users mailing list
>u2-users@listserver.u2ug.org
>To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Source Code Management

2005-09-29 Thread Buffington, Wyatt
We created our own source code management routines.
Complete with string search in programs and dictionaries,
master program file, master dictionary file and dictionary
editor, moving of source code programs and dictionaries
from a developer account to a tester account, back to the
main source directory and finally into production. There
is also a routine for creating development, training and
testing accounts from production backups.

It does the job quite well, our only problem comes when
a developer tries to bypass the processes we set up to
make a quick change.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Thursday, September 29, 2005 1:11 PM
To: u2-users@listserver.u2ug.org
Subject: [U2] Source Code Management


All,

The thread regarding the "good programming practices" and comments
regarding versioning raised some questions for me.

What tool are you using for source code management? What are its
benefits and disadvantages? I'm specifically interested in version
controlpreferably Unix-based. If you have vendor information, please
provide that as well.

In a previous life, I used something called sccs - I don't know if it's
a current offering in the marketplace?


Thanks!!!

Karen Bessel
Programmer/Analyst
Ferguson Enterprises Inc.
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] [UD] Files from UD Unix to UD Windows

2004-11-04 Thread Buffington, Wyatt
>From what I just found out, I need to change some windows settings.
Do you have any ideas what they might be?


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Thursday, November 04, 2004 12:40 PM
To: [EMAIL PROTECTED]
Subject: RE: [U2] [UD] Files from UD Unix to UD Windows


I connected using my favorite handy-dandy windows-based ftp program.

Bruce M Neylon
Health Care Management Group 





"Buffington, Wyatt" <[EMAIL PROTECTED]>
Sent by: [EMAIL PROTECTED]
11/03/2004 02:54 PM
Please respond to u2-users

 
To: <[EMAIL PROTECTED]>
cc: 
Subject:RE: [U2] [UD] Files from UD Unix to UD Windows

I would be interested in knowing how you got the FTP to work.

I have tried here, but to no avail.

I have got a SmarTerm (Terminal emulator) macro to ftp back
and forth, but I need a way of Window$/Unix to do this also.
I have tried windows .bat files and unix ftp commands, nothing works.
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] [UD] Files from UD Unix to UD Windows

2004-11-03 Thread Buffington, Wyatt
I would be interested in knowing how you got the FTP to work.

I have tried here, but to no avail.

I have got a SmarTerm (Terminal emulator) macro to ftp back
and forth, but I need a way of Window$/Unix to do this also.
I have tried windows .bat files and unix ftp commands, nothing works.



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Wednesday, November 03, 2004 12:26 PM
To: [EMAIL PROTECTED]
Subject: [U2] [UD] Files from UD Unix to UD Windows


Is there a way to use files ftp'ed from UD on UNIX to UD on Windows XP?

I'm not going to bore you with why other than I want to know if I can do

it.   I ftp the file, set up the voc pointer and I get the message "File

D_FILE.837 does not belong to current language group" 

Any ideas?

Bruce M Neylon
Health Care Management Group 
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Importing data from OS file

2004-07-22 Thread Buffington, Wyatt
So what is the suggestion?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Tom Firl
Sent: Tuesday, July 20, 2004 12:59 PM
To: [EMAIL PROTECTED]
Subject: RE: [U2] Importing data from OS file


> An easy way (if you are on a Linux/Unix box), would be to create a 
> pseudo-floppy drive on your system in the &DEVICE& file

Lee,

Thanks for the suggestion.  I was aware of this capability on UNIX
platforms, but I require a solution that works on UNIX and Windows, as
well as jBASE and Universe.  In the absence of standard bulk file
loading utility for MV, I started working on my own.

Tom Firl
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Importing data from OS file

2004-07-20 Thread Buffington, Wyatt
How does one go about to create this &DEVICE& file?
This is something that would help me greatly.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Tom Firl
Sent: Tuesday, July 20, 2004 12:59 PM
To: [EMAIL PROTECTED]
Subject: RE: [U2] Importing data from OS file


> An easy way (if you are on a Linux/Unix box), would be to create a 
> pseudo-floppy drive on your system in the &DEVICE& file

Lee,

Thanks for the suggestion.  I was aware of this capability on UNIX
platforms, but I require a solution that works on UNIX and Windows, as
well as jBASE and Universe.  In the absence of standard bulk file
loading utility for MV, I started working on my own.

Tom Firl
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Creating a comma seperated flat file in UniData.

2004-07-15 Thread Buffington, Wyatt
Is there anything special one needs to set up to be able to write the
file to your C or D drives?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Thursday, July 15, 2004 1:23 PM
To: [EMAIL PROTECTED]
Subject: RE: [U2] Creating a comma seperated flat file in UniData.


LIST [DICT] filename [record_IDs] [selection_criteria]
[sorting_criteria] [attributes | ALL] [format_options] [report_options]
[TO [DELIM "char"] text_file]
 
   Unidata 5.2
   query...
 :LIST A.FILE WITH JUNK="1" TO DELIM "," D:\TEMP\JUNK.CSV

   Marty
 
-Original Message-
From: Al DeWitt [mailto:[EMAIL PROTECTED]
Sent: Thursday, July 15, 2004 1:11 PM
To: [EMAIL PROTECTED]
Subject: [U2] Creating a comma seperated flat file in UniData.


OS: Windows 2K
U2: UniData 6.0.6
System Builder 5.2.4
 
I'm suffering a senior moment.  I need to output a comma separated file
to disk for importation into a 3rd party application.  System Builder is
too cumbersome (from what I can see) and want to do it in UniBasic.
However, I have forgotten how to the command(s) to create a new flat
file in an existing folder.  So some examples would be helpful.
 

Al DeWitt 
Stylmark, Inc. 
763-574-8705 
[EMAIL PROTECTED] 
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


This e-mail may be privileged and/or confidential, and the sender does
not waive any related rights and obligations. Any distribution, use or
copying of this e-mail or the information it contains by other than an
intended recipient is unauthorized. If you received this e-mail in
error, please advise me (by return e-mail or otherwise) immediately. 



---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] [OT] SAP

2004-07-15 Thread Buffington, Wyatt
You POOR guy... If not now, soon to be.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Thursday, July 15, 2004 10:44 AM
To: u2-Users
Subject: [U2] [OT] SAP


Hi all,

There are rumblings around our company about moving to an SAP package.
What is SAP all about?  What language is it written in?  Any other info
would be greatly appreciated.

Thanks,

Scott
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] HTTPS

2004-06-22 Thread Buffington, Wyatt
Please see the following courtesy of Wendy Smoak:

There's some CallHTTP code on the Wiki:
http://www.pickwiki.com/cgi-bin/wiki.pl?CallHTTPWithSSL ,just
Change the POST to GET and change the third parameter in the
submitRequest to something like X.GET.DATA.
The acutally document will be placed in that variable.



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Tuesday, June 22, 2004 9:44 AM
To: u2-Users
Subject: [U2] HTTPS


Hi all,


UV9.6.1.14, HPUX 11

I have a user that routinely logs into a website to download a
spreadsheet.  I would like to automate this process from Universe.  I
had played around with callHTTP but never got it to work real well.
Does anyone have any good documentation on how this works?  Keep in mind
that I am a real dope when it comes to internet technology.

Thanks in advance,

Scott
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/