[U2] SAVE-LIST [FILENAME] LISTNAME

2009-07-15 Thread George Gallen
This drove me nutsI would save it into a file, thinking it was the reverse of FORM.LIST, didn't give me any errors, but it never showed up in the file. I didn't notice the part (in the RTFM) about it works only with type 1 or type 19 files. Funny, after I coverted my file over to a type

Re: [U2] SAVE-LIST [FILENAME] LISTNAME

2009-07-15 Thread Charles Stevenson
Cute. Just think what would have happened, if you had named your list DATA.30 ! I can't think of a way to SAVE.LIST to a hashed file, other than 2 step: SAVE.LIST XYZ COPYI FROM SAVEDLISTS TO [hashed file] XYZ OVERWRITING DELETING HUSH Going the other direction, there are 2 ways,

Re: [U2] SAVE-LIST [FILENAME] LISTNAME

2009-07-15 Thread Colin Jennings
SoIs there a reverse of FORM.LIST? that is take a LIST and write it as an item to a file? This is UV 10.0.3 Hi George. If you SAVE.LIST filename listname then that will save the list anywhere you like. The filename has to be a type 1 or type 19 file though. Regards Colin.

Re: [U2] SAVE-LIST [FILENAME] LISTNAME

2009-07-15 Thread George Smith
Outside the U2 world (mvBase, Reality) you can just COPY-LIST xyz (fname item I'd be surprised if that didn't work in U2 as well. On Wed, Jul 15, 2009 at 4:22 PM, Colin Jennings colin.jenni...@btconnect.com wrote: SoIs there a reverse of FORM.LIST? that is take a LIST and write it as an

Re: [U2] COMMON misMatch

2009-07-15 Thread Brutzman, Bill
A user here obtained an error message... COMMON size mismatch in subroutine HOP.R87. Upon logging out and then logging back in again... The HOP program was able to launch without this error. Help with a diagnosis and more reliable cure would be appreciated. This user is WinXP /

[U2] ODBC to UPS WorldShip

2009-07-15 Thread Brutzman, Bill
Using a Windows PC, I am able to obtain a bona fide ODBC connection to UniVerse... and then import UV data to Excel. However... When I try to connect from United Parcel Service's WorldShip v11, WorldShip hangs up with Windows Task Manager indicating Not Responding. I had the same bad result on

Re: [U2] ODBC to UPS WorldShip

2009-07-15 Thread Steve Romanow
I am in the process of doing this right now. What version of the ibm odbc driver do you have installed? My var warned me against one version, but they didn't elaborate why. Are you a SHIMS or Prelude shop? -Original Message- From: Brutzman, Bill bi...@hkmetalcraft.com Sent:

Re: [U2] COMMON misMatch

2009-07-15 Thread Jacques G.
Someone probably compiled the program you were in  while you were in it.   When you went back, you got the new version when you executed it again. - Original Message From: Brutzman, Bill bi...@hkmetalcraft.com To: U2 Users List u2-users@listserver.u2ug.org Sent: Wednesday, July 15,

Re: [U2] SAVE-LIST [FILENAME] LISTNAME

2009-07-15 Thread Kebbon Irwin
Why not just do your FORM.LIST and then WRITE the resulting array to your file of choice? Otherwise, I am pretty sure the COPY.LIST command works (on Unidata at least). Cheers, Kebbon Date: Wed, 15 Jul 2009 16:36:04 -0700 From: grsassocia...@gmail.com To: u2-users@listserver.u2ug.org

Re: [U2] SAVE-LIST [FILENAME] LISTNAME

2009-07-15 Thread Kebbon Irwin
Oops, my bad. I should have said use READLIST, or READSELECT (I use basictype P) and then write the array out. Date: Wed, 15 Jul 2009 16:36:04 -0700 From: grsassocia...@gmail.com To: u2-users@listserver.u2ug.org Subject: Re: [U2] SAVE-LIST [FILENAME] LISTNAME Outside the U2 world