From Harold.A.Johnson@gems1.gov.bc.ca Fri Aug 1 00:05:41 2003 From: Harold.A.Johnson@gems1.gov.bc.ca (Johnson, Harold A EDUC:EX) Date: Thu, 31 Jul 2003 16:05:41 -0700 Subject: powerh-l digest, Vol 1 #739 - 9 msgs Message-ID: <0942C9E7BCB2164F997A601AF1098770AC16C6@candle.gov.bc.ca> You can't actually "make" them use the same login.com, as the login.com CAN be disabled/ignored on login. You should use a group login.com instead, which will always be run and can't be disabled. -----Original Message----- From: Olmos, Fernando (Sericon at Alcoa) [mailto:Fernando.Olmos@alcoa.com.au] Sent: 2003 July 31 3:53 PM To: 'Desmond Dujon Henry'; powerh-l@cube.swau.edu Subject: RE: powerh-l digest, Vol 1 #739 - 9 msgs Give them all access to single folder (perhaps under the same UIC, and put an @RUNCOMMONLOGIN.COM in their individual LOGIN.COM. > -----Original Message----- > From: Desmond Dujon Henry [mailto:henrydd@candw.lc] > Sent: Thursday, July 31, 2003 12:00 PM > To: powerh-l@cube.swau.edu > Subject: Re: powerh-l digest, Vol 1 #739 - 9 msgs > > > HI all > > I have 100 users on vms v7.3-1 using uic's [200,*] > > How can I make all of them use the same login.com? > thanks > = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. From Valentin Likoum Fri Aug 1 04:16:29 2003 From: Valentin Likoum (Valentin Likoum) Date: Fri, 1 Aug 2003 08:16:29 +0500 Subject: Re[2]: Compile all files: try again In-Reply-To: References: Message-ID: <931354385.20030801081629@ncc.volga.ru> On 31.07.2003 Hamilton, Allison wrote: > MMS is Module Management System, the OpenVMS build management product (sort > of like make) often used with CMS, the Code Management System for source > control. And MMK is freeware analog of MMS. It can be found on the Freeware CD or on the Hunter Goatley' site http://www.madgoat.com/mmk.html. It can work with CMS as well, but we used to use CVS for source control. -- Valentin Likoum valentin.likoum at ncc dot volga dot ru From tifre@wmdata.com Fri Aug 1 12:45:46 2003 From: tifre@wmdata.com (Frederiksen Tim) Date: Fri, 1 Aug 2003 13:45:46 +0200 Subject: Problems with Special characters in AXIANT Thin Client Message-ID: <00447476B925D51198E000508B6F0DDC010DF71B@WMSI000272> This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. ------_=_NextPart_001_01C35822.71F6D500 Content-Type: text/plain; charset="iso-8859-1" Hello, I have a problem with special danish characters, when retrieving data from a CISAM table stored on AIX/UNIX server. The tables a accessed throw AXIANT server on the UNIX, to a thin Windows AXIANT client. I think the problems is, the CISAM files are stored in a UNIX 8-bit ACSII character set, and are not converted into a windows characterset when send to the AXIANT client. I had the same problem with our ORACLE base but setting the variable NLS_LANG into a windows character set in the PH8INIT file was the solution. (our ORACLE base is also in a 8-bit ASCII characterset ) Since we are converting a POWERHOUSE application, we can't just convert the CISAM datafiles into and windows characterset, because we still want the POWERHOUSE application running. We need some kind of setup that converts data on run time. Regards Tim Frederiksen ------_=_NextPart_001_01C35822.71F6D500 Content-Type: text/html; charset="iso-8859-1"
Hello,  
I have a problem with special danish characters, when retrieving data from a CISAM table stored on AIX/UNIX server.
The tables a accessed throw AXIANT server on the UNIX,  to a thin Windows AXIANT client.
 
I think the problems is, the CISAM files are stored in a UNIX 8-bit ACSII character set,
and are not converted into a windows characterset when send to the AXIANT client.
 
I had the same problem with our ORACLE base but setting the variable NLS_LANG into a windows character set
in the PH8INIT file was the solution. (our ORACLE base is also in a 8-bit ASCII characterset )
 
Since we are converting a POWERHOUSE application, we can't just convert the CISAM datafiles into
and windows characterset, because we still want the POWERHOUSE application running.
 
We need some kind of setup that converts data on run time. 
 
Regards
Tim Frederiksen
 
 
------_=_NextPart_001_01C35822.71F6D500-- From shediac92@hotmail.com Fri Aug 1 14:25:21 2003 From: shediac92@hotmail.com (Peter Bateman) Date: Fri, 01 Aug 2003 10:25:21 -0300 Subject: Problems with Special characters in AXIANT Thin Client Message-ID: Tim: You can change the code page that is running on your PC. You want to try it. But if ORACLE is working correctly you may also need to change your NLS_LANG setting. I think you need to find out exactly in what code page the C-ISAM data is written. You may have to write you own conversion routines. PROCEDURE OUTPUT C-ISAM-STRING BEGIN DO EXTERNAL CONVERT_TO_WINDOWS( C-ISAM-STRING, C-ISAM-WINDOWS ) LET FIELDTEXT = C-ISAM-WINDOWS END A few years ago Cognos created an .ini file entry to allow Interbase to do the data conversion. However, I don't if there exists a similiar function for C-ISAM. Good Luck, Peter Bateman >From: Frederiksen Tim >To: "'powerh-l@lists.swau.edu'" >Subject: Problems with Special characters in AXIANT Thin Client >Date: Fri, 1 Aug 2003 13:45:46 +0200 > >Hello, > >I have a problem with special danish characters, when retrieving data from >a >CISAM table stored on AIX/UNIX server. >The tables a accessed throw AXIANT server on the UNIX, to a thin Windows >AXIANT client. > >I think the problems is, the CISAM files are stored in a UNIX 8-bit ACSII >character set, >and are not converted into a windows characterset when send to the AXIANT >client. > >I had the same problem with our ORACLE base but setting the variable >NLS_LANG into a windows character set >in the PH8INIT file was the solution. (our ORACLE base is also in a 8-bit >ASCII characterset ) > >Since we are converting a POWERHOUSE application, we can't just convert the >CISAM datafiles into >and windows characterset, because we still want the POWERHOUSE application >running. > >We need some kind of setup that converts data on run time. > >Regards >Tim Frederiksen > > _________________________________________________________________ STOP MORE SPAM with the new MSN 8 and get 2 months FREE* http://join.msn.com/?page=features/junkmail From bayntonk@ElectionsOntario.on.ca Fri Aug 1 18:33:36 2003 From: bayntonk@ElectionsOntario.on.ca (Kenn Baynton) Date: Fri, 1 Aug 2003 13:33:36 -0400 Subject: Conversion Questions Message-ID: The organization I am working for it in the early stages of a conversion from PH 7.1 and Interbase v3.3J on OpenVMS to PH 8.41C and Oracle on a WIN2K system. I am wondering if anyone has had experience with this type of procedure. My initial issue is how to convert our existing dictionary from a PHD system to PDC. I am relatively new to Powerhouse, and so I ask that any responses not be too "technical". Your collective help is greatly appreciated. Kenn From dmorrison@mcbrideelectric.com Fri Aug 1 19:10:51 2003 From: dmorrison@mcbrideelectric.com (David Morrison - Corporate) Date: Fri, 1 Aug 2003 11:10:51 -0700 Subject: Using ALTEREDRECORD in QTP Message-ID: <95E33F6AAE73984CA53417395C3DAC677B518F@srvrexchange.mcb_corp.mcbrideelectric.com> I'm running PH607F on an iSeries (AS/400). I'm not sure if that matters or not. Here's my test program, carved out of a much larger one with lots of ITEM statements: ------------ access spo_vendor_master choose company_number "001", location_number "013", & vendor_number "GRAY01" output spo_vendor_master UPDATE ITEM vendor_zip FINAL vendor_zip + 1 ITEM vendor_maintained_date FINAL SYSDATE & IF ALTEREDRECORD OF spo_vendor_master ---------- When executed, the test program updates the ZIP code in the vendor master, but doesn't update the maintained date. 1. Shouldn't it? If not, when WOULD you use ALTEREDRECORD in QTP? 2. If it shouldn't, is there an easy alternative? Thanks. David Morrison From dmorrison@mcbrideelectric.com Fri Aug 1 19:27:03 2003 From: dmorrison@mcbrideelectric.com (David Morrison - Corporate) Date: Fri, 1 Aug 2003 11:27:03 -0700 Subject: Solution: Using ALTEREDRECORD in QTP Message-ID: <95E33F6AAE73984CA53417395C3DAC67AB2D6C@srvrexchange.mcb_corp.mcbrideelectric.com> I tried using ALTEREDRECORD to condition the output of a temporary subfile (containing the vendor key fields), right after the ITEM statements. This subfile can be used in a second request to go back and update the vendor record. This seemed to work properly, if inelegantly. Thanks. -----Original Message----- From: David Morrison - Corporate Sent: Friday, August 01, 2003 11:11 AM To: powerh-l@lists.swau.edu Subject: Using ALTEREDRECORD in QTP I'm running PH607F on an iSeries (AS/400). I'm not sure if that matters or not. Here's my test program, carved out of a much larger one with lots of ITEM statements: ------------ access spo_vendor_master choose company_number "001", location_number "013", & vendor_number "GRAY01" output spo_vendor_master UPDATE ITEM vendor_zip FINAL vendor_zip + 1 ITEM vendor_maintained_date FINAL SYSDATE & IF ALTEREDRECORD OF spo_vendor_master ---------- When executed, the test program updates the ZIP code in the vendor master, but doesn't update the maintained date. 1. Shouldn't it? If not, when WOULD you use ALTEREDRECORD in QTP? 2. If it shouldn't, is there an easy alternative? Thanks. David Morrison = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. _________________________________________________ Scanned on 01 Aug 2003 18:22:50 Scanning by http://erado.com From dennis@dhassell.com Sat Aug 2 05:32:40 2003 From: dennis@dhassell.com (Dennis Hassell) Date: Sat, 2 Aug 2003 00:32:40 -0400 Subject: Solution: Using ALTEREDRECORD in QTP In-Reply-To: Message-ID: IIRC (it's been a few years), open a second copy of the file for output, with an alias name. Then look up on A and update on A_ALIAS. You'll need a unique key to link the lookup to the output. Inside the program, make all the changes to A_ALIAS, and test for ALTEREDREC of A_ALIAS for the condition below. I'm curious, though - the UPDATE won't happen unless there is a condition of ALTEREDRECORD anyway, and then the FINAL kicks in. I think the condition is redundant. I've found QTP to be tough to work with when depending on the ITEM statements and IF conditions for anything much more than simple data transformation. I usually use the selection criteria to handle all of the if conditions, so everything selected (input phase) gets sorted (sort phase) and output (output phase). Input and output phases work differently with the conditions, so read up on them in the QTP manual. Dennis Hassell Dennis Hassell and Associates (941) 746-4919 (941) 224-3981 - cell -----Original Message----- From: powerh-l-admin@cube.swau.edu [mailto:powerh-l-admin@cube.swau.edu] On Behalf Of David Morrison - Corporate Sent: Friday, August 01, 2003 2:27 PM To: powerh-l@lists.swau.edu Subject: Solution: Using ALTEREDRECORD in QTP I tried using ALTEREDRECORD to condition the output of a temporary subfile (containing the vendor key fields), right after the ITEM statements. This subfile can be used in a second request to go back and update the vendor record. This seemed to work properly, if inelegantly. Thanks. -----Original Message----- From: David Morrison - Corporate Sent: Friday, August 01, 2003 11:11 AM To: powerh-l@lists.swau.edu Subject: Using ALTEREDRECORD in QTP I'm running PH607F on an iSeries (AS/400). I'm not sure if that matters or not. Here's my test program, carved out of a much larger one with lots of ITEM statements: ------------ access spo_vendor_master choose company_number "001", location_number "013", & vendor_number "GRAY01" output spo_vendor_master UPDATE ITEM vendor_zip FINAL vendor_zip + 1 ITEM vendor_maintained_date FINAL SYSDATE & IF ALTEREDRECORD OF spo_vendor_master ---------- When executed, the test program updates the ZIP code in the vendor master, but doesn't update the maintained date. 1. Shouldn't it? If not, when WOULD you use ALTEREDRECORD in QTP? 2. If it shouldn't, is there an easy alternative? Thanks. David Morrison = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. _________________________________________________ Scanned on 01 Aug 2003 18:22:50 Scanning by http://erado.com = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. From terrycurran@onetel.net.uk Sat Aug 2 09:01:26 2003 From: terrycurran@onetel.net.uk (Terry Curran) Date: Sat, 2 Aug 2003 09:01:26 +0100 Subject: Conversion Questions In-Reply-To: Message-ID: This is a multi-part message in MIME format. ------=_NextPart_000_0016_01C358D4.A9F91410 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit In order to convert your dictionary from PHD to PDC you must firt generate a PDL source file from QSHOW. Start QSHOW And then enter the command(s) SET LANGUAGE PDL GENERATE ALL EXIT This will create a PDL source file called QSHOGEN.PDL, this is a text file and can be edited normally. Start PDL, and enter the command(s) CREATE DICTIOANRY my_dictionary NOT PRELOADED USE QSHOGEN.PDL LOAD When the code has all whizzed pass PDL will load the dictioanry, and give you a summary of errors and warnings. Warnings can usually be ignored - but check them anyway, errors will stop the dictionary from loading. Its important to use NOT PRELOADED, as otherwise PDL will load standard usage definitions which will give errors when loading your source, as they are all included. Of course if you are on VMS, then the dictionary will be the usual 5 files, on those systems that don't use PHD, there will be a file called my_dictionary.pdc Full details of the PDL syntax are in the manual 'PDL Reference'. ------------------------------------------------------------------------ ---------------- This email is brought to you courtesy of 1 & 1, for more details please visit the link below http://oneandone.co.uk/xml/init?k_id=5753616 ------------------------------------------------------------------------ ---------------- -----Original Message----- From: powerh-l-admin@cube.swau.edu [mailto:powerh-l-admin@cube.swau.edu] On Behalf Of Kenn Baynton Sent: Friday, August 01, 2003 6:34 PM To: powerh-l@lists.swau.edu Subject: Conversion Questions The organization I am working for it in the early stages of a conversion from PH 7.1 and Interbase v3.3J on OpenVMS to PH 8.41C and Oracle on a WIN2K system. I am wondering if anyone has had experience with this type of procedure. My initial issue is how to convert our existing dictionary from a PHD system to PDC. I am relatively new to Powerhouse, and so I ask that any responses not be too "technical". Your collective help is greatly appreciated. Kenn = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. ------=_NextPart_000_0016_01C358D4.A9F91410 Content-Type: text/x-vcard; name="Terence Phillip Curran (terry.curran@towermarsh.co.uk).vcf" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="Terence Phillip Curran (terry.curran@towermarsh.co.uk).vcf" BEGIN:VCARD VERSION:2.1 N:Curran;Terence;Phillip FN:Terence Phillip Curran (terry.curran@towermarsh.co.uk) ORG:TowerMarsh Ltd TITLE:Managing Director TEL;WORK;VOICE:+44 (2392) 503893 TEL;HOME;VOICE:+44 (2392) 503893 TEL;CELL;VOICE:+44 (7720) 562048 ADR;WORK:;;130 Parham Road;Gosport;Hants;PO12 4UE;United Kingdom LABEL;WORK;ENCODING=3DQUOTED-PRINTABLE:130 Parham Road=3D0D=3D0AGosport, = Hants PO12 4UE=3D0D=3D0AUnited Kingdom URL;WORK:http://www.towermarsh.co.uk EMAIL;PREF;INTERNET:terry.curran@towermarsh.co.uk REV:20030301T095201Z END:VCARD ------=_NextPart_000_0016_01C358D4.A9F91410-- From Fernando.Olmos@alcoa.com.au Mon Aug 4 00:45:32 2003 From: Fernando.Olmos@alcoa.com.au (Olmos, Fernando (Sericon at Alcoa)) Date: Mon, 4 Aug 2003 07:45:32 +0800 Subject: VMS batch compile tricks 'n' tips. Have any? Message-ID: I used to have a really neat VMS dcl script, which would parse a text file full of QTP/QUIZ/QDESIGN files and compile them. It also had the ability to compile QUIZs and QTP that use subfiles, for which are not kept (ie: without the KEEP verb). Manually I have to do this by starting another session via the '$' command. ie: $QTP use program.qts nol use program-b.qts nol $$quiz use program-with-qtp-subfile.qzs nol etc etc Unfortunately in trying to put this into a DCL batch job, it crashes at the $$QUIZ stage because it is trying to interpret the command from within the same session. Does anyone have such a dcl around? Thanks From palandri@4j.lane.edu Mon Aug 4 02:22:05 2003 From: palandri@4j.lane.edu (palandri@4j.lane.edu) Date: Sun, 03 Aug 2003 18:22:05 -0700 (PDT) Subject: VMS batch compile tricks 'n' tips. Have any? In-Reply-To: References: Message-ID: <1126.128.223.210.28.1059960125.squirrel@www.4j.lane.edu> I haven't done it for a while, but here are some coms that work for a small system, definately not as sophisticated as a parser. SUBDEVL: type build.com !********************************************************************** ! BUILD.COM: Compiles all SUB source ! MAP 17-Jul-1996 ! ! For recompilation to work smoothly, please make sure that: ! ! 1. All SBA source is in a directory pointed to by logical SUB_SRC ! 2. This file, COMPILEQK.COM, COMPILEQTQZ.COM, COMPILEQTQZ1.USE, ! COMPILEQTQZ2.USE are in a directory pointed to by SUB_UTL. ! !********************************************************************** $ @SUB_UTL:COMPILEQK.COM $ @SUB_UTL:COMPILEQTQZ.COM $ EXIT !************************************************************************** ! COMPILEQK.COM: Compile SUB Quick source ! ! !************************************************************************** $ SET DEF SUB_SRC $ QDESIGN USE CHOOSE_SYSTEM_USER.QKS NOL USE CHOOSE_USER_ID.QKS NOL USE CHOOSE_WORK_LOC.QKS NOL USE GUSK300.QKS NOL USE SUBK000.QKS NOL USE SUBK001.QKS NOL USE SUBK010.QKS NOL USE SUBK015.QKS NOL USE SUBK020.QKS NOL USE SUBK030.QKS NOL USE SUBK110.QKS NOL USE SUBK120.QKS NOL USE SUBK121.QKS NOL USE SUBK122.QKS NOL USE SUBK123.QKS NOL USE SUBK124.QKS NOL USE SUBK125.QKS NOL USE SUBK140.QKS NOL USE SUBK141.QKS NOL USE SUBK142.QKS NOL USE SUBK144.QKS NOL USE SUBK180.QKS NOL USE SUBK182.QKS NOL USE SUBK200.QKS NOL USE SUBK201.QKS NOL USE SUBK401.QKS NOL USE SUBK402.QKS NOL USE SUBK403.QKS NOL USE SUBK404.QKS NOL USE SUBK405.QKS NOL USE SUBK406.QKS NOL USE SUBK410.QKS NOL USE SUBK421.QKS NOL USE SUBK422.QKS NOL USE SUBK430.QKS NOL USE SUBK431.QKS NOL USE SUBK450.QKS NOL USE SUBK501.QKS NOL USE SUBK510.QKS NOL USE SUBK700.QKS NOL USE SUBK701.QKS NOL USE SUBK702.QKS NOL USE SUBK703.QKS NOL USE SUBK704.QKS NOL USE SUBK705.QKS NOL USE SUBK706.QKS NOL USE SUBK900.QKS NOL USE SUBK901.QKS NOL USE SUBK902.QKS NOL USE SUBK903.QKS NOL USE SUBK904.QKS NOL USE SUBK905.QKS NOL USE SUBK906.QKS NOL USE SUBK907.QKS NOL USE SUBK908.QKS NOL $ EXIT SUBDEVL: type COMPILEQTQZ.COM !************************************************************************ ! COMPILEQTQZ.COM: Subfile aware compile of SUB Quiz & QTP ! ! Compiles a sequence of QTP and Quiz programs to handle subfile ! dependancies. ! ! COMPILEQTQZ.COM (This file) ! Compiles all QTP, creates ! COMPILEQTQZ1.USE ! Invokes Quiz as a subprocess of QTP. Runs COMPILEQTQZ2.USE on its ! AUTO= clause. ! COMPILEQTQZ2.USE ! Compiles all Quiz ! !************************************************************************ $ SET DEF SUB_SRC $ QTP NOLIST USE SUBT001.QTS NOL USE SUBT104.QTS NOL USE SUBT201.QTS NOL USE SUB_UTL:COMPILEQTQZ1.USE NOL SUBDEVL: type COMPILEQTQZ1.USE ;************************************************************************ ; COMPILEQTQZ1.USE: Compiles SUB QTP & Quiz ; See COMPILEQTQZ.COM for doc. ;************************************************************************ $ QUIZ AUTO=SUB_UTL:COMPILEQTQZ2.USE $ EXIT SUBDEVL: type COMPILEQTQZ2.USE ;************************************************************************ ; COMPILEQTQZ1.USE: Compiles SUB QTP & Quiz ; See COMPILEQTQZ.COM for doc. ;************************************************************************ USE SUBZ001.QZS NOL USE SUBZ100.QZS NOL USE SUBZ101.QZS NOL USE SUBZ102.QZS NOL USE SUBZ103.QZS NOL USE SUBZ104.QZS NOL USE SUBZ105.QZS NOL USE SUBZ200.QZS NOL USE SUBZ201.QZS NOL USE SUBZ202.QZS NOL USE SUBZ203.QZS NOL > I used to have a really neat VMS dcl script, which would parse a text > file full of QTP/QUIZ/QDESIGN files and compile them. It also had the > ability to compile QUIZs and QTP that use subfiles, for which are not > kept (ie: without the KEEP verb). Manually I have to do this by > starting another session via the '$' command. > ie: > $QTP > use program.qts nol > use program-b.qts nol > $$quiz > use program-with-qtp-subfile.qzs nol > etc > etc > > Unfortunately in trying to put this into a DCL batch job, it crashes at > the $$QUIZ stage because it is trying to interpret the command from > within the same session. > > Does anyone have such a dcl around? > > Thanks > = = = = = = = = = = = = = = = = = = = = = = = = = = = = > Mailing list: powerh-l@lists.swau.edu > Subscribe: "subscribe" in message body to > powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " > in message body to powerh-l-request@lists.swau.edu > http://lists.swau.edu/mailman/listinfo/powerh-l > This list is closed, thus to post to the list you must be a subscriber. From rmhill@core.com Mon Aug 4 15:16:21 2003 From: rmhill@core.com (Rick Hill) Date: Mon, 4 Aug 2003 10:16:21 -0400 Subject: Fw: Re: VMS batch compile tricks 'n' tips. Have any? Message-ID: <200308041416.h74EGLG6063538@mail5.mx.voyager.net> This is a multi-part message in MIME format. ------=NEOMAIL_ATT_0.94061027778648 Content-Type: text/plain; charset=iso-8859-1 Here's something that should be close to what you need. It's set up to only do quick screens, but you could expand it to also do QTP and QUIZ source. You'll need to define the location for "RC". -- Rick Hill $!--------------------------------------------------------------------- $! COMPILE.COM $!--------------------------------------------------------------------- $ OPEN/WRITE COMPILE_JOB RC:COMPILE_IT.COM $! $ WRITE/SYMBOL COMPILE_JOB "$ SET DEF [place to put executables]" $ DEFINE SYS$OUTPUT RC:COMPILE_RESULTS.LOG $ WRITE/SYMBOL COMPILE_JOB "$ QDESIGN CC=TRANS_ON" $! $ DEFINE/NOLOG DIRFILE_QKS "RC:qks.dirlist" $ DIR/NOHEAD/NOTRAIL/OUT=dirfile_qks RC:*.QKS $ OPEN/READ DLIST_QKS dirfile_qks $! $!--------------------------------------------------------------------- $ WRITE SYS$OUTPUT "PROGRAMS TO BE RE-COMPILED: " $! $ THE_LOOP: $!--------------------------------------------------------------------- $ READ/END=THE_END DLIST_QKS DREC $! $ FNAME = F$ELEMENT(1,"]",DREC) $ PNAME = F$ELEMENT(0,".",FNAME) $ WRITE SYS$OUTPUT " ",PNAME $ AAA = F$ELEMENT(1,".",FNAME) $ EXT = F$ELEMENT(0,";",AAA) $ TP := "''F$EXTRACT(4,1,PNAME)'" $! $ WRITE COMPILE_JOB " USE ''DREC' NOLIST" $! $ GOTO THE_LOOP $! $!--------------------------------------------------------------------- $ THE_END: $!--------------------------------------------------------------------- $! $ WRITE COMPILE_JOB "EXIT" $ WRITE/SYMBOL COMPILE_JOB "$ SET DEF RC" $ CLOSE COMPILE_JOB $ CLOSE DLIST_QKS $ DELETE RC:QKS.DIRLIST;* $!--------------------------------------------------------------------- $! $ @COMPILE_IT.COM $! $!--------------------------------------------------------------------- > I used to have a really neat VMS dcl script, which would parse a text file > full of QTP/QUIZ/QDESIGN files and compile them. It also had the ability to > compile QUIZs and QTP that use subfiles, for which are not kept (ie: without > the KEEP verb). Manually I have to do this by starting another session via > the '$' command. > ie: > $QTP > use program.qts nol > use program-b.qts nol > $$quiz > use program-with-qtp-subfile.qzs nol > etc > etc > > Unfortunately in trying to put this into a DCL batch job, it crashes at the > $$QUIZ stage because it is trying to interpret the command from within the > same session. > > Does anyone have such a dcl around? > > Thanks > = = = = = = = = = = = = = = = = = = = = = = = = = = = = > Mailing list: powerh-l@lists.swau.edu > Subscribe: "subscribe" in message body to powerh-l- request@lists.swau.edu > Unsubscribe: "unsubscribe " in message body to powerh-l- request@lists.swau.edu > http://lists.swau.edu/mailman/listinfo/powerh-l > This list is closed, thus to post to the list you must be a subscriber. > -- CoreComm Webmail. http://home.core.com -- CoreComm Webmail. http://home.core.com ------=NEOMAIL_ATT_0.94061027778648 From: "Rick Hill" To: "Olmos, Fernando (Sericon at Alcoa)" Subject: Re: VMS batch compile tricks 'n' tips. Have any? X-Mailer: CoreCommMail X-IPAddress: 208.217.21.43 Date: Mon, 4 Aug 2003 10:14:44 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Here's something that should be close to what you need. It's set up to only do quick screens, but you could expand it to also do QTP and QUIZ source. You'll need to define the location for "RC". -- Rick Hill $!--------------------------------------------------------------------- $! COMPILE.COM $!--------------------------------------------------------------------- $ OPEN/WRITE COMPILE_JOB RC:COMPILE_IT.COM $! $ WRITE/SYMBOL COMPILE_JOB "$ SET DEF [place to put executables]" $ DEFINE SYS$OUTPUT RC:COMPILE_RESULTS.LOG $ WRITE/SYMBOL COMPILE_JOB "$ QDESIGN CC=TRANS_ON" $! $ DEFINE/NOLOG DIRFILE_QKS "RC:qks.dirlist" $ DIR/NOHEAD/NOTRAIL/OUT=dirfile_qks RC:*.QKS $ OPEN/READ DLIST_QKS dirfile_qks $! $!--------------------------------------------------------------------- $ WRITE SYS$OUTPUT "PROGRAMS TO BE RE-COMPILED: " $! $ THE_LOOP: $!--------------------------------------------------------------------- $ READ/END=THE_END DLIST_QKS DREC $! $ FNAME = F$ELEMENT(1,"]",DREC) $ PNAME = F$ELEMENT(0,".",FNAME) $ WRITE SYS$OUTPUT " ",PNAME $ AAA = F$ELEMENT(1,".",FNAME) $ EXT = F$ELEMENT(0,";",AAA) $ TP := "''F$EXTRACT(4,1,PNAME)'" $! $ WRITE COMPILE_JOB " USE ''DREC' NOLIST" $! $ GOTO THE_LOOP $! $!--------------------------------------------------------------------- $ THE_END: $!--------------------------------------------------------------------- $! $ WRITE COMPILE_JOB "EXIT" $ WRITE/SYMBOL COMPILE_JOB "$ SET DEF RC" $ CLOSE COMPILE_JOB $ CLOSE DLIST_QKS $ DELETE RC:QKS.DIRLIST;* $!--------------------------------------------------------------------- $! $ @COMPILE_IT.COM $! $!--------------------------------------------------------------------- > I used to have a really neat VMS dcl script, which would parse a text file > full of QTP/QUIZ/QDESIGN files and compile them. It also had the ability to > compile QUIZs and QTP that use subfiles, for which are not kept (ie: without > the KEEP verb). Manually I have to do this by starting another session via > the '$' command. > ie: > $QTP > use program.qts nol > use program-b.qts nol > $$quiz > use program-with-qtp-subfile.qzs nol > etc > etc > > Unfortunately in trying to put this into a DCL batch job, it crashes at the > $$QUIZ stage because it is trying to interpret the command from within the > same session. > > Does anyone have such a dcl around? > > Thanks > = = = = = = = = = = = = = = = = = = = = = = = = = = = = > Mailing list: powerh-l@lists.swau.edu > Subscribe: "subscribe" in message body to powerh-l- request@lists.swau.edu > Unsubscribe: "unsubscribe " in message body to powerh-l- request@lists.swau.edu > http://lists.swau.edu/mailman/listinfo/powerh-l > This list is closed, thus to post to the list you must be a subscriber. > -- CoreComm Webmail. http://home.core.com ------=NEOMAIL_ATT_0.94061027778648-- From chris.sharman@ccagroup.co.uk Mon Aug 4 09:20:19 2003 From: chris.sharman@ccagroup.co.uk (Chris Sharman) Date: Mon, 04 Aug 2003 09:20:19 +0100 Subject: VMS batch compile tricks 'n' tips. Have any? In-Reply-To: <200308040103301106688@equus.ccagroup.co.uk> References: <200308040103301106688@equus.ccagroup.co.uk> Message-ID: <3F2E1743.10101@ccagroup.co.uk> Olmos, Fernando (Sericon at Alcoa) wrote: > I used to have a really neat VMS dcl script, which would parse a text file > full of QTP/QUIZ/QDESIGN files and compile them. It also had the ability to > compile QUIZs and QTP that use subfiles, for which are not kept (ie: without > the KEEP verb). Manually I have to do this by starting another session via > the '$' command. > ie: > $QTP > use program.qts nol > use program-b.qts nol > $$quiz > use program-with-qtp-subfile.qzs nol > etc > etc > > Unfortunately in trying to put this into a DCL batch job, it crashes at the > $$QUIZ stage because it is trying to interpret the command from within the > same session. DCL treats a leading $ in the input stream as EOF (ie go back to DCL), unless you use $deck & $eod. Eg. $ qtp $deck use ... use ... $quiz auto=... use ... use ... $eod $ more dcl If you need to nest this behaviour, deck takes a qualifier, but I've never needed it myself. I don't know whether qtp would work this way (ie pass input over to the subprocess) - I suspect not. I've always used auto=, and no input to the subprocess. Chris Chris ----------------------------------------------------------------------- Any views expressed in this message are those of the sender and not necessarily those of CCA Group. The unauthorized use, disclosure, copying or alteration of this message is forbidden. The contents of this message may be confidential and/or privileged, copyright CCA Group and are intended solely for the use of the individual or entity to whom they are addressed. Whilst this message has been scanned, CCA Group cannot guarantee that it is virus free or compatible with your systems and accepts no responsibility for any loss or damage arising from its use. The recipient is advised to run their own anti-virus software. If you receive this message in error please contact postmaster@ccagroup.co.uk immediately, destroy any copies and delete it from your computer systems. From chris.sharman@ccagroup.co.uk Mon Aug 4 09:22:47 2003 From: chris.sharman@ccagroup.co.uk (Chris Sharman) Date: Mon, 04 Aug 2003 09:22:47 +0100 Subject: Solution: Using ALTEREDRECORD in QTP In-Reply-To: <200308020537444144128@equus.ccagroup.co.uk> References: <200308020537444144128@equus.ccagroup.co.uk> Message-ID: <3F2E17D7.5050203@ccagroup.co.uk> dennis@dhassell.com wrote: > IIRC (it's been a few years), open a second copy of the file for output, > with an alias name. Then look up on A and update on A_ALIAS. You'll need > a unique key to link the lookup to the output. > > Inside the program, make all the changes to A_ALIAS, and test for > ALTEREDREC of A_ALIAS for the condition below. > > I'm curious, though - the UPDATE won't happen unless there is a > condition of ALTEREDRECORD anyway, and then the FINAL kicks in. I think > the condition is redundant. > > I've found QTP to be tough to work with when depending on the ITEM > statements and IF conditions for anything much more than simple data > transformation. I usually use the selection criteria to handle all of > the if conditions, so everything selected (input phase) gets sorted > (sort phase) and output (output phase). Input and output phases work > differently with the conditions, so read up on them in the QTP manual. iirc, using "item vendor_zip = vendor_zip + 1" (= rather than final) will have the desired effect, although there's an example in the qtp manual which suggests your code is correct as-is, so I'm not sure. Chris ----------------------------------------------------------------------- Any views expressed in this message are those of the sender and not necessarily those of CCA Group. The unauthorized use, disclosure, copying or alteration of this message is forbidden. The contents of this message may be confidential and/or privileged, copyright CCA Group and are intended solely for the use of the individual or entity to whom they are addressed. Whilst this message has been scanned, CCA Group cannot guarantee that it is virus free or compatible with your systems and accepts no responsibility for any loss or damage arising from its use. The recipient is advised to run their own anti-virus software. If you receive this message in error please contact postmaster@ccagroup.co.uk immediately, destroy any copies and delete it from your computer systems. From robert.mills@windsong-services.co.uk Mon Aug 4 16:42:33 2003 From: robert.mills@windsong-services.co.uk (Robert Mills) Date: Mon, 4 Aug 2003 16:42:33 +0100 Subject: Rounding in QUIZ Message-ID: <948DEE88F18FD411AB9D0090275F5C350319D67B@workstation.uk2> This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. ------_=_NextPart_001_01C35A9F.05737B20 Content-Type: text/plain; charset="iso-8859-1" Have just been asked if there is a way to make Quiz 'Round' an item to the nearest 5 (five). Any suggestions? regards, Robert W.Mills Systems Development Manager Windsong Services (01689) 870622 x3005 ------_=_NextPart_001_01C35A9F.05737B20 Content-Type: text/html; charset="iso-8859-1" Rounding in QUIZ

Have just been asked if there is a way to make Quiz 'Round' an item to the nearest 5 (five).

Any suggestions?

regards,

Robert W.Mills
Systems Development Manager
Windsong Services
(01689) 870622 x3005

------_=_NextPart_001_01C35A9F.05737B20-- From nick.butland@acco-uk.co.uk Mon Aug 4 17:00:37 2003 From: nick.butland@acco-uk.co.uk (Butland, Nick) Date: Mon, 4 Aug 2003 17:00:37 +0100 Subject: Rounding in QUIZ Message-ID: <97137B3F2D300B42B28841478B73CDFC036E1AE4@ayex03> This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. ------_=_NextPart_001_01C35AA1.8BE37500 Content-Type: text/plain; charset="iso-8859-1" Try this: Def d_1 = 6 Def d_2 = 8 Def d_1_rnd = 5 * round(d_1/5) Def d_2_rnd = 5 * round(d_2/5) Cheers, Nick Butland IT Project Leader, ACCO UK Telephone 01296-732150 Fax 01296-732151 -----Original Message----- From: Robert Mills [mailto:robert.mills@windsong-services.co.uk] Sent: Monday, August 04, 2003 4:43 PM To: PowerHouse Mail List (E-mail) Subject: Rounding in QUIZ Have just been asked if there is a way to make Quiz 'Round' an item to the nearest 5 (five). Any suggestions? regards, Robert W.Mills Systems Development Manager Windsong Services (01689) 870622 x3005 ------_=_NextPart_001_01C35AA1.8BE37500 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Rounding in QUIZ

Try = this:

 

=

Def d_1 =3D = 6

Def d_2 =3D = 8

 

=

Def d_1_rnd =3D 5 * round(d_1/5)

Def d_2_rnd =3D 5 * round(d_2/5)

 

=

Cheers,

Nick Butland

IT Project Leader, ACCO = UK

 

Telephone = 01296-732150

Fax       &nbs= p;      01296-732151

=  

=

-----Original Message-----
From: Robert Mills [mailto:robert.mills@windsong-services.co.uk]
Sent: Monday, August 04, = 2003 4:43 PM
To: PowerHouse Mail List = (E-mail)
Subject: Rounding in = QUIZ

 

Have just been asked if there is = a way to make Quiz 'Round' an item to the nearest 5 (five). =

Any = suggestions? =

regards,

Robert = W.Mills
Systems Development Manager
Windsong Services
(01689) 870622 x3005

------_=_NextPart_001_01C35AA1.8BE37500-- From robert.mills@windsong-services.co.uk Mon Aug 4 17:15:01 2003 From: robert.mills@windsong-services.co.uk (Robert Mills) Date: Mon, 4 Aug 2003 17:15:01 +0100 Subject: Rounding in QUIZ Message-ID: <948DEE88F18FD411AB9D0090275F5C350319D67C@workstation.uk2> This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. ------_=_NextPart_001_01C35AA3.8E5F86A0 Content-Type: text/plain; charset="iso-8859-1" Nick, Jeff (Davis) says 'thanks for the answer'. He also said something else but I refuse to pass that on . regards, Robert W.Mills Systems Development Manager Windsong Services (01689) 870622 x3005 -----Original Message----- From: Butland, Nick [mailto:nick.butland@acco-uk.co.uk] Sent: 04 August 2003 17:01 To: 'Robert Mills'; PowerHouse Mail List (E-mail) Subject: RE: Rounding in QUIZ Try this: Def d_1 = 6 Def d_2 = 8 Def d_1_rnd = 5 * round(d_1/5) Def d_2_rnd = 5 * round(d_2/5) Cheers, Nick Butland IT Project Leader, ACCO UK Telephone 01296-732150 Fax 01296-732151 -----Original Message----- From: Robert Mills [mailto:robert.mills@windsong-services.co.uk] Sent: Monday, August 04, 2003 4:43 PM To: PowerHouse Mail List (E-mail) Subject: Rounding in QUIZ Have just been asked if there is a way to make Quiz 'Round' an item to the nearest 5 (five). Any suggestions? regards, Robert W.Mills Systems Development Manager Windsong Services (01689) 870622 x3005 ------_=_NextPart_001_01C35AA3.8E5F86A0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Rounding in QUIZ
Nick,=20
 
Jeff (Davis) says 'thanks for = the answer'.=20 He also said something else but I refuse to pass that on=20 <G>.
 
regards,
 
Robert W.Mills
Systems Development = Manager
Windsong Services
(01689) 870622 = x3005
-----Original Message-----
From: Butland, Nick=20 [mailto:nick.butland@acco-uk.co.uk]
Sent: 04 August 2003=20 17:01
To: 'Robert Mills'; PowerHouse Mail List=20 (E-mail)
Subject: RE: Rounding in QUIZ

Try=20 this:

 

=

Def = d_1 =3D=20 6

Def = d_2 =3D=20 8

 

=

Def = d_1_rnd =3D 5 *=20 round(d_1/5)

Def = d_2_rnd =3D 5 *=20 round(d_2/5)

 

=

Cheers,

Nick=20 Butland

IT=20 Project Leader, ACCO UK

 

Telephone=20 01296-732150

Fax           &nb= sp; =20 01296-732151

=  

=

-----Original=20 Message-----
From: = Robert=20 Mills [mailto:robert.mills@windsong-services.co.uk]
Sent: Monday, August 04, 2003 = 4:43=20 PM
To: PowerHouse = Mail List=20 (E-mail)
Subject: = Rounding in=20 QUIZ

 

Have just been = asked if=20 there is a way to make Quiz 'Round' an item to the nearest 5=20 (five).=20

Any=20 suggestions?=20

regards,

Robert=20 W.Mills=20
Systems Development=20 Manager=20
Windsong = Services
(01689) 870622 = x3005=20

------_=_NextPart_001_01C35AA3.8E5F86A0-- From dennis@dhassell.com Mon Aug 4 18:24:50 2003 From: dennis@dhassell.com (Dennis Hassell) Date: Mon, 4 Aug 2003 13:24:50 -0400 Subject: Rounding in QUIZ In-Reply-To: Message-ID: This is a multi-part message in MIME format. ------=_NextPart_000_003C_01C35A8B.C8DCE6A0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit There are 3 options: CEILING(NUMBER) for the next more positive integer (works on negative #'s, too) FLOOR(NUMBER) for the next less positive integer. FLOOR and CEILING were designed mostly for whole dollar calculations. ROUND(NUMBER,PRECISION,OPTION) Where NUMBER is the number to be rounded, PRECISION is the # of decimal places, e.g. 1 is tenths (111.1) and -1 is tens (110), and OPTION is one of NEAR (default), UP, DOWN, and ZERO. CEILING(X) is the same as ROUND(X,0,ZERO), FLOOR(X) is the same as ROUND(X,0,DOWN) In your case, for 1.111115 to round to 1.111120 . and 1.111114 to round to 1.111110 . , use ROUND(X,5,NEAR), or ROUND(X,5). Dennis Hassell Dennis Hassell and Associates (941) 746-4919 (941) 224-3981 - cell -----Original Message----- From: powerh-l-admin@cube.swau.edu [mailto:powerh-l-admin@cube.swau.edu] On Behalf Of Robert Mills Sent: Monday, August 04, 2003 11:43 AM To: PowerHouse Mail List (E-mail) Subject: Rounding in QUIZ Have just been asked if there is a way to make Quiz 'Round' an item to the nearest 5 (five). Any suggestions? regards, Robert W.Mills Systems Development Manager Windsong Services (01689) 870622 x3005 ------=_NextPart_000_003C_01C35A8B.C8DCE6A0 Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Rounding in QUIZ

There are 3 = options:

 

CEILING(NUMBER) for the next more = positive integer (works on negative #’s, too)

 

FLOOR(NUMBER) for the next less = positive integer.

 

FLOOR and CEILING were designed = mostly for whole dollar calculations.

 

ROUND(NUMBER,PRECISION,OPTION)

      =       Where NUMBER is the number to be rounded, PRECISION is the # of decimal = places, e.g. 1 is tenths (111.1) and -1 is tens (110),

      =       and OPTION is one of NEAR (default), UP, DOWN, and ZERO.

 

CEILING(X) is the same as = ROUND(X,0,ZERO), FLOOR(X) is the same as ROUND(X,0,DOWN)

 

In your case, for 1.111115 to round = to 1.111120 …  and 1.111114 to round to 1.111110 … , use = ROUND(X,5,NEAR), or ROUND(X,5).

Dennis Hassell
Dennis Hassell and = Associates
(941) 746-4919
(941) 224-3981 - cell

-----Original = Message-----
From: = powerh-l-admin@cube.swau.edu [mailto:powerh-l-admin@cube.swau.edu] On Behalf Of Robert Mills
Sent: Monday, August 04, = 2003 11:43 AM
To: PowerHouse Mail List = (E-mail)
Subject: Rounding in = QUIZ

 

Have just been asked if there is a way to = make Quiz 'Round' an item to the nearest 5 (five).

Any suggestions?

regards,

Robert W.Mills
Systems Development = Manager
Windsong = Services
(01689) 870622 = x3005

------=_NextPart_000_003C_01C35A8B.C8DCE6A0-- From oh@scanconsult.dk Mon Aug 4 17:22:35 2003 From: oh@scanconsult.dk (Ole Hansen, ScanConsult) Date: Mon, 4 Aug 2003 18:22:35 +0200 Subject: Rounding in QUIZ In-Reply-To: <948DEE88F18FD411AB9D0090275F5C350319D67B@workstation.uk2> Message-ID: <000901c35aa4$a60556d0$0a0b10ac@scanconsult02.bogus> This is a multi-part message in MIME format. ------=_NextPart_000_000A_01C35AB5.698E26D0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Hi Robert, Below code, which is taken from one of our QTP's, should do the trick : define price int*5 = round(round(newprice * 2,-1,up) / 2,0) if roundfactor = 5 & else round(newprice,roundfactor,up) HTH. Mange hilsner / With kind regards Ole Hansen =========================================================== E-mail: oh@scanconsult.dk Cell Phone: +45 4040 1150 =========================================================== ScanConsult IT-Partners ApS Voice : +45 8738 7474 Jegstrupvej 96A Fax : +45 8738 7475 DK-8361 Hasselager Support : support@scanconsult.dk Denmark Sales : sales@scanconsult.dk http://www.scanconsult.dk = ParaSuite : A Suite of Air Cargo Handling solutions = = ParaSafe : A Suite of IT-Security solutions = = Partners : Hewlett-Packard, Cognos, Microsoft and more = -----Original Message----- From: powerh-l-admin@cube.swau.edu [mailto:powerh-l-admin@cube.swau.edu] On Behalf Of Robert Mills Sent: 4. august 2003 17:43 To: PowerHouse Mail List (E-mail) Subject: Rounding in QUIZ Have just been asked if there is a way to make Quiz 'Round' an item to the nearest 5 (five). Any suggestions? regards, Robert W.Mills Systems Development Manager Windsong Services (01689) 870622 x3005 ------=_NextPart_000_000A_01C35AB5.698E26D0 Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Message
Hi=20 Robert,
 
Below=20 code, which is taken from one of our QTP's, should do the trick=20 :
 
define=20 price int*5 =3D  round(round(newprice * 2,-1,up) / = 2,0) if=20 roundfactor =3D 5 &
   =20             &= nbsp;           =20 else round(newprice,roundfactor,up)
HTH.
 
Mange hilsner / With kind=20 regards
 
Ole Hansen
 
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
E-mail: oh@scanconsult.dk   =      =20 Cell Phone: +45 4040=20 1150
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
ScanConsult=20 IT-Partners ApS        =20 Voice   : +45 8738 7474
Jegstrupvej=20 96A           &nbs= p;        =20 Fax     : +45 8738 7475
DK-8361=20 Hasselager         Support : support@scanconsult.dk
Denm= ark           &nbs= p;       =20 Sales   :   sales@scanconsult.dk
 &n= bsp;           &nb= sp;  =20 http://www.scanconsult.dk &n= bsp;           &nb= sp; =20
=3D ParaSuite :  A Suite of Air Cargo Handling=20 solutions    =3D
=3D ParaSafe  :  A Suite of = IT-Security=20 solutions           = =3D
=3D=20 Partners  : Hewlett-Packard, Cognos, Microsoft and more = =3D
-----Original Message-----
From:=20 powerh-l-admin@cube.swau.edu [mailto:powerh-l-admin@cube.swau.edu] = On=20 Behalf Of Robert Mills
Sent: 4. august 2003 = 17:43
To:=20 PowerHouse Mail List (E-mail)
Subject: Rounding in=20 QUIZ

Have just been asked if there is a way to make Quiz = 'Round' an=20 item to the nearest 5 (five).

Any suggestions?

regards,

Robert W.Mills
Systems = Development=20 Manager
Windsong Services
(01689) 870622 x3005

------=_NextPart_000_000A_01C35AB5.698E26D0-- From mfowler@harpercollege.edu Wed Aug 6 14:31:26 2003 From: mfowler@harpercollege.edu (Matt Fowler) Date: Wed, 06 Aug 2003 08:31:26 -0500 Subject: Cognos PowerHouse for Windows 2.0 Client Message-ID: <4.2.0.58.20030806083037.012b9210@hcn-mail.harpercollege.edu> Looking for helpful hints. We have Cognos Powerhouse running on a Novell 4.11 server and are trying to launch the application from a Windows XP workstation. We keep getting an error 26: Host not found when attempting to login to the system. It launches the application, but does not let us login. We also get this error on Win2K, just not on Windows NT 4.0. Thanks for any ideas. Hope this is enough information. Matt Fowler LAN Specialist (847)925-6113 mfowler@harper.cc.il.us From Leonard_Berkowitz@harvardpilgrim.org Wed Aug 6 20:14:26 2003 From: Leonard_Berkowitz@harvardpilgrim.org (Leonard_Berkowitz@harvardpilgrim.org) Date: Wed, 6 Aug 2003 15:14:26 -0400 Subject: TERMINAL-GROUP file Message-ID: How do I fix this error? I am setting up a new account for test purposes. This is the 23 gottcha, so far. Error opening TERMINAL-GROUP qkgo file Thanks. -- Leonard S. Berkowitz Perot Health Care Systems (Harvard Pilgrim Health Care account) voice: 617-509-1212 fax: 617-509-1955 pager: 781-226-2431 The information contained in this email message and any attachments may be privileged and/or confidential. It is for intended addressee(s) only. If you are not the intended recipient, you are hereby notified that any review, disclosure, reproduction, distribution or other use of this communication is strictly prohibited. If you received this email in error, please notify the sender by reply and delete the message without saving, copying or disclosing it. Thank you. From PICKERIJ@norbord.com Wed Aug 6 20:47:46 2003 From: PICKERIJ@norbord.com (Pickering, John (NORBORD)) Date: Wed, 6 Aug 2003 15:47:46 -0400 Subject: TERMINAL-GROUP file Message-ID: <611340310619D711AA4000306E1CC5124070BD@TORHEXCH> Leonard How did you create the QKGO file in the new account? Please remember that the QKGO file is now several files -- an old style file with a 650 file code and 3 native mode ksams. Have you got one that ends in the letter T? Regards, JWP -----Original Message----- From: Leonard_Berkowitz@harvardpilgrim.org [mailto:Leonard_Berkowitz@harvardpilgrim.org] Sent: Wednesday, August 06, 2003 3:14 PM To: powerh-l@lists.swau.edu Subject: TERMINAL-GROUP file How do I fix this error? I am setting up a new account for test purposes. This is the 23 gottcha, so far. Error opening TERMINAL-GROUP qkgo file Thanks. -- Leonard S. Berkowitz Perot Health Care Systems (Harvard Pilgrim Health Care account) voice: 617-509-1212 fax: 617-509-1955 pager: 781-226-2431 From Leonard_Berkowitz@harvardpilgrim.org Wed Aug 6 20:47:00 2003 From: Leonard_Berkowitz@harvardpilgrim.org (Leonard_Berkowitz@harvardpilgrim.org) Date: Wed, 6 Aug 2003 15:47:00 -0400 Subject: TERMINAL-GROUP file Message-ID: John, I copied the files from another machine. After I had posted the question, I poked around a bit and found two other QKGO files including the QKGOT file. Thanks. Leonard -- Leonard S. Berkowitz Perot Health Care Systems (Harvard Pilgrim Health Care account) voice: 617-509-1212 fax: 617-509-1955 pager: 781-226-2431 "Pickering, John (NORBORD)" To: "'Leonard_Berkowitz@harvardpilgrim.org'" .com> cc: "Powerhouse List (E-mail)" Subject: RE: TERMINAL-GROUP file 08/06/2003 03:47 PM Leonard How did you create the QKGO file in the new account? Please remember that the QKGO file is now several files -- an old style file with a 650 file code and 3 native mode ksams. Have you got one that ends in the letter T? Regards, JWP -----Original Message----- From: Leonard_Berkowitz@harvardpilgrim.org [mailto:Leonard_Berkowitz@harvardpilgrim.org] Sent: Wednesday, August 06, 2003 3:14 PM To: powerh-l@lists.swau.edu Subject: TERMINAL-GROUP file How do I fix this error? I am setting up a new account for test purposes. This is the 23 gottcha, so far. Error opening TERMINAL-GROUP qkgo file Thanks. -- Leonard S. Berkowitz Perot Health Care Systems (Harvard Pilgrim Health Care account) voice: 617-509-1212 fax: 617-509-1955 pager: 781-226-2431 From Fernando.Olmos@alcoa.com.au Thu Aug 7 00:18:21 2003 From: Fernando.Olmos@alcoa.com.au (Olmos, Fernando (Sericon at Alcoa)) Date: Thu, 7 Aug 2003 07:18:21 +0800 Subject: VMS batch compile tricks 'n' tips. Have any? Message-ID: Rick, Sorry for the delay in reply. Yes it did help. In fact I wrote my own DCL which does a very good parse of a text file. The text file can have any QKS, QTS, QZS type programs and in any order and it will sort them out (QKS first) and compile the lot! I'll share it with the group soon, but right now I am drowning in a new project. Cheers > -----Original Message----- > From: Rick Hill [mailto:rmhill@core.com] > Sent: Thursday, August 07, 2003 1:58 AM > To: Olmos, Fernando (Sericon at Alcoa) > Subject: Re: VMS batch compile tricks 'n' tips. Have any? > > > Fernando - did this help you? > > -- Rick Hill > > > Here's something that should be close to what you need. > It's set up > to > > only do quick screens, but you could expand it to also do QTP and > QUIZ > > source. You'll need to define the location for "RC". > > > > -- Rick Hill > > > > > $!-------------------------------------------------------------------- > - > > $! COMPILE.COM > > > $!-------------------------------------------------------------------- > - > > $ OPEN/WRITE COMPILE_JOB RC:COMPILE_IT.COM > > $! > > $ WRITE/SYMBOL COMPILE_JOB "$ SET DEF [place to put executables]" > > $ DEFINE SYS$OUTPUT RC:COMPILE_RESULTS.LOG > > $ WRITE/SYMBOL COMPILE_JOB "$ QDESIGN CC=TRANS_ON" > > $! > > $ DEFINE/NOLOG DIRFILE_QKS "RC:qks.dirlist" > > $ DIR/NOHEAD/NOTRAIL/OUT=dirfile_qks RC:*.QKS > > $ OPEN/READ DLIST_QKS dirfile_qks > > $! > > > $!-------------------------------------------------------------------- > - > > $ WRITE SYS$OUTPUT "PROGRAMS TO BE RE-COMPILED: " > > $! > > $ THE_LOOP: > > > $!-------------------------------------------------------------------- > - > > $ READ/END=THE_END DLIST_QKS DREC > > $! > > $ FNAME = F$ELEMENT(1,"]",DREC) > > $ PNAME = F$ELEMENT(0,".",FNAME) > > $ WRITE SYS$OUTPUT " ",PNAME > > $ AAA = F$ELEMENT(1,".",FNAME) > > $ EXT = F$ELEMENT(0,";",AAA) > > $ TP := "''F$EXTRACT(4,1,PNAME)'" > > $! > > $ WRITE COMPILE_JOB " USE ''DREC' NOLIST" > > $! > > $ GOTO THE_LOOP > > $! > > > $!-------------------------------------------------------------------- > - > > $ THE_END: > > > $!-------------------------------------------------------------------- > - > > $! > > $ WRITE COMPILE_JOB "EXIT" > > $ WRITE/SYMBOL COMPILE_JOB "$ SET DEF RC" > > $ CLOSE COMPILE_JOB > > $ CLOSE DLIST_QKS > > $ DELETE RC:QKS.DIRLIST;* > > > $!-------------------------------------------------------------------- > - > > $! > > $ @COMPILE_IT.COM > > $! > > > $!-------------------------------------------------------------------- > - > > > > > > > I used to have a really neat VMS dcl script, which would parse a > text > > file > > > full of QTP/QUIZ/QDESIGN files and compile them. It also had the > > ability to > > > compile QUIZs and QTP that use subfiles, for which are not kept > (ie: > > without > > > the KEEP verb). Manually I have to do this by starting another > > session via > > > the '$' command. > > > ie: > > > $QTP > > > use program.qts nol > > > use program-b.qts nol > > > $$quiz > > > use program-with-qtp-subfile.qzs nol > > > etc > > > etc > > > > > > Unfortunately in trying to put this into a DCL batch job, it > crashes > > at the > > > $$QUIZ stage because it is trying to interpret the command from > > within the > > > same session. > > > > > > Does anyone have such a dcl around? > > > > > > Thanks > > > = = = = = = = = = = = = = = = = = = = = = = = = = = = = > > > Mailing list: powerh-l@lists.swau.edu > > > Subscribe: "subscribe" in message body to powerh-l- > > request@lists.swau.edu > > > Unsubscribe: "unsubscribe " in message body to powerh-l- > > request@lists.swau.edu > > > http://lists.swau.edu/mailman/listinfo/powerh-l > > > This list is closed, thus to post to the list you must be a > > subscriber. > > > > > > > -- > > CoreComm Webmail. > > http://home.core.com > > > > > > > > -- > CoreComm Webmail. > http://home.core.com > From bayntonk@ElectionsOntario.on.ca Thu Aug 7 17:13:34 2003 From: bayntonk@ElectionsOntario.on.ca (Kenn Baynton) Date: Thu, 7 Aug 2003 12:13:34 -0400 Subject: Powerhouse 8.41C documentation Message-ID: Greetings All, Is there a scheduled release for documentation for the new version of Powerhouse 8.41C for Win2K? I'm trying to work with it, but I'm floundering because there's NO specific documentation for this version and because of Powerhouse's small user base, no code bases on the web. I am wary of using MPE/iX, Unix, or OpenVMS commands with this version because I can't forecast the result and I don't believe the platforms will respond the same way. Thanks again Kenn From Esh I" A signed integer size 4 field in an rdb table of mine has value as NULL when reported in sql. The same field shows 0 when reported thro' quiz. Why is this happening? Pls help. I wish to treat records with a NULL and those with a 0 in this field differently in my qdesign program. Many Thanks Esh I ___________________________________________________ Download the hottest & happening ringtones here! OR SMS: Top tone to 7333 Click here now: http://sms.rediff.com/cgi-bin/ringtone/ringhome.pl From peterod@ntlworld.com Fri Aug 8 12:41:10 2003 From: peterod@ntlworld.com (PETER O'DONOGHUE) Date: Fri, 8 Aug 2003 12:41:10 +0100 Subject: NULL value in powerhouse References: <20030808070316.11573.qmail@webmail18.rediffmail.com> Message-ID: <002b01c35da1$f82380e0$20ab6351@itmadeeasy> The dictionary has most likely not been set up to enable null value support for that database and/or table. You will need to ensure that the appropriate DATABASE and/or FILE statements in the PDL code include "NULL VALUES ALLOWED". Peter ----- Original Message ----- From: "Esh I" To: Sent: Friday, August 08, 2003 8:03 AM Subject: NULL value in powerhouse > A signed integer size 4 field in an rdb table of mine has value as > NULL when reported in sql. The same field shows 0 when reported > thro' quiz. Why is this happening? Pls help. I wish to treat > records with a NULL and those with a 0 in this field differently > in my qdesign program. > > > Many Thanks > Esh I > > > ___________________________________________________ > Download the hottest & happening ringtones here! > OR SMS: Top tone to 7333 > Click here now: > http://sms.rediff.com/cgi-bin/ringtone/ringhome.pl > > > = = = = = = = = = = = = = = = = = = = = = = = = = = = = > Mailing list: powerh-l@lists.swau.edu > Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu > Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu > http://lists.swau.edu/mailman/listinfo/powerh-l > This list is closed, thus to post to the list you must be a subscriber. From Alan_G_Power@Keane.com Fri Aug 8 20:06:13 2003 From: Alan_G_Power@Keane.com (Alan_G_Power@Keane.com) Date: Fri, 8 Aug 2003 16:06:13 -0300 Subject: Alan G Power/HAL/Keane is out of the office. Message-ID: I will be out of the office starting 08/08/2003 and will not return until 08/12/2003. I will respond to your message when I return. Please contact Michael Traves in the case of an emergency. From finnjj@telefonica.net Sun Aug 10 16:26:43 2003 From: finnjj@telefonica.net (Jerry Finn) Date: Sun, 10 Aug 2003 17:26:43 +0200 Subject: GENPDLSCR References: <20030730112544.9468.48075.Mailman@cube.swau.edu> Message-ID: <3F366433.CA831FCF@telefonica.net> On AS400 there is a program to generate PDL source from information on the system about DB2. I think its call GENPDLSCR. Is there anything on UNIX that can do the same for a Oracle database Jerry finnjj@telefonica.net From shediac92@hotmail.com Sun Aug 10 17:49:54 2003 From: shediac92@hotmail.com (Peter Bateman) Date: Sun, 10 Aug 2003 13:49:54 -0300 Subject: GENPDLSCR Message-ID: Jerry: I suspect someone has written a few small QUIZ programs to extract the ORACLE metadata that you need. I have done it for ALLBASE and for InterBase. Cognos's new ARCHITECT does extract a fair amount of Oracle metadata as does the Axiant import facility. Regards, Peter Bateman >From: Jerry Finn >To: powerh-l@lists.swau.edu >Subject: GENPDLSCR >Date: Sun, 10 Aug 2003 17:26:43 +0200 > > >On AS400 there is a program to generate PDL source from >information on the system about DB2. I think its call >GENPDLSCR. > >Is there anything on UNIX that can do the same for a >Oracle database > >Jerry >finnjj@telefonica.net >= = = = = = = = = = = = = = = = = = = = = = = = = = = = >Mailing list: powerh-l@lists.swau.edu >Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu >Unsubscribe: "unsubscribe " in message body to >powerh-l-request@lists.swau.edu >http://lists.swau.edu/mailman/listinfo/powerh-l >This list is closed, thus to post to the list you must be a subscriber. _________________________________________________________________ Add photos to your e-mail with MSN 8. Get 2 months FREE*. http://join.msn.com/?page=features/featuredemail From martin_paulin@acadie.com Mon Aug 11 05:01:03 2003 From: martin_paulin@acadie.com (martin_paulin@acadie.com) Date: Mon, 11 Aug 2003 01:01:03 -0300 Subject: Martin Paulin/MCPA/Desjardins est absent(e). Message-ID: Je serai absent(e) du 2003-08-08 au 2003-08-22. Je serais absent du bureau a partir du 11 août au 23 août ceci afin de prendre mes vacances d'été Pour le support : CBS : Vous pouvez contacter Roger StCoeur au 4415 Paie internet, DRD internet : Vous pouvez contacter Roger Chiasson au 4406 Merci et bonne journée From bayntonk@ElectionsOntario.on.ca Tue Aug 12 14:16:53 2003 From: bayntonk@ElectionsOntario.on.ca (Kenn Baynton) Date: Tue, 12 Aug 2003 09:16:53 -0400 Subject: Embedded PCL Message-ID: This is a multi-part message in MIME format. ------_=_NextPart_001_01C360D3.FF3FD10A Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Greetings all, Does anyone know if PH 8.41C for Win2K supports embedded PCL (Printer = Control Language) in Quiz reports? The application I am currently = converting uses embedded PCL for cheque printing (fonts, signatures, = etc.). Losing this functionality would be extremely frustrating and = time-consuming to come up with a workaround solution. Thanks in advance Kenn ------_=_NextPart_001_01C360D3.FF3FD10A Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Embedded PCL

Greetings all,

Does anyone know if PH 8.41C for Win2K = supports embedded PCL (Printer Control Language) in Quiz reports?  = The application I am currently converting uses embedded PCL for cheque = printing (fonts, signatures, etc.).  Losing this functionality = would be extremely frustrating and time-consuming to come up with a = workaround solution.

Thanks in advance

Kenn

------_=_NextPart_001_01C360D3.FF3FD10A-- From Conrad.Whittall@Cognos.COM Tue Aug 12 16:01:54 2003 From: Conrad.Whittall@Cognos.COM (Whittall, Conrad) Date: Tue, 12 Aug 2003 11:01:54 -0400 Subject: Embedded PCL Message-ID: <9BB2C83BBB6AD7119554000802FF51B843912B@sottexch3.cognos.com> This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. ------_=_NextPart_001_01C360E2.AB03BC50 Content-Type: text/plain; charset="iso-8859-1" The issue that most folks run into when they migrate QUIZ reports that use embedded printer control characters to Windows from any other platform is that the Windows print drivers automatically strip out any non-printable characters from the spool file. One way around this is to send the QUIZ report to a disc file and then use the DOS command-line COPY command to copy the file directly to the printer. Some have even used this file as a way to allow users to preview the report content before sending it to the printer, and because the file stays put until deleted or overwritten the user also has the option to reprint the report without having to run it again. Search for Knowledge Base document # 93835 on support.cognos.com web site through the Advanced Search, http://support.cognos.com/kb-app/knowledgebase . You'll need a web login to use this and access the document. Best regards, Conrad Conrad Whittall Solutions Architect, Global Customer Services Cognos Incorporated, 3755 Riverside Drive, Ottawa, Ontario, K1G 4K9, Canada -----Original Message----- From: Kenn Baynton [mailto:bayntonk@ElectionsOntario.on.ca] Sent: 12 August 2003 09:17 To: PowerHouse List (E-mail) Subject: Embedded PCL Greetings all, Does anyone know if PH 8.41C for Win2K supports embedded PCL (Printer Control Language) in Quiz reports? The application I am currently converting uses embedded PCL for cheque printing (fonts, signatures, etc.). Losing this functionality would be extremely frustrating and time-consuming to come up with a workaround solution. Thanks in advance Kenn Join us at Cognos' biggest event of the year Enterprise 2003, The Cognos Business Forum. Taking place in over 25 cities around the world, it's an opportunity for Business and IT leaders to learn about strategies for driving performance. Visit http://www.cognos.com/enterprise03 for more details. This message may contain privileged and/or confidential information. If you have received this e-mail in error or are not the intended recipient, you may not use, copy, disseminate or distribute it; do not open any attachments, delete it immediately from your system and notify the sender promptly by e-mail that you have done so. Thank you. ------_=_NextPart_001_01C360E2.AB03BC50 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Embedded PCL
The = issue that=20 most folks run into when they migrate QUIZ reports that use embedded = printer=20 control characters to Windows from any other platform is that the = Windows print=20 drivers automatically strip out any non-printable characters from the = spool=20 file.
 
One = way around=20 this is to send the QUIZ report to a disc file and then use the DOS = command-line=20 COPY command to copy the file directly to the printer. Some have even = used this=20 file as a way to allow users to preview the report content before = sending it to=20 the printer, and because the file stays put until deleted or = overwritten the=20 user also has the option to reprint the report without having to run it = again.
 
Search=20 for Knowledge Base document # 93835 on support.cognos.com web site = through=20 the Advanced Search, http://support.c= ognos.com/kb-app/knowledgebase.=20 You'll need a web login to use this and access the = document.
 
Best regards,
Conrad

Conrad=20 Whittall
Solutions=20 Architect, Global Customer Services
Cognos Incorporated, 3755 Riverside Drive, = Ottawa, Ontario,=20 K1G 4K9, Canada

-----Original Message-----
From: Kenn Baynton=20 [mailto:bayntonk@ElectionsOntario.on.ca]
Sent: 12 August 2003 = 09:17
To: PowerHouse List (E-mail)
Subject: = Embedded=20 PCL

Greetings all,

Does anyone know if PH 8.41C for Win2K = supports=20 embedded PCL (Printer Control Language) in Quiz reports?  The = application I=20 am currently converting uses embedded PCL for cheque printing (fonts,=20 signatures, etc.).  Losing this functionality would be extremely=20 frustrating and time-consuming to come up with a workaround = solution.

Thanks in advance

Kenn


Join us at Cognos' biggest event of = the year Enterprise 2003, The Cognos Business Forum. Taking = place in over 25 cities around the world, it's an opportunity for = Business and IT leaders to learn about strategies for driving = performance. Visit http://www.cognos.com/enterprise03 for more = details.


This message may contain privileged = and/or confidential information. If you have received this e-mail in = error or are not the intended recipient, you may not use, copy, = disseminate or distribute it; do not open any attachments, delete it = immediately from your system and notify the sender promptly by e-mail = that you have done so. Thank you.

------_=_NextPart_001_01C360E2.AB03BC50-- From bayntonk@ElectionsOntario.on.ca Tue Aug 12 16:03:54 2003 From: bayntonk@ElectionsOntario.on.ca (Kenn Baynton) Date: Tue, 12 Aug 2003 11:03:54 -0400 Subject: Oracle Database Connectivity Message-ID: This is a multi-part message in MIME format. ------_=_NextPart_001_01C360E2.F26934CC Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Ok, guys.. more questions. I'm trying to connect to an Oracle database using PH 8.41C. I am using = the following as my connect string. Database EOMIS & TYPE Oracle & Owner EOMIS & Null Values allowed & Open ceo1dev@*****/********** =20 Username and password blanked out for security reasons. The = documentation specifies that I can use a network parameter string, but I = don't understand the functionality because it's referring to OpenVMS. = What I have tried for the network parms doesn't have any effect. Just so that you are aware, I am not connecting to a local database. I = am attempting to reach a network db. The PH software will not be loaded = onto the db server in any case, so this issue must be resolved. I can = reach the db using SQL Plus and can search the database tables = accordingly utilizing the same login/pass as I use in the connect = string. When I compile the dictionary, load it, and then attempt to access the = files I get this warning and error: *W* SQL START DBE error (EOMIS) DMS-E-GENERAL, A general exception has occurred during operation 'attach database'. ORA-24327: need explicit attach before authenticating a user *E* The Record SUPPLIER_PROFILE was not found in the data dictionary. Do I need to specify in the dictionary every table in the db? My = understanding is that PH treats the db as a subdictionary. How do I go = about explicitly attaching the db, if such a step is truly required? All help greatly appreciated. Kenn ------_=_NextPart_001_01C360E2.F26934CC Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Oracle Database Connectivity

Ok, guys.. more questions.

I'm trying to connect to an Oracle = database using PH 8.41C.  I am using the following as my connect = string.

   Database = EOMIS       =         =         =         =         =         =              = &
        TYPE Oracle     =         =         =         =         =              =         &
        Owner EOMIS     =         =         =         =         =         =              = &
        Null Values allowed     =         =         =         =         =              = &
        Open ceo1dev@*****/**********   =         =         =              

        Username and password blanked out for security = reasons.  The documentation specifies that I can use a network = parameter string, but I don't understand the functionality because it's = referring to OpenVMS.  What I have tried for the network parms = doesn't have any effect.

        Just so that you are aware, I am not connecting to a = local database.  I am attempting to reach a network db.  The = PH software will not be loaded onto the db server in any case, so this = issue must be resolved.  I can reach the db using SQL Plus and can = search the database tables accordingly utilizing the same login/pass as = I use in the connect string.

        When I compile the dictionary, load it, and then attempt = to access the files I get this warning and error:

*W* SQL START DBE error = (EOMIS)
DMS-E-GENERAL, A general exception = has occurred during operation 'attach
database'.
ORA-24327: need explicit attach = before authenticating a user

*E* The Record SUPPLIER_PROFILE was = not found in the data dictionary.

        Do I need to specify in the dictionary every table in the = db?  My understanding is that PH treats the db as a = subdictionary.  How do I go about explicitly attaching the db, if = such a step is truly required?

        All help greatly appreciated.

Kenn

------_=_NextPart_001_01C360E2.F26934CC-- From VGoparaju@tradepointsystems.com Tue Aug 12 16:20:48 2003 From: VGoparaju@tradepointsystems.com (Goparaju, Vidyasagar) Date: Tue, 12 Aug 2003 11:20:48 -0400 Subject: Oracle Database Connectivity Message-ID: This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. ------_=_NextPart_001_01C360E5.4EB04CE0 Content-Type: text/plain; charset="iso-8859-1" I am using the following PDL statement to reference Oracle-9i database: Database dbname & Type Oracle & NULL VALUES ALLOWED & DEFAULT DATE IS NULL & Description "Trade DataBase" & Open "ORACLE@@/" owner It is working fine on Solaris. Sagar -----Original Message----- From: Kenn Baynton [mailto:bayntonk@ElectionsOntario.on.ca] Sent: Tuesday, August 12, 2003 11:04 AM To: PowerHouse List (E-mail) Subject: Oracle Database Connectivity Ok, guys.. more questions. I'm trying to connect to an Oracle database using PH 8.41C. I am using the following as my connect string. Database EOMIS & TYPE Oracle & Owner EOMIS & Null Values allowed & Open ceo1dev@*****/********** Username and password blanked out for security reasons. The documentation specifies that I can use a network parameter string, but I don't understand the functionality because it's referring to OpenVMS. What I have tried for the network parms doesn't have any effect. Just so that you are aware, I am not connecting to a local database. I am attempting to reach a network db. The PH software will not be loaded onto the db server in any case, so this issue must be resolved. I can reach the db using SQL Plus and can search the database tables accordingly utilizing the same login/pass as I use in the connect string. When I compile the dictionary, load it, and then attempt to access the files I get this warning and error: *W* SQL START DBE error (EOMIS) DMS-E-GENERAL, A general exception has occurred during operation 'attach database'. ORA-24327: need explicit attach before authenticating a user *E* The Record SUPPLIER_PROFILE was not found in the data dictionary. Do I need to specify in the dictionary every table in the db? My understanding is that PH treats the db as a subdictionary. How do I go about explicitly attaching the db, if such a step is truly required? All help greatly appreciated. Kenn ------_=_NextPart_001_01C360E5.4EB04CE0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Oracle Database Connectivity

I am using the following PDL statement to reference = Oracle-9i database:

 

     Database dbname      &

     Type Oracle      &

     NULL VALUES ALLOWED &

     DEFAULT DATE IS NULL &

     Description "Trade DataBase" &

     Open = "ORACLE@<username>@<tnsname>/<password>"  owner <db = owner>

 

 

It is working fine on Solaris.

 
Sagar

<= ![if = !supportEmptyParas]> 

=

<= ![if = !supportEmptyParas]> 

=

<= ![if = !supportEmptyParas]> 

=

<= ![if = !supportEmptyParas]> 

=

-----Original Message-----
From: Kenn Baynton [mailto:bayntonk@ElectionsOntario.on.ca]
Sent: Tuesday, August = 12, 2003 11:04 AM
To: PowerHouse List = (E-mail)
Subject: Oracle Database Connectivity

 

Ok, guys.. = more questions. =

I'm trying to = connect to an Oracle database using PH 8.41C.  I am using the following as my = connect string. = =

   Database EOMIS                                       =                      = &
        =
TYPE Oracle                                                          &
        =
Owner EOMIS                                             =              &
        =
Null Values = allowed                                     =              &
        =
Open = ceo1dev@*****/**********                                 =

     &nb= sp;  Username and password blanked out for = security reasons.  The documentation specifies that I can use a network = parameter string, but I don't understand the functionality because it's referring = to OpenVMS.  What I have tried for the network parms doesn't have any = effect.=

     &nb= sp;  Just so that you are aware, I am not = connecting to a local database.  I am attempting to reach a network db.  = The PH software will not be loaded onto the db server in any case, so this = issue must be resolved.  I can reach the db using SQL Plus and can search the database tables accordingly utilizing the same login/pass as I use in = the connect string.

     &nb= sp;  When I compile the dictionary, load it, = and then attempt to access the files I get this warning and = error: =

*W* SQL START DBE error (EOMIS)
DMS-E-GENERAL, = A general exception has occurred during operation = 'attach
database'.
ORA-24327: need explicit attach before authenticating a user =

*E* The Record SUPPLIER_PROFILE was not found in the data = dictionary. =

     &nb= sp;  Do I need to specify in the dictionary = every table in the db?  My understanding is that PH treats the db as a subdictionary.  How do I go about explicitly attaching the db, if = such a step is truly required?

     &nb= sp;  All help greatly = appreciated. =

Kenn =

------_=_NextPart_001_01C360E5.4EB04CE0-- From bayntonk@ElectionsOntario.on.ca Tue Aug 12 16:59:06 2003 From: bayntonk@ElectionsOntario.on.ca (Kenn Baynton) Date: Tue, 12 Aug 2003 11:59:06 -0400 Subject: Connected Message-ID: This is a multi-part message in MIME format. ------_=_NextPart_001_01C360EA.A86ED7A2 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Thank you to all who replied. Using your examples and by trial and = error beyond that I have successfully managed to connect to the db. Kenn ------_=_NextPart_001_01C360EA.A86ED7A2 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Connected

Thank you to all who replied.  = Using your examples and by trial and error beyond that I have = successfully managed to connect to the db.

Kenn

------_=_NextPart_001_01C360EA.A86ED7A2-- From bayntonk@ElectionsOntario.on.ca Thu Aug 14 15:49:57 2003 From: bayntonk@ElectionsOntario.on.ca (Kenn Baynton) Date: Thu, 14 Aug 2003 10:49:57 -0400 Subject: Background processing Message-ID: Greetings all, As some of you may know, I am engaged in a conversion project to move from OpenVMS/ Interbase 3.3J/ PH 7.1 to Win2K/ Oracle9i/ PH 8.41C. I have run into an issue that I hope the collective can help with. I know both Unix and OpenVMS have queues, secondary process areas that run in the background. MSDos has no such functionality to my knowledge. I am trying to run a QUIZ report from a QUICK screen, but I don't want the command process text to overlay the QUICK screen. Does anyone know a way to run a process in the background from Win2K/DOS? It has been suggested to me that Windows Scripting could probably run my process in a separate DOS Command window, but I am unsure how to proceed. If anyone has done something like this, I would appreciate your input, and if possible, a code sample. Thanks Kenn Baynton From tim.cummings@frequencymarketing.com Thu Aug 14 16:34:05 2003 From: tim.cummings@frequencymarketing.com (Tim Cummings) Date: Thu, 14 Aug 2003 11:34:05 -0400 Subject: Background processing Message-ID: This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. ------_=_NextPart_000_01C36279.7EA5DD30 Content-Type: text/plain; charset="iso-8859-1" Kenn, There is a "START" command in DOS that you can use. start /LOW /MIN /WAIT "Title to display in window title bar" dos command/bat file Tim Cummings Loveland, OH C:\WINNT\system32>help start Starts a separate window to run a specified program or command. START ["title"] [/Dpath] [/I] [/MIN] [/MAX] [/SEPARATE | /SHARED] [/LOW | /NORMAL | /HIGH | /REALTIME | /ABOVENORMAL | /BELOWNORMAL] [/WAIT] [/B] [command/program] [parameters] "title" Title to display in window title bar. path Starting directory B Start application without creating a new window. The application has ^C handling ignored. Unless the application enables ^C processing, ^Break is the only way to interrupt the application I The new environment will be the original environment passed to the cmd.exe and not the current environment. MIN Start window minimized MAX Start window maximized SEPARATE Start 16-bit Windows program in separate memory space SHARED Start 16-bit Windows program in shared memory space LOW Start application in the IDLE priority class NORMAL Start application in the NORMAL priority class HIGH Start application in the HIGH priority class REALTIME Start application in the REALTIME priority class ABOVENORMAL Start application in the ABOVENORMAL priority class BELOWNORMAL Start application in the BELOWNORMAL priority class WAIT Start application and wait for it to terminate command/program If it is an internal cmd command or a batch file then the command processor is run with the /K switch to cmd.exe. This means that the window will remain after the command has been run. If it is not an internal cmd command or batch file then it is a program and will run as either a windowed application or a console application. parameters These are the parameters passed to the command/program If Command Extensions are enabled, external command invocation through the command line or the START command changes as follows: non-executable files may be invoked through their file association just by typing the name of the file as a command. (e.g. WORD.DOC would launch the application associated with the .DOC file extension). See the ASSOC and FTYPE commands for how to create these associations from within a command script. When executing an application that is a 32-bit GUI application, CMD.EXE does not wait for the application to terminate before returning to the command prompt. This new behavior does NOT occur if executing within a command script. When executing a command line whose first token is the string "CMD " without an extension or path qualifier, then "CMD" is replaced with the value of the COMSPEC variable. This prevents picking up CMD.EXE from the current directory. When executing a command line whose first token does NOT contain an extension, then CMD.EXE uses the value of the PATHEXT environment variable to determine which extensions to look for and in what order. The default value for the PATHEXT variable is: .COM;.EXE;.BAT;.CMD Notice the syntax is the same as the PATH variable, with semicolons separating the different elements. When searching for an executable, if there is no match on any extension, then looks to see if the name matches a directory name. If it does, the START command launches the Explorer on that path. If done from the command line, it is the equivalent to doing a CD /D to that path. -----Original Message----- From: Kenn Baynton [mailto:bayntonk@ElectionsOntario.on.ca] Sent: Thursday, August 14, 2003 10:50 AM To: PowerHouse List (E-mail) Subject: Background processing Greetings all, As some of you may know, I am engaged in a conversion project to move from OpenVMS/ Interbase 3.3J/ PH 7.1 to Win2K/ Oracle9i/ PH 8.41C. I have run into an issue that I hope the collective can help with. I know both Unix and OpenVMS have queues, secondary process areas that run in the background. MSDos has no such functionality to my knowledge. I am trying to run a QUIZ report from a QUICK screen, but I don't want the command process text to overlay the QUICK screen. Does anyone know a way to run a process in the background from Win2K/DOS? It has been suggested to me that Windows Scripting could probably run my process in a separate DOS Command window, but I am unsure how to proceed. If anyone has done something like this, I would appreciate your input, and if possible, a code sample. Thanks Kenn Baynton = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. ------_=_NextPart_000_01C36279.7EA5DD30 Content-Type: application/ms-tnef Content-Transfer-Encoding: base64 eJ8+IgsPAQaQCAAEAAAAAAABAAEAAQeQBgAIAAAA5AQAAAAAAADoAAEIgAcAGAAAAElQTS5NaWNy b3NvZnQgTWFpbC5Ob3RlADEIAQkABAACAAAAAAAAAAEIAAUABAAAAAAAAAAAAAEFgAMADgAAANMH CAAOAAsAIgAFAAQAJgEBIIADAA4AAADTBwgADgALACIACQAEACoBAQmAAQAhAAAAMUIwQUFBQzkz NjIwODg0QUJGNTRBRjhBQkZGOUZFQTgAjgcBBIABABYAAABCYWNrZ3JvdW5kIHByb2Nlc3NpbmcA XQgBDYAEAAIAAAACAAIAAQOQBgCYEAAAMgAAAAMANgAAAAAAAwABbgAAAAADAFuACCAGAAAAAADA AAAAAAAARgAAAABShQAAc3kBAB4AXIAIIAYAAAAAAMAAAAAAAABGAAAAAFSFAAABAAAABAAAADku MAALAIGACCAGAAAAAADAAAAAAAAARgAAAAAGhQAAAAAAAAMADoAIIAYAAAAAAMAAAAAAAABGAAAA AAGFAAAAAAAAQABdgAggBgAAAAAAwAAAAAAAAEYAAAAAYIUAAAAI1ugpAAAACwAQgAggBgAAAAAA wAAAAAAAAEYAAAAAA4UAAAAAAAALABGACCAGAAAAAADAAAAAAAAARgAAAAAOhQAAAAAAAAMAN4AI IAYAAAAAAMAAAAAAAABGAAAAABCFAAAAAAAAAwA4gAggBgAAAAAAwAAAAAAAAEYAAAAAEYUAAAAA AAADAD6ACCAGAAAAAADAAAAAAAAARgAAAAAYhQAAAAAAAAIBCRABAAAAWgsAAFYLAAChFwAATFpG dRVDCVoDAAoAcmNwZzEyNeIyA0N0ZXgFQQEDAff/CoACpAPkBxMCgA/zAFAEVj8IVQeyESUOUQMB AgBjaOEKwHNldDIGAAbDESX2MwRGE7cwEiwRMwjvCfe2OxgfDjA1ESIMYGMAUDMLCQFkMzYWUAum IEs5CfBuLAqiCoQKgFRoCQSQZSAEACBhICKAU1RBUlQiIAWgmm0DgWQeUAOgRE8F8HZ0E+AFQHkI YB8gA5F1NRQQLh1KcwGQACAgLxBMT1cgIkBNSU6hIkBXQUlUIpAiB2CEdGweQHRvIGQEALULUXkf oiAD8B+Abwfg+nQjk2IKwB8QJQAEIB811i8loAVAZgMQZR1LB3BNEiB1H1ALgGdzHURMGG92ZQtg H4AsIE8GSB1KHURDOlxcV0ki0E5UKxBzeSHwZRBtMzI+HhBscCD7IfMdRFMiAh5yFBAKsSBAZx5A JNYj8HJ1A6AtoXBvBZAGkAiQH5BwA2AJwGEfKBAFsR81ISsewyBbIsklQyJdMjAvRAqwICCdMsJJ MsIiwTOjQVgywghTRVAe4EFURSASfCJAU0ge4EVEXT8dRCKQNlIy4CJiNVFOTwpSNFBMNUJISUdI RzVCNbA3gFRJTTUzQZBCT1ZFN0hCRSJh7zdENe0jEjLCQjLBJjYv9f817C3iB4AOsBQANeU1+DJV /zZTI48knyWhISU2UjMSNlRfIpAtMyhxQTEYIGNBEHK6eTX4QkP2REYegHALUPsN4CBAaQIgQfEg IAhgBUDdBQBlR7FE0R6QbgfRJNT+LkCgHhA1+kZIR1oT4AQgPF5DTEEfgEeARNFpZ85uBbAJgEng VW5A4AQR/yAgHkBHWUo/NlMJ8AGgTgE7TIIv8WNOEShxKZBeQl1IoWseUk5SAiBsQaB3/0GRQREL gD6hLvAFME9PNlN7Tl82FklGSR4BSTMJ8HZfRRACIAeAAjBB8WwDIGL3QPFSwgUQZwuAB0BYawqw PwQQCYBUT1VUQSBVomNt/zEADsBVwR+BTXAFQF0zCHD/GCBZAVh5QwkiwkZ8JNUoYXkHcGl6W4o0 UWDPYdRhDnhiXjTHRscxNi1i+UDAIFck4wQgL/YfsS3H/weABGBFcC9BANBKKTWERpr/Zz9oSBPh L8FpbzZDImNGj8dHlh+xVaJJREw1MC/w60fQBRB0QaBjC2AEEDX4/zdFb89w2zdFcf82JTfjb6// cL0343Y/NiU4Z3hPcPk4Z/96XzYlOSp8n3EmOSp+v0XG/zoogO9xF4TKg082JSMUeB//R6UfclNA bCECEAXAbCFdAn8EkChhLhE1+Dx9W682U0n+ZovyHmJxEj6hWkJdcR8n/wWxHpAmsRPQJuNVkk8/ VUh/HzZRVYvSBCAu8kgSVZMv/ksscEgRknFBEV11QwlKmv8eAB5hB4AGIiAjVaIk1Vkz9xggAMAf sWEBgBKBlJmYT/82U0xSWYAJ8C7iISuO74/2/14ykH+RiJJPn982UZAVL+fvizObYy8CBCBlSCES gR6Q/yTUL8FV70qekfMFoACABvD/VcufTz5IV9MUEB6AHjFVov+tqVtEXPeNryoNj+EIUB9U/kUO 0AnwAJCrca6zUKQpgfcOwaJFH0d2UXCpaSAgA2D8dWeWlB82TQFZ0lWTMeT/HzYT0SiAB5FMYQIQ WVBn4ecrAB1ZTXBuLV2xXrABkb9A4SbymdFBkVmBtiJrsDJ/tzhFEKPkW1FRcAcwR8NqyyDwVDli U2F5cETCVaL/ULAHgDBgj/BVor8VqzMwxFUikCghEGfDsVc3UETWLh/gTKB3CGBsnRkLYP8vAJdi Vby/Vy/BlmfEk6PzO7USs9MpQwkGYFmUQVOGU8SxH3JGVFlQNTD/HzW6kgXASEAuo0iTWZMUEP81 +L9pupEDYUgDm+IfJwT0/SErV6RRtQG8UkjjLxFHac8gIx5jLABsA0dVVzBHWYkpkENNxIBFWEU1 +P8lAAeRXjKLd8ZOjDpZcYvBux5AGCB0CHADAMFybzX4/ZSdbdEBmYVJQlmAE+BYkP8FsdcDN0Aj QFFwXrEeUI/wf9JHNfjPv9DP0d/g+Lhjd/9IQK6RJvAUAIwSvfBxEU409yHwBRBE0SLV8R6g3+xI Us8DkcknMGJDs3F1B0Avkv5yKZCkQuaTHxCV8i3QC2B3UYDH1NssdgdAClDCJkP+TwXgy8BMoOyw ByFQ0dzmvS/wZSkwAjBoAQ3ga0TC/1QQ1e/PVF56RQfh/+MP5B//5SjeN6thAZCb4qmpySfqBZ/w RSDiTjTsuzTgVEjWMP8rcPgIWInuBkEDPpIoYfWC/w3gQ+DJJ04xQSAXsL3gi7L/zfkfhPWgIEEF sBHh3OMeQPsPEcXgbP0i7NLX5vt17fevqbgQkLsrQ/Yu7YE71iK9BzBCNRAHMPBBPv5OXkDvDeBZ lCug93F45bfB8kxh//s27fcpkOucFBAoYBeStBHnLcXBZkFAZmYeIV8CQOD9WOJz8v8tsSWwE9BE wsyC/+gjvFYpkN8hqAIeQ01wZNH/o7KLA71g+Ji2xp7h/+L/k/8hAB5BwkTB4xPjulJE+MHT/8Ox j+TXAuoDMYq358Xj+jX/s5BBcE2BkgDTpjMSGRQlAH+4gfFWqbS36hLRkCPIQmVd6XBp7LFY8kES b0jkQ19rEDLwXPQdJic6LSPyT3VaBk1OEWG6QCPzqbRGsdyROiBLpGDg0EJBkJtTwIsBW5vBAtBv OkLQcSbDa0BFQOBFQLPyT/v3cYfhLqxxisA15cpwU8BnJjCuYNqQc2RBkFHwQRe3YMAxa9A0UfAy MDBCM2vQMDo1MIAgTZ2ptFQngPtgqLFySOfgja6RTNQg6AAoRS0nMuIpMYV1YmrykSYwJqC/77CO QOfglSjft6m0R5ugv/4QRMHUMVlQFUWpvEEN0VuzIMITeefgvTNrE7B371Hw1QHxgKRgZyURASOr Q//vMPYgR9KOES8y2vduEO8wqc9UT3CkYFbtoC9XIIdTwkLQrpEzLjNKOTBiUHfgNy4xQQJsUTKe SzkwJEBugEDgOWk6M+A4LjQxQxkSqbTdwf/aQaeBU7FBIKHiTiDs4dPT/1cwSEA40JSFWVAoUjhB isD/TDEPgPAgSBKsn1b0NPKjgPdeQP7gTeBpCiABAjjFTEH7OEHpcGXs4BnRzdCrYSqw/24xUVWu skxgFVbT8T10yDPvOaAvtsOx7aBE9cBMQxOxfz5Qo8LF8dWS6ZGIMTrBbf55qbQ08rTBukAZEjVi 5kCmedrEp2QgUdTwWury724gi6HPck1DQ5cBzTGkYN1R8GLn8Ty1HfEn13IhIt+UryBB6FEhQjgx cuswSoH/VbFOmsOxSMAX4Km0FHEeAv9Cg6hRUuJM5kWmR2/PVDr0+cSgUz9L8egAnoGptJ7DfT5Q Z7pBx7JKoj51bFZT/+GjEYK5gMUB3HI5oLygvWD/p3JK0FaJVIVoyFjhswea5P9PVTVip4A+UBNR zMUwQ2VQ/xkUVOQ8xtQwHfMz8uCiEaD/1VC98Mgx1CA1MsTj1RIYUefHkjRii+FucLxwT1ABA/5m qbRN0DCRDBOrQgHgCqL/ipCYJiyFuhEWMBAaJloQGnw9IG2Pbp9vr2/QqbRNPydBZQTmMCYwTdAt QWgtfGxAcdIP8JcgxeCX8GTedS6n4ZKewCYwIj5QdCVv6rFd0STkQsFkSoNyNi3/m6BEgeYwcr/z IkMgdMd0kXNhonQlIDyv8sTgAdA+D3Vfdm93f3OVaHR0cOg6Ly99nC8uUrXRfzP/4MDMgI4AckVq htQhcdLUEv+IYPXBtOHpQPoQfETlM8gz/4JzNHMrMr2BXyF0FgIAqbQCfYcAAAAeAHAAAQAAABYA AABCYWNrZ3JvdW5kIHByb2Nlc3NpbmcAAAACAXEAAQAAACAAAAABw2J1ozGjATKAnohLX6m/E6Pk nPNxAACGGnAAAFiSwAMAJgAAAAAAAwAuAAAAAAALAAIAAQAAAAsAFwwAAAAAAwBdQAAAAAADAAlZ AQAAAAMA3j+vbwAAQAA5ADDdpX55YsMBAwDxPwkEAAAeADFAAQAAAA0AAABUSU0uQ1VNTUlOR1MA AAAAAwAaQAAAAAAeADBAAQAAAA0AAABUSU0uQ1VNTUlOR1MAAAAAAwAZQAAAAAADAP0/5AQAAAMA gBD/////AgFHAAEAAAA2AAAAYz1VUzthPSA7cD1sb3lhbHR5b25lO2w9U0NJTk1BSUwwMS0wMzA4 MTQxNTM0MDVaLTk5MTEAAAACAfk/AQAAAE8AAAAAAAAA3KdAyMBCEBq0uQgAKy/hggEAAAAAAAAA L089TE9ZQUxUWU9ORS9PVT1DSU4vQ049UkVDSVBJRU5UUy9DTj1USU0uQ1VNTUlOR1MAAB4A+D8B AAAADQAAAFRpbSBDdW1taW5ncwAAAAAeADhAAQAAAA0AAABUSU0uQ1VNTUlOR1MAAAAAAgH7PwEA AABPAAAAAAAAANynQMjAQhAatLkIACsv4YIBAAAAAAAAAC9PPUxPWUFMVFlPTkUvT1U9Q0lOL0NO PVJFQ0lQSUVOVFMvQ049VElNLkNVTU1JTkdTAAAeAPo/AQAAAA0AAABUaW0gQ3VtbWluZ3MAAAAA HgA5QAEAAAANAAAAVElNLkNVTU1JTkdTAAAAAEAABzC64TpbeWLDAUAACDBKSSeBeWLDAR4APQAB AAAAAQAAAAAAAAAeAB0OAQAAABYAAABCYWNrZ3JvdW5kIHByb2Nlc3NpbmcAAAAeADUQAQAAADQA AAA8RjBDMDkyM0E3OTYxRDA0NkEyMDYxQ0RCM0Y2MkJDRDc2MjRBNTNAc2Npbm1haWwwMT4ACwAp AAAAAAALACMAAAAAAAMABhBn7QoxAwAHEBQPAAADABAQAAAAAAMAERABAAAAHgAIEAEAAABlAAAA S0VOTixUSEVSRUlTQSJTVEFSVCJDT01NQU5ESU5ET1NUSEFUWU9VQ0FOVVNFU1RBUlQvTE9XL01J Ti9XQUlUIlRJVExFVE9ESVNQTEFZSU5XSU5ET1dUSVRMRUJBUiJET1NDTwAAAAACAX8AAQAAADQA AAA8RjBDMDkyM0E3OTYxRDA0NkEyMDYxQ0RCM0Y2MkJDRDc2MjRBNTNAc2Npbm1haWwwMT4Agq0= ------_=_NextPart_000_01C36279.7EA5DD30-- From bruce@schuck.com Thu Aug 14 19:12:05 2003 From: bruce@schuck.com (bruce@schuck.com) Date: Thu, 14 Aug 2003 11:12:05 -0700 (PDT) Subject: Background processing Message-ID: <20030814111207.11150.h010.c000.wm@mail.schuck.com.criticalpath.net> Win2k is not DOS. Programs can run in the background. Services can run in the background. The AT command can schedule jobs if the schedule service is running. A more useful enhancement to AT.exe is soon.exe which lets you schedule jobs "soon". You can get it from here: http://www.eu.microsoft.com/windows2000/techinfo/reskit/tools/existing/soon-o.asp The AT command schedules commands and programs to run on a computer at a specified time and date. The Schedule service must be running to use the AT command. AT [\\computername] [ [id] [/DELETE] | /DELETE [/YES]] AT [\\computername] time [/INTERACTIVE] [ /EVERY:date[,...] | /NEXT:date[,...]] "command" \\computername Specifies a remote computer. Commands are scheduled on the local computer if this parameter is omitted. id Is an identification number assigned to a scheduled command. /delete Cancels a scheduled command. If id is omitted, all the scheduled commands on the computer are canceled. /yes Used with cancel all jobs command when no further confirmation is desired. time Specifies the time when command is to run. /interactive Allows the job to interact with the desktop of the user who is logged on at the time the job runs. /every:date[,...] Runs the command on each specified day(s) of the week or month. If date is omitted, the current day of the month is assumed. /next:date[,...] Runs the specified command on the next occurrence of the day (for example, next Thursday). If date is omitted, the current day of the month is assumed. "command" Is the Windows NT command, or batch program to be run. On Thu, 14 Aug 2003 10:49:57 -0400, Kenn Baynton wrote: > > Greetings all, > > As some of you may know, I am engaged in a > conversion project to > move from OpenVMS/ Interbase 3.3J/ PH 7.1 to Win2K/ > Oracle9i/ PH 8.41C. I > have run into an issue that I hope the collective can > help with. > > I know both Unix and OpenVMS have queues, > secondary process areas > that run in the background. MSDos has no such > functionality to my > knowledge. I am trying to run a QUIZ report from a > QUICK screen, but I > don't want the command process text to overlay the > QUICK screen. Does > anyone know a way to run a process in the background > from Win2K/DOS? It has > been suggested to me that Windows Scripting could > probably run my process in > a separate DOS Command window, but I am unsure how to > proceed. If anyone > has done something like this, I would appreciate your > input, and if > possible, a code sample. > > Thanks > > Kenn Baynton > > = = = = = = = = = = = = = = = = = = = = = = = = = = = = > Mailing list: powerh-l@lists.swau.edu > Subscribe: "subscribe" in message body to > powerh-l-request@lists.swau.edu > Unsubscribe: "unsubscribe " in message body > to powerh-l-request@lists.swau.edu > http://lists.swau.edu/mailman/listinfo/powerh-l > This list is closed, thus to post to the list you must > be a subscriber. From paulj@scs.com.my Fri Aug 15 07:33:18 2003 From: paulj@scs.com.my (Paul Joseph, ConsultMgr, SCSM/MSB) Date: Fri, 15 Aug 2003 14:33:18 +0800 Subject: PH on Unix with C Shell Message-ID: Hi, I would like to know can Powerhouse run on C shell. We need to change to C shell login because we need to run a few scrip to make the system more user friendly. But it seems that the system does'nt recognised our qkgo file. What should I do? > -----Original Message----- > From: powerh-l-request@cube.swau.edu [SMTP:powerh-l-request@cube.swau.edu] > Sent: Monday, August 11, 2003 7:25 PM > To: powerh-l@lists.swau.edu > Subject: powerh-l digest, Vol 1 #749 - 3 msgs > > Send powerh-l mailing list submissions to > powerh-l@lists.swau.edu > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.swau.edu/mailman/listinfo/powerh-l > or, via email, send a message with subject or body 'help' to > powerh-l-request@lists.swau.edu > > You can reach the person managing the list at > powerh-l-admin@lists.swau.edu > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of powerh-l digest..." > > > Today's Topics: > > 1. GENPDLSCR (Jerry Finn) > 2. Re:GENPDLSCR (Peter Bateman) > 3. Martin Paulin/MCPA/Desjardins est absent(e). > (martin_paulin@acadie.com) > > --__--__-- > > Message: 1 > Date: Sun, 10 Aug 2003 17:26:43 +0200 > From: Jerry Finn > To: powerh-l@lists.swau.edu > Subject: GENPDLSCR > > > On AS400 there is a program to generate PDL source from > information on the system about DB2. I think its call > GENPDLSCR. > > Is there anything on UNIX that can do the same for a > Oracle database > > Jerry > finnjj@telefonica.net > > --__--__-- > > Message: 2 > From: "Peter Bateman" > To: finnjj@telefonica.net, powerh-l@lists.swau.edu > Subject: Re: GENPDLSCR > Date: Sun, 10 Aug 2003 13:49:54 -0300 > > Jerry: > > I suspect someone has written a few small QUIZ programs to extract the > ORACLE metadata that you > need. I have done it for ALLBASE and for InterBase. Cognos's new ARCHITECT > > does extract a fair amount of Oracle metadata as does the Axiant import > facility. > > Regards, > Peter Bateman > > > >From: Jerry Finn > >To: powerh-l@lists.swau.edu > >Subject: GENPDLSCR > >Date: Sun, 10 Aug 2003 17:26:43 +0200 > > > > > >On AS400 there is a program to generate PDL source from > >information on the system about DB2. I think its call > >GENPDLSCR. > > > >Is there anything on UNIX that can do the same for a > >Oracle database > > > >Jerry > >finnjj@telefonica.net > >= = = = = = = = = = = = = = = = = = = = = = = = = = = = > >Mailing list: powerh-l@lists.swau.edu > >Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu > >Unsubscribe: "unsubscribe " in message body to > >powerh-l-request@lists.swau.edu > >http://lists.swau.edu/mailman/listinfo/powerh-l > >This list is closed, thus to post to the list you must be a subscriber. > > _________________________________________________________________ > Add photos to your e-mail with MSN 8. Get 2 months FREE*. > http://join.msn.com/?page=features/featuredemail > > > --__--__-- > > Message: 3 > Subject: Martin Paulin/MCPA/Desjardins est absent(e). > From: martin_paulin@acadie.com > To: powerh-l@cube.swau.edu > Date: Mon, 11 Aug 2003 01:01:03 -0300 > > Je serai absent(e) du 2003-08-08 au 2003-08-22. > > Je serais absent du bureau a partir du 11 août au 23 août ceci afin de > prendre mes vacances d'été > > Pour le support : > > CBS : Vous pouvez contacter Roger StCoeur au 4415 > > Paie internet, DRD internet : Vous pouvez contacter Roger Chiasson au 4406 > > Merci et bonne journée > > > > > > --__--__-- > > = = = = = = = = = = = = = = = = = = = = = = = = = = = = > Mailing list: powerh-l@lists.swau.edu > Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu > Unsubscribe: "unsubscribe " in message body to > powerh-l-request@lists.swau.edu > http://lists.swau.edu/mailman/listinfo/powerh-l > This list is closed, thus to post to the list you must be a subscriber. > > > End of powerh-l Digest > ************************************************************************ We attend to your needs by offering superior customer service with our call centre business continuity planning services. Check it out at http://www.onecall.com.my or call us at 03 - 79565800 ************************************************************************ From darren.reely@latticesemi.com Fri Aug 15 18:23:18 2003 From: darren.reely@latticesemi.com (Darren Reely) Date: Fri, 15 Aug 2003 10:23:18 -0700 Subject: PH on Unix with C Shell References: Message-ID: <3F3D1706.7000809@latticesemi.com> Yes, PH can run from the csh. I'm not sure why the QKGO file wouldn't be recognized. Have you tried something like: quick procloc=/pathtoqkcfiles auto=sys.qkg Perhaps your expected environment isn't being set up as you expect. Start by doing a 'printenv' command to see if your PH variables are correct. You might want to tell us what shell your currently using. Not sure that would help though. My Unix experience is with csh and tcsh only. Also note: Please to not attach irrelevant responses from other conversations. Darren Paul Joseph, ConsultMgr, SCSM/MSB wrote: >Hi, > >I would like to know can Powerhouse run on C shell. We need to change to C >shell login because we need to run a few >scrip to make the system more user friendly. But it seems that the system >does'nt recognised our qkgo file. What should I do? > > > > From Bob.Deskin@Cognos.COM Mon Aug 18 20:58:27 2003 From: Bob.Deskin@Cognos.COM (Deskin, Bob) Date: Mon, 18 Aug 2003 15:58:27 -0400 Subject: Powerhouse 8.41C documentation Message-ID: This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. ------_=_NextPart_001_01C365C3.16B95A60 Content-Type: text/plain; charset="iso-8859-1" Sorry for the delayed response, I was on vacation with no e-mail. YES it does happen occasionally. PH 8.41C for NT/2000/XP is available now. It comes with a New Features book that includes a section on the differences for NT/2000/XP. Basically, the NT/2000/XP version is almost the same as the UNIX version. The book highlights the differences. Bob Deskin Product Manager, Application Development Tools, Cognos Inc. bob.deskin@cognos.com (613) 738-1338 ext 7268 FAX: (613) 727-1178 3755 Riverside Drive P.O. Box 9707 Stn. T, Ottawa ON K1G 4K9 CANADA -----Original Message----- From: Kenn Baynton [mailto:bayntonk@ElectionsOntario.on.ca] Sent: Thursday, August 07, 2003 12:14 PM To: powerh-l@lists.swau.edu Subject: Powerhouse 8.41C documentation Greetings All, Is there a scheduled release for documentation for the new version of Powerhouse 8.41C for Win2K? I'm trying to work with it, but I'm floundering because there's NO specific documentation for this version and because of Powerhouse's small user base, no code bases on the web. I am wary of using MPE/iX, Unix, or OpenVMS commands with this version because I can't forecast the result and I don't believe the platforms will respond the same way. Thanks again Kenn = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. Join us at Cognos' biggest event of the year Enterprise 2003, The Cognos Business Forum. Taking place in over 25 cities around the world, it's an opportunity for Business and IT leaders to learn about strategies for driving performance. Visit http://www.cognos.com/enterprise03 for more details. This message may contain privileged and/or confidential information. If you have received this e-mail in error or are not the intended recipient, you may not use, copy, disseminate or distribute it; do not open any attachments, delete it immediately from your system and notify the sender promptly by e-mail that you have done so. Thank you. ------_=_NextPart_001_01C365C3.16B95A60 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable RE: Powerhouse 8.41C documentation

Sorry for the delayed response, I was on vacation = with no e-mail. YES it does happen occasionally.

PH 8.41C for NT/2000/XP is available now. It comes = with a New Features book that includes a section on the differences for = NT/2000/XP. Basically, the NT/2000/XP version is almost the same as the = UNIX version. The book highlights the differences.

Bob = Deskin           =   
Product Manager, Application Development Tools, = Cognos Inc.
bob.deskin@cognos.com (613) 738-1338 ext 7268 FAX: = (613) 727-1178
3755 Riverside Drive P.O. Box 9707 Stn. T, Ottawa ON = K1G 4K9 CANADA


-----Original Message-----
From: Kenn Baynton [mailto:bayntonk@Election= sOntario.on.ca]
Sent: Thursday, August 07, 2003 12:14 PM
To: powerh-l@lists.swau.edu
Subject: Powerhouse 8.41C documentation


Greetings All,

Is there a scheduled release for documentation for = the new version of
Powerhouse 8.41C for Win2K?  I'm trying to work = with it, but I'm floundering
because there's NO specific documentation for this = version and because of
Powerhouse's small user base, no code bases on the = web.  I am wary of using
MPE/iX, Unix, or OpenVMS commands with this version = because I can't forecast
the result and I don't believe the platforms will = respond the same way.

Thanks again

Kenn
=3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D = =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D
Mailing list: powerh-l@lists.swau.edu
Subscribe: "subscribe" in message body to = powerh-l-request@lists.swau.edu
Unsubscribe: "unsubscribe = <password>" in message body to = powerh-l-request@lists.swau.edu
http://lists.swau.edu/mailman/listinfo/powerh-l
This list is closed, thus to post to the list you = must be a subscriber.

Join us at Cognos' biggest event of the year = Enterprise 2003, The Cognos Business Forum.  Taking place in = over 25 cities around the world, it's an opportunity for Business and = IT leaders to learn about strategies for driving performance. Visit = http://www.cognos.com/enterprise03 for more = details.

This message may contain privileged and/or = confidential information.  If you have received this e-mail in = error or are not the intended recipient, you may not use, copy, = disseminate or distribute it; do not open any attachments, delete it = immediately from your system and notify the sender promptly by e-mail = that you have done so.  Thank you.

------_=_NextPart_001_01C365C3.16B95A60-- From oh@scanconsult.dk Thu Aug 21 11:09:42 2003 From: oh@scanconsult.dk (Ole Hansen, ScanConsult) Date: Thu, 21 Aug 2003 12:09:42 +0200 Subject: Quick: Unix shell scripts, which sets environment vars Message-ID: <000301c367cc$57126b00$0a0b10ac@scanconsult02.bogus> Hi all, I need to execute a shell script from Quick, and retrieve the environment variables, set by the script. The script works and the variables is set in the calling process when run manually from the shell with a dot preceeding the scriptname (. ) but when I try from Quick using RUN COMMAND ". " it fails with an exit status of 126. It is the leading dot, that causes the error because when I try RUN COMMAND "", I get no errors - but the environment variables set by the script are of course not available to GETSYSTEMVAL afterwards. So I guess that my problem can be re-phrased to: How does one execute a shell command from Quick using the same shell instance as Quick runs in? Any help will be highly appreciated. Mange hilsner / With kind regards Ole Hansen =========================================================== E-mail: oh@scanconsult.dk Cell Phone: +45 4040 1150 =========================================================== ScanConsult IT-Partners ApS Voice : +45 8738 7474 Jegstrupvej 96A Fax : +45 8738 7475 DK-8361 Hasselager Support : support@scanconsult.dk Denmark Sales : sales@scanconsult.dk http://www.scanconsult.dk = ParaSuite : A Suite of Air Cargo Handling solutions = = ParaSafe : A Suite of IT-Security solutions = = Partners : Hewlett-Packard, Cognos, Microsoft and more = From Leonard_Berkowitz@harvardpilgrim.org Thu Aug 21 15:01:05 2003 From: Leonard_Berkowitz@harvardpilgrim.org (Leonard_Berkowitz@harvardpilgrim.org) Date: Thu, 21 Aug 2003 10:01:05 -0400 Subject: External procedure table overflow Message-ID: HP3000, MPE 7.5, PowerHouse 8.19C On a test account, one of our users is encountering the dreaded: *d* External procedure table overflow. Increase the QKGO External Procedures parameter Please note: The QKGO file has the External Procedure parameter already set to 50, that is the maximum allowable The user reports this error early on: MENU -- >> SUB-MENU -->> data screen where the error occurs sometimes for one screen and sometimes for another. I tried to reproduce the error this morning, flipping back and forth several times from the SUB-MENU first to one screen and then to the other screen without the erro I would appreciate any suggestions here. Thanks in advance. Leonard -- Leonard S. Berkowitz Perot Health Care Systems (Harvard Pilgrim Health Care account) voice: 617-509-1212 fax: 617-509-1955 pager: 781-226-2431 The information contained in this email message and any attachments may be privileged and/or confidential. It is for intended addressee(s) only. If you are not the intended recipient, you are hereby notified that any review, disclosure, reproduction, distribution or other use of this communication is strictly prohibited. If you received this email in error, please notify the sender by reply and delete the message without saving, copying or disclosing it. Thank you. From chuck.reinke@sbcglobal.net Thu Aug 21 16:15:02 2003 From: chuck.reinke@sbcglobal.net (chuck.reinke) Date: Thu, 21 Aug 2003 08:15:02 -0700 Subject: External procedure table overflow References: Message-ID: <000701c367f6$ff861960$6400a8c0@netdex.com> Leonard, The first thing I'd do is ask the user if they were thinking BAD thoughts about the computer, as this is the most likely problem. If they swear this is not the case then you might consider that the QKGO file is not being called up. 50 is awfully big for this parameter and I'm surprised to hear of one so large, unless the application just serves to call a ton of COBOL programs. I suggest that somewhere in System, Account, User mystery of UDCs you'll find the problem. You might test this by setting up a UDC that calls a special QKGO file with some special First Screen to make absolutely sure UDCs are working properly for this user. Chuck > HP3000, MPE 7.5, PowerHouse 8.19C > > On a test account, one of our users is encountering the dreaded: > > *d* External procedure table overflow. Increase the QKGO External Procedures parameter > > Please note: > > The QKGO file has the External Procedure parameter already set to 50, that is the maximum > allowable > The user reports this error early on: MENU -- >> SUB-MENU -->> data screen where the error > occurs sometimes for one screen and sometimes for another. > I tried to reproduce the error this morning, flipping back and forth several times from the > SUB-MENU first to one screen and then to the other screen without the erro > > I would appreciate any suggestions here. > > Thanks in advance. > > Leonard > -- From Dirk.Rohde@vpgroup.com Thu Aug 21 16:41:18 2003 From: Dirk.Rohde@vpgroup.com (Rohde Dirk) Date: Thu, 21 Aug 2003 08:41:18 -0700 Subject: Quick: Unix shell scripts, which sets environment vars Message-ID: I'm not sure what is causing the error (check your file protection), but I believe that Quick starts a child process for any "run command" procedure. Thus, even if you are able to "dot" a script, you would still lose the environment variables upon return. The solution is to either use the "setsystemval" command or to set and export your environment variables before starting Quick. -----Original Message----- From: Ole Hansen, ScanConsult [mailto:oh@scanconsult.dk] Sent: Thursday, August 21, 2003 3:10 AM To: powerh-l@lists.swau.edu Subject: Quick: Unix shell scripts, which sets environment vars Hi all, I need to execute a shell script from Quick, and retrieve the environment variables, set by the script. The script works and the variables is set in the calling process when run manually from the shell with a dot preceeding the scriptname (. ) but when I try from Quick using RUN COMMAND ". " it fails with an exit status of 126. It is the leading dot, that causes the error because when I try RUN COMMAND "", I get no errors - but the environment variables set by the script are of course not available to GETSYSTEMVAL afterwards. So I guess that my problem can be re-phrased to: How does one execute a shell command from Quick using the same shell instance as Quick runs in? Any help will be highly appreciated. Mange hilsner / With kind regards Ole Hansen =========================================================== E-mail: oh@scanconsult.dk Cell Phone: +45 4040 1150 =========================================================== ScanConsult IT-Partners ApS Voice : +45 8738 7474 Jegstrupvej 96A Fax : +45 8738 7475 DK-8361 Hasselager Support : support@scanconsult.dk Denmark Sales : sales@scanconsult.dk http://www.scanconsult.dk = ParaSuite : A Suite of Air Cargo Handling solutions = = ParaSafe : A Suite of IT-Security solutions = = Partners : Hewlett-Packard, Cognos, Microsoft and more = = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. From aarnone@grey.com Thu Aug 21 18:59:40 2003 From: aarnone@grey.com (Arnone, Anthony) Date: Thu, 21 Aug 2003 13:59:40 -0400 Subject: Screen Question Message-ID: <82C2BB8A11D0D71182C100508BDF9EB49BBBC9@xch2s.grey.com> All - I have a table that contains these fields: Client Code Branch Code Rate Amount Function Code I need to create a screen that will allow the user to enter a client code and a branch code once and then have an area to enter 15 function codes and corresponding rate amounts. Then when the user is done and adds the record it will write 15 separate records to the table with the different function codes and rates but all will have the same client and branch code. If anyone has any ideas I would appreciate it, I think my biggest problem is how to write the record to the table. I am using version 8.19 on and HP3000 running MPE/iX. R/S Anthony Arnone Programmer/Analyst Grey Global Group (212) 886-7812 aarnone@grey.com From Bob.Deskin@Cognos.COM Thu Aug 21 19:09:26 2003 From: Bob.Deskin@Cognos.COM (Deskin, Bob) Date: Thu, 21 Aug 2003 14:09:26 -0400 Subject: Screen Question Message-ID: This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. ------_=_NextPart_001_01C3680F.5B726E50 Content-Type: text/plain; charset="iso-8859-1" Can you not use a repeating PRIMARY where the Client code and Branch code are outside of the CLUSTER. Then use the ITEM xxx FINAL FIRST(xxx) function to get the Client and Branch code values into each record. Bob Deskin Product Manager, Application Development Tools, Cognos Inc. bob.deskin@cognos.com (613) 738-1338 ext 7268 FAX: (613) 727-1178 3755 Riverside Drive P.O. Box 9707 Stn. T, Ottawa ON K1G 4K9 CANADA -----Original Message----- From: Arnone, Anthony [mailto:aarnone@grey.com] Sent: Thursday, August 21, 2003 2:00 PM To: Powerhouse List (E-mail) Subject: Screen Question All - I have a table that contains these fields: Client Code Branch Code Rate Amount Function Code I need to create a screen that will allow the user to enter a client code and a branch code once and then have an area to enter 15 function codes and corresponding rate amounts. Then when the user is done and adds the record it will write 15 separate records to the table with the different function codes and rates but all will have the same client and branch code. If anyone has any ideas I would appreciate it, I think my biggest problem is how to write the record to the table. I am using version 8.19 on and HP3000 running MPE/iX. R/S Anthony Arnone Programmer/Analyst Grey Global Group (212) 886-7812 aarnone@grey.com = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. Join us at Cognos' biggest event of the year Enterprise 2003, The Cognos Business Forum. Taking place in over 25 cities around the world, it's an opportunity for Business and IT leaders to learn about strategies for driving performance. Visit http://www.cognos.com/enterprise03 for more details. This message may contain privileged and/or confidential information. If you have received this e-mail in error or are not the intended recipient, you may not use, copy, disseminate or distribute it; do not open any attachments, delete it immediately from your system and notify the sender promptly by e-mail that you have done so. Thank you. ------_=_NextPart_001_01C3680F.5B726E50 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable RE: Screen Question

Can you not use a repeating PRIMARY where the Client = code and Branch code are outside of the CLUSTER. Then use the ITEM xxx = FINAL FIRST(xxx) function to get the Client and Branch code values into = each record.

Bob = Deskin           =   
Product Manager, Application Development Tools, = Cognos Inc.
bob.deskin@cognos.com (613) 738-1338 ext 7268 FAX: = (613) 727-1178
3755 Riverside Drive P.O. Box 9707 Stn. T, Ottawa ON = K1G 4K9 CANADA

-----Original Message-----
From: Arnone, Anthony [mailto:aarnone@grey.com]
Sent: Thursday, August 21, 2003 2:00 PM
To: Powerhouse List (E-mail)
Subject: Screen Question


All -

        I have a = table that contains these fields:

Client Code
Branch Code
Rate Amount
Function Code

I need to create a screen that will allow the user to = enter a client code
and a branch code once and then have an area to = enter 15 function codes and
corresponding rate amounts. Then when the user is = done and adds the record
it will write 15 separate records to the table with = the different function
codes and rates but all will have the same client = and branch code. If anyone
has any ideas I would appreciate it, I think my = biggest problem is how to
write the record to the table. I am using version = 8.19 on and HP3000 running
MPE/iX.
R/S
Anthony Arnone
Programmer/Analyst
Grey Global Group
(212) 886-7812
aarnone@grey.com


=3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D = =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D
Mailing list: powerh-l@lists.swau.edu
Subscribe: "subscribe" in message body to = powerh-l-request@lists.swau.edu
Unsubscribe: "unsubscribe = <password>" in message body to = powerh-l-request@lists.swau.edu
http://lists.swau.edu/mailman/listinfo/powerh-l
This list is closed, thus to post to the list you = must be a subscriber.

Join us at Cognos' biggest event of the year = Enterprise 2003, The Cognos Business Forum.  Taking place in = over 25 cities around the world, it's an opportunity for Business and = IT leaders to learn about strategies for driving performance. Visit = http://www.cognos.com/enterprise03 for more = details.

This message may contain privileged and/or = confidential information.  If you have received this e-mail in = error or are not the intended recipient, you may not use, copy, = disseminate or distribute it; do not open any attachments, delete it = immediately from your system and notify the sender promptly by e-mail = that you have done so.  Thank you.

------_=_NextPart_001_01C3680F.5B726E50-- From oh@scanconsult.dk Thu Aug 21 19:21:04 2003 From: oh@scanconsult.dk (Ole Hansen, ScanConsult) Date: Thu, 21 Aug 2003 20:21:04 +0200 Subject: Quick: Unix shell scripts, which sets environment vars In-Reply-To: Message-ID: <000401c36810$fb997710$0a0b10ac@scanconsult02.bogus> Hi Dirk, Yes - of course Quick has already started a child process; thanks for pointing this out. I will have to let the script write the result to a file or a table in the database, where I can read it from Quick. Mange hilsner / With kind regards Ole Hansen =========================================================== E-mail: oh@scanconsult.dk Cell Phone: +45 4040 1150 =========================================================== ScanConsult IT-Partners ApS Voice : +45 8738 7474 Jegstrupvej 96A Fax : +45 8738 7475 DK-8361 Hasselager Support : support@scanconsult.dk Denmark Sales : sales@scanconsult.dk http://www.scanconsult.dk = ParaSuite : A Suite of Air Cargo Handling solutions = = ParaSafe : A Suite of IT-Security solutions = = Partners : Hewlett-Packard, Cognos, Microsoft and more = -----Original Message----- From: powerh-l-admin@cube.swau.edu [mailto:powerh-l-admin@cube.swau.edu] On Behalf Of Rohde Dirk Sent: 21. august 2003 17:41 To: 'oh@scanconsult.dk' Cc: powerh-l@lists.swau.edu Subject: RE: Quick: Unix shell scripts, which sets environment vars I'm not sure what is causing the error (check your file protection), but I believe that Quick starts a child process for any "run command" procedure. Thus, even if you are able to "dot" a script, you would still lose the environment variables upon return. The solution is to either use the "setsystemval" command or to set and export your environment variables before starting Quick. -----Original Message----- From: Ole Hansen, ScanConsult [mailto:oh@scanconsult.dk] Sent: Thursday, August 21, 2003 3:10 AM To: powerh-l@lists.swau.edu Subject: Quick: Unix shell scripts, which sets environment vars Hi all, I need to execute a shell script from Quick, and retrieve the environment variables, set by the script. The script works and the variables is set in the calling process when run manually from the shell with a dot preceeding the scriptname (. ) but when I try from Quick using RUN COMMAND ". " it fails with an exit status of 126. It is the leading dot, that causes the error because when I try RUN COMMAND "", I get no errors - but the environment variables set by the script are of course not available to GETSYSTEMVAL afterwards. So I guess that my problem can be re-phrased to: How does one execute a shell command from Quick using the same shell instance as Quick runs in? Any help will be highly appreciated. Mange hilsner / With kind regards Ole Hansen =========================================================== E-mail: oh@scanconsult.dk Cell Phone: +45 4040 1150 =========================================================== ScanConsult IT-Partners ApS Voice : +45 8738 7474 Jegstrupvej 96A Fax : +45 8738 7475 DK-8361 Hasselager Support : support@scanconsult.dk Denmark Sales : sales@scanconsult.dk http://www.scanconsult.dk = ParaSuite : A Suite of Air Cargo Handling solutions = = ParaSafe : A Suite of IT-Security solutions = = Partners : Hewlett-Packard, Cognos, Microsoft and more = = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. From dmorrison@mcbrideelectric.com Thu Aug 21 19:19:08 2003 From: dmorrison@mcbrideelectric.com (David Morrison - Corporate) Date: Thu, 21 Aug 2003 11:19:08 -0700 Subject: Screen Question Message-ID: <95E33F6AAE73984CA53417395C3DAC677B51C2@srvrexchange.mcb_corp.mcbrideelectric.com> Anthony, Start with this: Use a primary file for the table that will have the 15 records added (OCCURS 15). Use a cluster grouping for the rate and function. Above the cluster, provide input fields for client and branch. David Morrison McBride Electric -----Original Message----- From: Arnone, Anthony [mailto:aarnone@grey.com] Sent: Thursday, August 21, 2003 11:00 AM To: Powerhouse List (E-mail) Subject: Screen Question All - I have a table that contains these fields: Client Code Branch Code Rate Amount Function Code I need to create a screen that will allow the user to enter a client code and a branch code once and then have an area to enter 15 function codes and corresponding rate amounts. Then when the user is done and adds the record it will write 15 separate records to the table with the different function codes and rates but all will have the same client and branch code. If anyone has any ideas I would appreciate it, I think my biggest problem is how to write the record to the table. I am using version 8.19 on and HP3000 running MPE/iX. R/S Anthony Arnone Programmer/Analyst Grey Global Group (212) 886-7812 aarnone@grey.com = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. _________________________________________________ Scanned on 21 Aug 2003 18:11:03 Scanning by http://erado.com From Leonard_Berkowitz@harvardpilgrim.org Thu Aug 21 19:50:08 2003 From: Leonard_Berkowitz@harvardpilgrim.org (Leonard_Berkowitz@harvardpilgrim.org) Date: Thu, 21 Aug 2003 14:50:08 -0400 Subject: External procedure table overflow Message-ID: Chuck, Thanks. We will have to check this out. Leonard -- Leonard S. Berkowitz Perot Health Care Systems (Harvard Pilgrim Health Care account) voice: 617-509-1212 fax: 617-509-1955 pager: 781-226-2431 "chuck.reinke" , global.net> cc: Subject: Re: External procedure table overflow 08/21/2003 11:15 AM Leonard, The first thing I'd do is ask the user if they were thinking BAD thoughts about the computer, as this is the most likely problem. If they swear this is not the case then you might consider that the QKGO file is not being called up. 50 is awfully big for this parameter and I'm surprised to hear of one so large, unless the application just serves to call a ton of COBOL programs. I suggest that somewhere in System, Account, User mystery of UDCs you'll find the problem. You might test this by setting up a UDC that calls a special QKGO file with some special First Screen to make absolutely sure UDCs are working properly for this user. Chuck > HP3000, MPE 7.5, PowerHouse 8.19C > > On a test account, one of our users is encountering the dreaded: > > *d* External procedure table overflow. Increase the QKGO External Procedures parameter > > Please note: > > The QKGO file has the External Procedure parameter already set to 50, that is the maximum > allowable > The user reports this error early on: MENU -- >> SUB-MENU -->> data screen where the error > occurs sometimes for one screen and sometimes for another. > I tried to reproduce the error this morning, flipping back and forth several times from the > SUB-MENU first to one screen and then to the other screen without the erro > > I would appreciate any suggestions here. > > Thanks in advance. > > Leonard > -- From tim.cummings@frequencymarketing.com Thu Aug 21 20:47:48 2003 From: tim.cummings@frequencymarketing.com (Tim Cummings) Date: Thu, 21 Aug 2003 15:47:48 -0400 Subject: Quick: Unix shell scripts, which sets environment vars Message-ID: This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. ------_=_NextPart_001_01C3681D.192521B0 Content-Type: text/plain; charset="iso-8859-1" Ole, In your script, after setting the environment variables, I think if you follow them with "export" commands, it will make those environment variables available to the entire process tree. Tim Cummings -----Original Message----- From: Ole Hansen, ScanConsult [mailto:oh@scanconsult.dk] Sent: Thursday, August 21, 2003 2:21 PM To: 'Rohde Dirk' Cc: powerh-l@lists.swau.edu Subject: RE: Quick: Unix shell scripts, which sets environment vars Hi Dirk, Yes - of course Quick has already started a child process; thanks for pointing this out. I will have to let the script write the result to a file or a table in the database, where I can read it from Quick. Mange hilsner / With kind regards Ole Hansen =========================================================== E-mail: oh@scanconsult.dk Cell Phone: +45 4040 1150 =========================================================== ScanConsult IT-Partners ApS Voice : +45 8738 7474 Jegstrupvej 96A Fax : +45 8738 7475 DK-8361 Hasselager Support : support@scanconsult.dk Denmark Sales : sales@scanconsult.dk http://www.scanconsult.dk = ParaSuite : A Suite of Air Cargo Handling solutions = = ParaSafe : A Suite of IT-Security solutions = = Partners : Hewlett-Packard, Cognos, Microsoft and more = -----Original Message----- From: powerh-l-admin@cube.swau.edu [mailto:powerh-l-admin@cube.swau.edu] On Behalf Of Rohde Dirk Sent: 21. august 2003 17:41 To: 'oh@scanconsult.dk' Cc: powerh-l@lists.swau.edu Subject: RE: Quick: Unix shell scripts, which sets environment vars I'm not sure what is causing the error (check your file protection), but I believe that Quick starts a child process for any "run command" procedure. Thus, even if you are able to "dot" a script, you would still lose the environment variables upon return. The solution is to either use the "setsystemval" command or to set and export your environment variables before starting Quick. -----Original Message----- From: Ole Hansen, ScanConsult [mailto:oh@scanconsult.dk] Sent: Thursday, August 21, 2003 3:10 AM To: powerh-l@lists.swau.edu Subject: Quick: Unix shell scripts, which sets environment vars Hi all, I need to execute a shell script from Quick, and retrieve the environment variables, set by the script. The script works and the variables is set in the calling process when run manually from the shell with a dot preceeding the scriptname (. ) but when I try from Quick using RUN COMMAND ". " it fails with an exit status of 126. It is the leading dot, that causes the error because when I try RUN COMMAND "", I get no errors - but the environment variables set by the script are of course not available to GETSYSTEMVAL afterwards. So I guess that my problem can be re-phrased to: How does one execute a shell command from Quick using the same shell instance as Quick runs in? Any help will be highly appreciated. Mange hilsner / With kind regards Ole Hansen =========================================================== E-mail: oh@scanconsult.dk Cell Phone: +45 4040 1150 =========================================================== ScanConsult IT-Partners ApS Voice : +45 8738 7474 Jegstrupvej 96A Fax : +45 8738 7475 DK-8361 Hasselager Support : support@scanconsult.dk Denmark Sales : sales@scanconsult.dk http://www.scanconsult.dk = ParaSuite : A Suite of Air Cargo Handling solutions = = ParaSafe : A Suite of IT-Security solutions = = Partners : Hewlett-Packard, Cognos, Microsoft and more = = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. ------_=_NextPart_001_01C3681D.192521B0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable RE: Quick: Unix shell scripts, which sets environment = vars

Ole,

In your script, after setting the environment = variables, I think if you follow them with "export" commands, = it will make those environment variables available to the entire = process tree.

Tim Cummings


-----Original Message-----
From: Ole Hansen, ScanConsult [mailto:oh@scanconsult.dk]
Sent: Thursday, August 21, 2003 2:21 PM
To: 'Rohde Dirk'
Cc: powerh-l@lists.swau.edu
Subject: RE: Quick: Unix shell scripts, which sets = environment vars

Hi Dirk,

Yes - of course Quick has already started a child = process; thanks for
pointing this out.

I will have to let the script write the result to a = file or a table in the
database, where I can read it from Quick.

Mange hilsner / With kind regards

Ole Hansen

=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
E-mail: = oh@scanconsult.dk         Cell = Phone: +45 4040 1150
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
ScanConsult IT-Partners = ApS         Voice   : = +45 8738 7474
Jegstrupvej = 96A           &nb= sp;         = Fax     : +45 8738 7475
DK-8361 = Hasselager         Support : = support@scanconsult.dk
Denmark         &n= bsp;          = Sales   :   sales@scanconsult.dk
          &nb= sp;      http://www.scanconsult.dk    &= nbsp;         
=3D ParaSuite :  A Suite of Air Cargo Handling = solutions    =3D
=3D ParaSafe  :  A Suite of IT-Security = solutions           = =3D
=3D Partners  : Hewlett-Packard, Cognos, = Microsoft and more =3D



-----Original Message-----
From: powerh-l-admin@cube.swau.edu [mailto:powerh-l-admin@cube.= swau.edu] On
Behalf Of Rohde Dirk
Sent: 21. august 2003 17:41
To: 'oh@scanconsult.dk'
Cc: powerh-l@lists.swau.edu
Subject: RE: Quick: Unix shell scripts, which sets = environment vars


I'm not sure what is causing the error (check your = file protection), but I
believe that Quick starts a child process for any = "run command" procedure.
Thus, even if you are able to "dot" a = script, you would still lose the
environment variables upon return. The solution is = to either use the
"setsystemval" command or to set and = export your environment variables
before starting Quick.

-----Original Message-----
From: Ole Hansen, ScanConsult [mailto:oh@scanconsult.dk]
Sent: Thursday, August 21, 2003 3:10 AM
To: powerh-l@lists.swau.edu
Subject: Quick: Unix shell scripts, which sets = environment vars


Hi all,

I need to execute a shell script from Quick, and = retrieve the environment
variables, set by the script.

The script works and the variables is set in the = calling process when run
manually from the shell with a dot preceeding the = scriptname (.
<scriptname>) but when I try from Quick using = RUN COMMAND ". <scriptname>"
it fails with an exit status of 126.

It is the leading dot, that causes the error because = when I try RUN COMMAND
"<scriptname>", I get no errors - = but the environment variables set by the
script are of course not available to GETSYSTEMVAL = afterwards.

So I guess that my problem can be re-phrased to: How = does one execute a
shell command from Quick using the same shell = instance as Quick runs in?

Any help will be highly appreciated.

Mange hilsner / With kind regards

Ole Hansen

=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
E-mail: = oh@scanconsult.dk         Cell = Phone: +45 4040 1150
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
ScanConsult IT-Partners = ApS         Voice   : = +45 8738 7474
Jegstrupvej = 96A           &nb= sp;         = Fax     : +45 8738 7475
DK-8361 = Hasselager         Support : = support@scanconsult.dk
Denmark         &n= bsp;          = Sales   :   sales@scanconsult.dk
          &nb= sp;      http://www.scanconsult.dk    &= nbsp;         
=3D ParaSuite :  A Suite of Air Cargo Handling = solutions    =3D
=3D ParaSafe  :  A Suite of IT-Security = solutions           = =3D
=3D Partners  : Hewlett-Packard, Cognos, = Microsoft and more =3D


=3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D = =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D
Mailing list: powerh-l@lists.swau.edu
Subscribe: "subscribe" in message body to = powerh-l-request@lists.swau.edu
Unsubscribe: "unsubscribe = <password>" in message body to
powerh-l-request@lists.swau.edu
http://lists.swau.edu/mailman/listinfo/powerh-l
This list is closed, thus to post to the list you = must be a subscriber. =3D =3D
=3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D = =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D Mailing = list:
powerh-l@lists.swau.edu
Subscribe: "subscribe" in message body to = powerh-l-request@lists.swau.edu
Unsubscribe: "unsubscribe = <password>" in message body to
powerh-l-request@lists.swau.edu
http://lists.swau.edu/mailman/listinfo/powerh-l
This list is closed, thus to post to the list you = must be a subscriber.

=3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D = =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D
Mailing list: powerh-l@lists.swau.edu
Subscribe: "subscribe" in message body to = powerh-l-request@lists.swau.edu
Unsubscribe: "unsubscribe = <password>" in message body to = powerh-l-request@lists.swau.edu
http://lists.swau.edu/mailman/listinfo/powerh-l
This list is closed, thus to post to the list you = must be a subscriber.

------_=_NextPart_001_01C3681D.192521B0-- From VGoparaju@tradepointsystems.com Thu Aug 21 21:10:44 2003 From: VGoparaju@tradepointsystems.com (Goparaju, Vidyasagar) Date: Thu, 21 Aug 2003 16:10:44 -0400 Subject: Quick: Unix shell scripts, which sets environment vars Message-ID: This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. ------_=_NextPart_001_01C36820.4D3AFEE0 Content-Type: text/plain; charset="iso-8859-1" I had problems when using the shell script to set/get the environment variables. Finally I ended up doing something like this: IF NOT SETSYSTEMVAL("GENRIC",TRUNC(T_FULL_COM_NAME)) THEN ERROR "*E* Error while redirecting GENRIC" Sagar -----Original Message----- From: Tim Cummings [mailto:tim.cummings@frequencymarketing.com] Sent: Thursday, August 21, 2003 3:48 PM To: 'oh@scanconsult.dk'; 'Rohde Dirk' Cc: powerh-l@lists.swau.edu Subject: RE: Quick: Unix shell scripts, which sets environment vars Ole, In your script, after setting the environment variables, I think if you follow them with "export" commands, it will make those environment variables available to the entire process tree. Tim Cummings -----Original Message----- From: Ole Hansen, ScanConsult [ mailto:oh@scanconsult.dk ] Sent: Thursday, August 21, 2003 2:21 PM To: 'Rohde Dirk' Cc: powerh-l@lists.swau.edu Subject: RE: Quick: Unix shell scripts, which sets environment vars Hi Dirk, Yes - of course Quick has already started a child process; thanks for pointing this out. I will have to let the script write the result to a file or a table in the database, where I can read it from Quick. Mange hilsner / With kind regards Ole Hansen =========================================================== E-mail: oh@scanconsult.dk Cell Phone: +45 4040 1150 =========================================================== ScanConsult IT-Partners ApS Voice : +45 8738 7474 Jegstrupvej 96A Fax : +45 8738 7475 DK-8361 Hasselager Support : support@scanconsult.dk Denmark Sales : sales@scanconsult.dk http://www.scanconsult.dk = ParaSuite : A Suite of Air Cargo Handling solutions = = ParaSafe : A Suite of IT-Security solutions = = Partners : Hewlett-Packard, Cognos, Microsoft and more = -----Original Message----- From: powerh-l-admin@cube.swau.edu [ mailto:powerh-l-admin@cube.swau.edu ] On Behalf Of Rohde Dirk Sent: 21. august 2003 17:41 To: 'oh@scanconsult.dk' Cc: powerh-l@lists.swau.edu Subject: RE: Quick: Unix shell scripts, which sets environment vars I'm not sure what is causing the error (check your file protection), but I believe that Quick starts a child process for any "run command" procedure. Thus, even if you are able to "dot" a script, you would still lose the environment variables upon return. The solution is to either use the "setsystemval" command or to set and export your environment variables before starting Quick. -----Original Message----- From: Ole Hansen, ScanConsult [ mailto:oh@scanconsult.dk ] Sent: Thursday, August 21, 2003 3:10 AM To: powerh-l@lists.swau.edu Subject: Quick: Unix shell scripts, which sets environment vars Hi all, I need to execute a shell script from Quick, and retrieve the environment variables, set by the script. The script works and the variables is set in the calling process when run manually from the shell with a dot preceeding the scriptname (. ) but when I try from Quick using RUN COMMAND ". " it fails with an exit status of 126. It is the leading dot, that causes the error because when I try RUN COMMAND "", I get no errors - but the environment variables set by the script are of course not available to GETSYSTEMVAL afterwards. So I guess that my problem can be re-phrased to: How does one execute a shell command from Quick using the same shell instance as Quick runs in? Any help will be highly appreciated. Mange hilsner / With kind regards Ole Hansen =========================================================== E-mail: oh@scanconsult.dk Cell Phone: +45 4040 1150 =========================================================== ScanConsult IT-Partners ApS Voice : +45 8738 7474 Jegstrupvej 96A Fax : +45 8738 7475 DK-8361 Hasselager Support : support@scanconsult.dk Denmark Sales : sales@scanconsult.dk http://www.scanconsult.dk = ParaSuite : A Suite of Air Cargo Handling solutions = = ParaSafe : A Suite of IT-Security solutions = = Partners : Hewlett-Packard, Cognos, Microsoft and more = = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. ------_=_NextPart_001_01C36820.4D3AFEE0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable RE: Quick: Unix shell scripts, which sets environment = vars

I= had problems when using the shell script to set/get the environment = variables.

<= ![if = !supportEmptyParas]> 

=

F= inally I ended up doing something like this:

<= ![if = !supportEmptyParas]> 

=

<= span style=3D"mso-spacerun: yes">   IF NOT SETSYSTEMVAL("GENRIC",TRUNC(T_FULL_COM_NAME))

<= span style=3D"mso-spacerun: yes">   THEN ERROR "*E* = Error while redirecting GENRIC"

<= ![if = !supportEmptyParas]> 

=

S= agar

<= ![if = !supportEmptyParas]> 

=

-----Original Message-----
From: Tim Cummings [mailto:tim.cummings@frequencymarketing.com]
Sent: Thursday, August = 21, 2003 3:48 PM
To: 'oh@scanconsult.dk'; = 'Rohde Dirk'
Cc: = powerh-l@lists.swau.edu
Subject: RE: Quick: Unix = shell scripts, which sets environment vars

 

Ole,

In your script, after setting = the environment variables, I think if you follow them with = "export" commands, it will make those environment variables available to the = entire process tree.

Tim Cummings =

 =

-----Original = Message-----
From: Ole Hansen, ScanConsult [mailto:oh@scanconsult.dk]
Sent: Thursday, August 21, 2003 2:21 PM
To: 'Rohde Dirk'
Cc: powerh-l@lists.swau.edu
Subject: RE: Quick: Unix shell scripts, which sets = environment vars = =

Hi Dirk,

Yes - of course Quick has = already started a child process; thanks for
pointing this out.

I will have to let the script = write the result to a file or a table in the
database, where I can read it from = Quick. =

Mange hilsner / With kind = regards =

Ole Hansen

=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
E-mail: oh@scanconsult.dk         Cell = Phone: +45 4040 1150
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
ScanConsult IT-Partners ApS         Voice   : = +45 8738 7474 =
Jegstrupvej 96A           &nb= sp;         Fax     : +45 8738 7475
DK-8361 Hasselager       = ;  Support : support@scanconsult.dk
Denmark        &nbs= p;           Sales   :   sales@scanconsult.dk
          = ;       http://www.scanconsult.dk    &= nbsp;         
=3D ParaSuite :  A Suite of Air Cargo Handling solutions    =3D
=3D ParaSafe  :  A Suite of IT-Security solutions           = =3D
=3D Partners  : Hewlett-Packard, Cognos, Microsoft = and more =3D =

 =

-----Original = Message-----
From: powerh-l-admin@cube.swau.edu [mailto:powerh-l-admin@cube.= swau.edu] On
Behalf Of Rohde Dirk
Sent: 21. august 2003 17:41
To: 'oh@scanconsult.dk'
Cc: powerh-l@lists.swau.edu
Subject: RE: Quick: Unix shell scripts, which sets = environment vars = =

 =

I'm not sure what is causing the = error (check your file protection), but I
believe that Quick starts a child process for any = "run command" procedure.
Thus, even if you are able to "dot" a script, = you would still lose the
environment variables upon return. The solution is to = either use the
"setsystemval" command or to set and export your environment variables
before starting Quick.

-----Original = Message-----
From: Ole Hansen, ScanConsult [mailto:oh@scanconsult.dk]
Sent: Thursday, August 21, 2003 3:10 AM
To: powerh-l@lists.swau.edu
Subject: Quick: Unix shell scripts, which sets environment = vars =

 =

Hi all,

I need to execute a shell script = from Quick, and retrieve the environment
variables, set by the script.

The script works and the = variables is set in the calling process when run
manually from the shell with a dot preceeding the = scriptname (.
<scriptname>) but when I try from Quick using RUN = COMMAND ". <scriptname>"
it fails with an exit status of 126. =

It is the leading dot, that = causes the error because when I try RUN COMMAND
"<scriptname>", I get no errors - but the environment variables set by the
script are of course not available to GETSYSTEMVAL = afterwards. =

So I guess that my problem can = be re-phrased to: How does one execute a
shell command from Quick using the same shell instance as = Quick runs in? = =

Any help will be highly = appreciated. =

Mange hilsner / With kind = regards =

Ole Hansen

=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
E-mail: oh@scanconsult.dk         Cell = Phone: +45 4040 1150
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
ScanConsult IT-Partners ApS         Voice   : = +45 8738 7474 =
Jegstrupvej 96A           &nb= sp;         Fax     : +45 8738 7475
DK-8361 = Hasselager         Support : support@scanconsult.dk
Denmark        &nbs= p;           Sales   :   sales@scanconsult.dk
          = ;       http://www.scanconsult.dk    &= nbsp;         
=3D ParaSuite :  A Suite of Air Cargo Handling solutions    =3D
=3D ParaSafe  :  A Suite of IT-Security solutions           = =3D
=3D Partners  : Hewlett-Packard, Cognos, Microsoft = and more =3D =

 =

=3D =3D =3D =3D =3D =3D =3D =3D = =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D
Mailing list: powerh-l@lists.swau.edu
Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu
Unsubscribe: "unsubscribe <password>" in = message body to =
powerh-l-request@lists.swau.edu
http://lists.swau.edu/mailman/listinfo/powerh-l
This list is closed, thus to post to the list you must be = a subscriber. =3D =3D
=3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D = =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D Mailing = list:
powerh-l@lists.swau.edu
Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu
Unsubscribe: "unsubscribe <password>" in = message body to =
powerh-l-request@lists.swau.edu
http://lists.swau.edu/mailman/listinfo/powerh-l
This list is closed, thus to post to the list you must be = a subscriber. =

=3D =3D =3D =3D =3D =3D =3D =3D = =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D =3D
Mailing list: powerh-l@lists.swau.edu
Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu
Unsubscribe: "unsubscribe <password>" in = message body to powerh-l-request@lists.swau.edu
http://lists.swau.edu/mailman/listinfo/powerh-l
This list is closed, thus to post to the list you must be = a subscriber. =

------_=_NextPart_001_01C36820.4D3AFEE0-- From brett@kinetix.co.nz Thu Aug 21 22:09:35 2003 From: brett@kinetix.co.nz (Brett Greiner) Date: Fri, 22 Aug 2003 09:09:35 +1200 Subject: Quick: Unix shell scripts, which sets environment vars In-Reply-To: <000301c367cc$57126b00$0a0b10ac@scanconsult02.bogus> Message-ID: Hi Ole, We are running PH 8.13.D2 on an RS/6000 box running Aix 4.3. What we did here is to execute a script, then that script calls the script that you want to setup the env. variable. i.e. RUN COMMAND "" which calls your proper script; caller_scriptname . and sets up the env. var. >From memory we had this working, then tried it again a few weeks later, then it stopped working. We then write the contents of the env. variable out to a flat file, then used a designer file in quick to read the file. Hope this helps. Brett Greiner, Software Developer, Kinetix Group Ltd., New Plymouth, New Zealand ph. +64 6 759 1929 fx. +64 6 759 1928 Email: brett@kinetix.co.nz Websites: www.kinetix.co.nz -----Original Message----- From: powerh-l-admin@cube.swau.edu [mailto:powerh-l-admin@cube.swau.edu]On Behalf Of Ole Hansen, ScanConsult Sent: Thursday, 21 August 2003 10:10 p.m. To: powerh-l@lists.swau.edu Subject: Quick: Unix shell scripts, which sets environment vars Hi all, I need to execute a shell script from Quick, and retrieve the environment variables, set by the script. The script works and the variables is set in the calling process when run manually from the shell with a dot preceeding the scriptname (. ) but when I try from Quick using RUN COMMAND ". " it fails with an exit status of 126. It is the leading dot, that causes the error because when I try RUN COMMAND "", I get no errors - but the environment variables set by the script are of course not available to GETSYSTEMVAL afterwards. So I guess that my problem can be re-phrased to: How does one execute a shell command from Quick using the same shell instance as Quick runs in? Any help will be highly appreciated. Mange hilsner / With kind regards Ole Hansen =========================================================== E-mail: oh@scanconsult.dk Cell Phone: +45 4040 1150 =========================================================== ScanConsult IT-Partners ApS Voice : +45 8738 7474 Jegstrupvej 96A Fax : +45 8738 7475 DK-8361 Hasselager Support : support@scanconsult.dk Denmark Sales : sales@scanconsult.dk http://www.scanconsult.dk = ParaSuite : A Suite of Air Cargo Handling solutions = = ParaSafe : A Suite of IT-Security solutions = = Partners : Hewlett-Packard, Cognos, Microsoft and more = = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. --- Incoming mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.510 / Virus Database: 307 - Release Date: 14/08/2003 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.510 / Virus Database: 307 - Release Date: 14/08/2003 From stewm@canada.com Thu Aug 21 22:29:10 2003 From: stewm@canada.com (stewm@canada.com) Date: Thu, 21 Aug 2003 14:29:10 -0700 (PDT) Subject: Screen Question Message-ID: <20030821142910.29879.h020.c009.wm@mail.canada.com.criticalpath.net> Anthony, Something like this maybe? You'd have to fill in the right table name and database of course...and customize to your index values. FILE CLIENT_BRANCH IN DATABASE PRIMARY ACCESS VIA CLIENT_CODE,BRANCH_CODE & USING CLIENT_CODE,BRANCH_CODE & ORDERBY CLIENT_CODE, BRANCH_CODE & REQUEST CLIENT_CODE, BRANCH_CODE FILE CLIENT_BRANCH IN DATABASE DETAIL & ALIAS CLIENT_BRANCH_DET OCCURS 15 NOITEMS ACCESS VIA CLIENT_CODE, & BRANCH_CODE & USING CLIENT_CODE OF CLIENT_BRANCH, & BRANCH_CODE OF CLIENT_BRANCH ITEM CLIENT_CODE OF CLIENT_BRANCH_DET & INITIAL CLIENT_CODE OF CLIENT_BRANCH FIXED ITEM BRANCH_CODE OF CLIENT_BRANCH_DET INITIAL BRANCH_CODE OF CLIENT_BRANCH FIXED SKIP TO LINE 4 ALIGN(?,?,?)(?,?,?) FIELD CLIENT_CODE OF CLIENT_BRANCH & REQUIRED NOCHANGE FIELD BRANCH_CODE OF CLIENT_BRANCH & REQUIRED NOCHANGE UPSHIFT ALIGN (?,?,?) (?,?,?) CLUSTER AT ?,? OCCURS WITH CLIENT_BRANCH_DET FIELD RATE_AMT OF CLIENT_BRANCH_DET REQUIRED FIELD FUNCTION_CODE OF CLIENT_BRANCH_DET REQUIRED CLUSTER PROCEDURE SECTION... BUILD Mark Stewart 1-519-739-0297 IT Consultant Consultants Club Corp. Tecumseh, Ontario www.consultantsclub.biz From REdis@Blistex.com Thu Aug 21 22:35:13 2003 From: REdis@Blistex.com (Edis, Robert) Date: Thu, 21 Aug 2003 16:35:13 -0500 Subject: FW: External procedure table overflow Message-ID: <22891C4DC32D234EA7719468C29A17830C67EE@ChiExch2k.corp.blistex.com> Could this system be one of the lovely 'user' friendly applications that allows a user to branch to just about any screen? I have seen resource problems occur in such apps. E.g. Screen A calls screen B (or X, Y Z) Screen B can call screens/commands C, D or F Screen D can call screen B or F or even A. Command C spawns Screen H. Screen H can call screen A or B. So the user ends up several layers deep but thinks they are only down say 1 or2 layers. In memory you could end up with several versions of screens A, B, etc as well as external routines. Blue -----Original Message----- From: chuck.reinke [mailto:chuck.reinke@sbcglobal.net] Sent: Thursday, August 21, 2003 10:15 AM To: powerh-l@lists.swau.edu; Leonard_Berkowitz@harvardpilgrim.org Subject: Re: External procedure table overflow Leonard, The first thing I'd do is ask the user if they were thinking BAD thoughts about the computer, as this is the most likely problem. If they swear this is not the case then you might consider that the QKGO file is not being called up. 50 is awfully big for this parameter and I'm surprised to hear of one so large, unless the application just serves to call a ton of COBOL programs. I suggest that somewhere in System, Account, User mystery of UDCs you'll find the problem. You might test this by setting up a UDC that calls a special QKGO file with some special First Screen to make absolutely sure UDCs are working properly for this user. Chuck > HP3000, MPE 7.5, PowerHouse 8.19C > > On a test account, one of our users is encountering the dreaded: > > *d* External procedure table overflow. Increase the QKGO External Procedures parameter > > Please note: > > The QKGO file has the External Procedure parameter already set to 50, that is the maximum > allowable > The user reports this error early on: MENU -- >> SUB-MENU -->> data screen where the error > occurs sometimes for one screen and sometimes for another. > I tried to reproduce the error this morning, flipping back and forth several times from the > SUB-MENU first to one screen and then to the other screen without the erro > > I would appreciate any suggestions here. > > Thanks in advance. > > Leonard > -- = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. From REdis@Blistex.com Thu Aug 21 22:37:10 2003 From: REdis@Blistex.com (Edis, Robert) Date: Thu, 21 Aug 2003 16:37:10 -0500 Subject: FW: Stats on list subscribers Message-ID: <22891C4DC32D234EA7719468C29A17830C67EF@ChiExch2k.corp.blistex.com> > G'day all > > I have noticed an increase in the number of subscribers to the list as well as some demographic changes since last year. Below are some simple stats on current subscribers based on their email addresses. As many people use a US email address (e.g. yahoo.com or cognos.com) and some email addresses do not have domains or have domains I am not familiar with, I have used defaults for these. If you have such an address and you are NOT in the USA or NOT in the COM domain please let me know. If enough of you are in this category I will correct the numbers and republished the stats. > > Enjoy > > Blue > > > Total Subscribers 552 (5 are hidden - assumed domain is COM and country is US) > COM EDU GOV ORG (Used COM as default. NET included in COM) > Total By Domain 467 42 23 20 > 85% 8% 4% 4% > AU BE CA CH DE DK FI FR HK IE IN IT LC MX MY NL NO NZ RU SE SI SV UK US ZA > Total by Country 31 1 74 1 3 4 6 3 2 1 2 2 1 1 5 12 2 9 1 8 3 1 33 338 8 > 5.6% 0.2% 13.4% 0.2% 0.5% 0.7% 1.1% 0.5% 0.4% 0.2% 0.4% 0.4% 0.2% 0.2% 0.9% 2.2% 0.4% 1.6% 0.2% 1.4% 0.5% 0.2% 6.0% 61.2% 1.4% > (Used US as default) > > > From REdis@Blistex.com Thu Aug 21 22:41:09 2003 From: REdis@Blistex.com (Edis, Robert) Date: Thu, 21 Aug 2003 16:41:09 -0500 Subject: Screen Question Message-ID: <22891C4DC32D234EA7719468C29A17830C67F2@ChiExch2k.corp.blistex.com> Anthony Create two screen temp items for client_code and Brand_Code. Put these on your screen with a lookup on a reference file for data validity. Make your primary file an occurs 15. Initialise the client_code and branch_code items in the primary file with the values collected in the temp items or load them in the preupdate proc. Blue -----Original Message----- From: Arnone, Anthony [mailto:aarnone@grey.com] Sent: Thursday, August 21, 2003 1:00 PM To: Powerhouse List (E-mail) Subject: Screen Question All - I have a table that contains these fields: Client Code Branch Code Rate Amount Function Code I need to create a screen that will allow the user to enter a client code and a branch code once and then have an area to enter 15 function codes and corresponding rate amounts. Then when the user is done and adds the record it will write 15 separate records to the table with the different function codes and rates but all will have the same client and branch code. If anyone has any ideas I would appreciate it, I think my biggest problem is how to write the record to the table. I am using version 8.19 on and HP3000 running MPE/iX. R/S Anthony Arnone Programmer/Analyst Grey Global Group (212) 886-7812 aarnone@grey.com = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. From RSheehan@ci.bellevue.wa.us Thu Aug 21 22:45:56 2003 From: RSheehan@ci.bellevue.wa.us (Sheehan, Richard) Date: Thu, 21 Aug 2003 14:45:56 -0700 Subject: Stats on list subscribers Message-ID: <9BFB09521CF9EC4EA93294BDCAC9BD060B07F851@w2kexchpr01.ci.bellevue.wa.us> Blue, It would be interesting to see the numbers from last year - with the side by side comparison. I could go find it; but if you have it, the comparison would be interesting. Thanks, Richard S Sheehan 425.452.6177 Business Systems Analyst City of Bellevue, WA -----Original Message----- From: Edis, Robert [mailto:REdis@Blistex.com] Sent: Thursday, August 21, 2003 2:37 PM To: Powerh-L (E-mail) Subject: FW: Stats on list subscribers > G'day all > > I have noticed an increase in the number of subscribers to the list as > well as some demographic changes since last year. Below are some > simple stats on current subscribers based on their email addresses. > As many people use a US email address (e.g. yahoo.com or cognos.com) > and some email addresses do not have domains or have domains I am not > familiar with, I have used defaults for these. If you have such an > address and you are NOT in the USA or NOT in the COM domain please let > me know. If enough of you are in this category I will correct the > numbers and republished the stats. > > Enjoy > > Blue > > > Total Subscribers 552 (5 are hidden - assumed domain is COM and country is US) > COM EDU GOV ORG (Used COM as default. NET included in COM) > Total By Domain 467 42 23 20 > 85% 8% 4% 4% > AU BE CA CH DE DK FI FR HK IE IN IT LC MX MY NL NO NZ RU SE SI SV UK US ZA > Total by Country 31 1 74 1 3 4 6 3 2 1 2 2 1 1 5 12 2 9 1 8 3 1 33 338 8 > 5.6% 0.2% 13.4% 0.2% 0.5% 0.7% 1.1% 0.5% 0.4% 0.2% 0.4% 0.4% 0.2% 0.2% 0.9% 2.2% 0.4% 1.6% 0.2% 1.4% 0.5% 0.2% 6.0% 61.2% 1.4% > (Used US as default) > > > = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. From REdis@Blistex.com Thu Aug 21 22:53:38 2003 From: REdis@Blistex.com (Edis, Robert) Date: Thu, 21 Aug 2003 16:53:38 -0500 Subject: Stats on list subscribers Message-ID: <22891C4DC32D234EA7719468C29A17830C6809@ChiExch2k.corp.blistex.com> Richard I don't have the numbers with me. Maybe my post from last year could be found on the list server via the archives. If I find the data from last year on another computer I'll send it to you. Regards, Blue -----Original Message----- From: Sheehan, Richard [mailto:RSheehan@ci.bellevue.wa.us] Sent: Thursday, August 21, 2003 4:46 PM To: powerh-l@lists.swau.edu Subject: RE: Stats on list subscribers Blue, It would be interesting to see the numbers from last year - with the side by side comparison. I could go find it; but if you have it, the comparison would be interesting. Thanks, Richard S Sheehan 425.452.6177 Business Systems Analyst City of Bellevue, WA -----Original Message----- From: Edis, Robert [mailto:REdis@Blistex.com] Sent: Thursday, August 21, 2003 2:37 PM To: Powerh-L (E-mail) Subject: FW: Stats on list subscribers > G'day all > > I have noticed an increase in the number of subscribers to the list as > well as some demographic changes since last year. Below are some > simple stats on current subscribers based on their email addresses. > As many people use a US email address (e.g. yahoo.com or cognos.com) > and some email addresses do not have domains or have domains I am not > familiar with, I have used defaults for these. If you have such an > address and you are NOT in the USA or NOT in the COM domain please let > me know. If enough of you are in this category I will correct the > numbers and republished the stats. > > Enjoy > > Blue > > > Total Subscribers 552 (5 are hidden - assumed domain is COM and country is US) > COM EDU GOV ORG (Used COM as default. NET included in COM) > Total By Domain 467 42 23 20 > 85% 8% 4% 4% > AU BE CA CH DE DK FI FR HK IE IN IT LC MX MY NL NO NZ RU SE SI SV UK US ZA > Total by Country 31 1 74 1 3 4 6 3 2 1 2 2 1 1 5 12 2 9 1 8 3 1 33 338 8 > 5.6% 0.2% 13.4% 0.2% 0.5% 0.7% 1.1% 0.5% 0.4% 0.2% 0.4% 0.4% 0.2% 0.2% 0.9% 2.2% 0.4% 1.6% 0.2% 1.4% 0.5% 0.2% 6.0% 61.2% 1.4% > (Used US as default) > > > = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. From REdis@Blistex.com Thu Aug 21 23:39:27 2003 From: REdis@Blistex.com (Edis, Robert) Date: Thu, 21 Aug 2003 17:39:27 -0500 Subject: Stats on list subscribers Message-ID: <22891C4DC32D234EA7719468C29A17830C6841@ChiExch2k.corp.blistex.com> You asked and you got! Enjoy. :) Total Subscribers 552 (5 are hidden - assumed domain is COM and country is US) Total By Domain (Used COM as default. NET included in COM) COM EDU GOV ORG 2003 467 42 23 20 85% 8% 4% 4% 2002 440 40 31 23 Chg. 27 2 -8 -3 COM = Company or Commercial EDU = Education GOV = Government (includes MIL for Military) ORG = Organisation, usually a not-for-profit. Total by Country (Used US as default) AU BE CA CH DE DK FI FR GR HK IE IN IT LC MX MY NL NO NZ RU SE SI SV UK US ZA 2003 31 1 74 1 3 4 6 3 0 2 1 2 2 1 1 5 12 2 9 1 8 3 1 33 338 8 5.6% 0.2% 13.4% 0.2% 0.5% 0.7% 1.1% 0.5% 0.0% 0.4% 0.2% 0.4% 0.4% 0.2% 0.2% 0.9% 2.2% 0.4% 1.6% 0.2% 1.4% 0.5% 0.2% 6.0% 61.2% 1.4% 2002 24 0 25 1 2 6 4 3 1 2 1 1 2 0 1 3 13 3 8 1 6 3 0 32 376 6 Chg. 7 1 49 0 1 -2 2 0 -1 0 0 1 0 1 0 2 -1 -1 1 0 2 0 1 1 -38 2 AU = Australia BE = Belgium CA = Canada CH = Switzerland DE = Germany DK = Denmark FI = Finland FR = France GR = Greece HK = Hong Kong IE = Ireland IN = India (there were more of these for a while till we scared them off) IT = Italy LC = ? MX = Mexico MY = ? NL = Holland NZ = New Zealand RU = Russia SE = Sweden SI = ? SV = ? UK = United Kingdom US = United States of America ZA = South Africa Blue -----Original Message----- From: Sheehan, Richard [mailto:RSheehan@ci.bellevue.wa.us] Sent: Thursday, August 21, 2003 4:46 PM To: powerh-l@lists.swau.edu Subject: RE: Stats on list subscribers Blue, It would be interesting to see the numbers from last year - with the side by side comparison. I could go find it; but if you have it, the comparison would be interesting. Thanks, Richard S Sheehan 425.452.6177 Business Systems Analyst City of Bellevue, WA -----Original Message----- From: Edis, Robert [mailto:REdis@Blistex.com] Sent: Thursday, August 21, 2003 2:37 PM To: Powerh-L (E-mail) Subject: FW: Stats on list subscribers > G'day all > > I have noticed an increase in the number of subscribers to the list as > well as some demographic changes since last year. Below are some > simple stats on current subscribers based on their email addresses. > As many people use a US email address (e.g. yahoo.com or cognos.com) > and some email addresses do not have domains or have domains I am not > familiar with, I have used defaults for these. If you have such an > address and you are NOT in the USA or NOT in the COM domain please let > me know. If enough of you are in this category I will correct the > numbers and republished the stats. > > Enjoy > > Blue > > > Total Subscribers 552 (5 are hidden - assumed domain is COM and country is US) > COM EDU GOV ORG (Used COM as default. NET included in COM) > Total By Domain 467 42 23 20 > 85% 8% 4% 4% > AU BE CA CH DE DK FI FR HK IE IN IT LC MX MY NL NO NZ RU SE SI SV UK US ZA > Total by Country 31 1 74 1 3 4 6 3 2 1 2 2 1 1 5 12 2 9 1 8 3 1 33 338 8 > 5.6% 0.2% 13.4% 0.2% 0.5% 0.7% 1.1% 0.5% 0.4% 0.2% 0.4% 0.4% 0.2% 0.2% 0.9% 2.2% 0.4% 1.6% 0.2% 1.4% 0.5% 0.2% 6.0% 61.2% 1.4% > (Used US as default) > > > = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. From REdis@Blistex.com Fri Aug 22 16:25:45 2003 From: REdis@Blistex.com (Edis, Robert) Date: Fri, 22 Aug 2003 10:25:45 -0500 Subject: Stats on list subscribers (updated) Message-ID: <22891C4DC32D234EA7719468C29A17830C6AC0@ChiExch2k.corp.blistex.com> Total Subscribers 551 (5 are hidden - assumed domain is COM and country is US) Of these 32 are Cognos employees based on their email addresses. Numbers have been adjusted based on feedback from Mark Fry. Now if I just clear up those .aol, .yahoo, etc addresses I could give you even more accurate data. Note the significant decline in US subscribers but increases in Canada and the UK. Anyone know what countries are MY, LC and SV? Total By Domain (Used COM as default. NET included in COM) COM EDU GOV ORG 2003 466 42 23 20 85% 8% 4% 4% 2002 440 40 31 23 Chg. 26 2 -8 -3 COM = Company or Commercial EDU = Education GOV = Government (includes MIL for Military) ORG = Organisation, usually a not-for-profit. Total by Country (Used US as default) AU BE CA CH DE DK FI FR GR HK IE IN IT LC MX MY NL NO NZ RU SE SI SV UK US ZA 2003 31 1 64 1 3 4 6 3 0 2 1 2 2 1 1 5 13 2 9 1 8 4 1 40 333 8 5.6% 0.2% 11.6% 0.2% 0.5% 0.7% 1.1% 0.5% 0.0% 0.4% 0.2% 0.4% 0.4% 0.2% 0.2% 0.9% 2.4% 0.4% 1.6% 0.2% 1.4% 0.5% 0.2% 7.2% 60.3% 1.4% 2002 24 0 25 1 2 6 4 3 1 2 1 1 2 0 1 3 13 3 8 1 6 3 0 32 376 6 Chg. 7 1 39 0 1 -2 2 0 -1 0 0 1 0 1 0 2 0 -1 1 0 2 1 1 8 -43 2 AU = Australia BE = Belgium CA = Canada CH = Switzerland DE = Germany DK = Denmark FI = Finland FR = France GR = Greece HK = Hong Kong IE = Ireland IN = India IT = Italy LC = ? MX = Mexico MY = ? NL = Holland NZ = New Zealand RU = Russia SE = Sweden SI = Singapore SV = ? UK = United Kingdom US = United States of America ZA = South Africa Blue From david.heasman@schroders.com Fri Aug 22 17:00:27 2003 From: david.heasman@schroders.com (Heasman, David) Date: Fri, 22 Aug 2003 17:00:27 +0100 Subject: Stats on list subscribers (updated) Message-ID: <3050B72D58AFD5119D0100D0B73E4C9301B807B8@msxuk25.london.schroders.com> > Anyone know what countries are MY, LC and SV? Google is our friend here. "Internet Country Codes" tells us LC Saint Lucia MY Malaysia SV El Salvador Me I'm a ".com" but I'm in England. -----Original Message----- From: Edis, Robert [mailto:REdis@blistex.com] Sent: 22 August 2003 16:26 To: Powerh-L (E-mail) Subject: Stats on list subscribers (updated) * Please Note : This message was received from the Internet * _____________________________________________________________ Total Subscribers 551 (5 are hidden - assumed domain is COM and country is US) Of these 32 are Cognos employees based on their email addresses. Numbers have been adjusted based on feedback from Mark Fry. Now if I just clear up those .aol, .yahoo, etc addresses I could give you even more accurate data. Note the significant decline in US subscribers but increases in Canada and the UK. Anyone know what countries are MY, LC and SV? Total By Domain (Used COM as default. NET included in COM) COM EDU GOV ORG 2003 466 42 23 20 85% 8% 4% 4% 2002 440 40 31 23 Chg. 26 2 -8 -3 COM = Company or Commercial EDU = Education GOV = Government (includes MIL for Military) ORG = Organisation, usually a not-for-profit. Total by Country (Used US as default) AU BE CA CH DE DK FI FR GR HK IE IN IT LC MX MY NL NO NZ RU SE SI SV UK US ZA 2003 31 1 64 1 3 4 6 3 0 2 1 2 2 1 1 5 13 2 9 1 8 4 1 40 333 8 5.6% 0.2% 11.6% 0.2% 0.5% 0.7% 1.1% 0.5% 0.0% 0.4% 0.2% 0.4% 0.4% 0.2% 0.2% 0.9% 2.4% 0.4% 1.6% 0.2% 1.4% 0.5% 0.2% 7.2% 60.3% 1.4% 2002 24 0 25 1 2 6 4 3 1 2 1 1 2 0 1 3 13 3 8 1 6 3 0 32 376 6 Chg. 7 1 39 0 1 -2 2 0 -1 0 0 1 0 1 0 2 0 -1 1 0 2 1 1 8 -43 2 AU = Australia BE = Belgium CA = Canada CH = Switzerland DE = Germany DK = Denmark FI = Finland FR = France GR = Greece HK = Hong Kong IE = Ireland IN = India IT = Italy LC = ? MX = Mexico MY = ? NL = Holland NZ = New Zealand RU = Russia SE = Sweden SI = Singapore SV = ? UK = United Kingdom US = United States of America ZA = South Africa Blue = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. __________________________________________________________________ This message might contain confidential information. If it has been sent to you in error please do not forward it or copy it or act upon its contents, but report it to postmaster@schroders.com Schroders has the right lawfully to record, monitor and inspect messages between its employees and any third party. Your messages shall be subject to such lawful supervision as Schroders deems to be necessary in order to protect its information, its interests and its reputation. Schroders prohibits and takes steps to prevent its information systems from being used to view, store or forward offensive or discriminatory material. If this message contains such material please report it to abuse@schroders.com Schroders does not normally accept or offer business instructions via email. Any action that you might take upon this message might be at your own risk. Schroder Investment Management Limited 31 Gresham Street London EC2V 7QA Authorised and regulated by the Financial Services Authority. Schroder Investment Management Limited is entered on the FSA register under the following register number: 119348 Registered Office 31 Gresham Street London EC2V 7QA Registered number 1893220 VAT registration number 243 8687 30 From shediac92@hotmail.com Fri Aug 22 18:29:06 2003 From: shediac92@hotmail.com (Peter Bateman) Date: Fri, 22 Aug 2003 14:29:06 -0300 Subject: Quick: Unix shell scripts, which sets environment vars Message-ID: The following was taken from:- http://duplex.hypermart.net/books/bsd/201-202.html "Exported variables exist in the environment space of the shell process. When the shell executes a new child process (subprocess) it passes the environment to the new process. The environment consist only of variables that have been exported. By using exported variables you can pass global information to any subprocess. Whether the environment is used by the subprocess depends on the subprocess. Subprocesses cannot change the environment of a parent process. They can change their environment but the changes cannot be passed back to the parent." Regards, Peter Bateman >From: Tim Cummings >To: "'oh@scanconsult.dk'" , "'Rohde Dirk'" > >CC: powerh-l@lists.swau.edu >Subject: RE: Quick: Unix shell scripts, which sets environment vars >Date: Thu, 21 Aug 2003 15:47:48 -0400 > >Ole, > >In your script, after setting the environment variables, I think if you >follow them with "export" commands, it will make those environment >variables >available to the entire process tree. > >Tim Cummings > > >-----Original Message----- >From: Ole Hansen, ScanConsult [mailto:oh@scanconsult.dk] >Sent: Thursday, August 21, 2003 2:21 PM >To: 'Rohde Dirk' >Cc: powerh-l@lists.swau.edu >Subject: RE: Quick: Unix shell scripts, which sets environment vars > >Hi Dirk, > >Yes - of course Quick has already started a child process; thanks for >pointing this out. > >I will have to let the script write the result to a file or a table in the >database, where I can read it from Quick. > >Mange hilsner / With kind regards > >Ole Hansen > >=========================================================== >E-mail: oh@scanconsult.dk Cell Phone: +45 4040 1150 >=========================================================== >ScanConsult IT-Partners ApS Voice : +45 8738 7474 >Jegstrupvej 96A Fax : +45 8738 7475 >DK-8361 Hasselager Support : support@scanconsult.dk >Denmark Sales : sales@scanconsult.dk > http://www.scanconsult.dk >= ParaSuite : A Suite of Air Cargo Handling solutions = >= ParaSafe : A Suite of IT-Security solutions = >= Partners : Hewlett-Packard, Cognos, Microsoft and more = > > > >-----Original Message----- >From: powerh-l-admin@cube.swau.edu [mailto:powerh-l-admin@cube.swau.edu] On >Behalf Of Rohde Dirk >Sent: 21. august 2003 17:41 >To: 'oh@scanconsult.dk' >Cc: powerh-l@lists.swau.edu >Subject: RE: Quick: Unix shell scripts, which sets environment vars > > >I'm not sure what is causing the error (check your file protection), but I >believe that Quick starts a child process for any "run command" procedure. >Thus, even if you are able to "dot" a script, you would still lose the >environment variables upon return. The solution is to either use the >"setsystemval" command or to set and export your environment variables >before starting Quick. > >-----Original Message----- >From: Ole Hansen, ScanConsult [mailto:oh@scanconsult.dk] >Sent: Thursday, August 21, 2003 3:10 AM >To: powerh-l@lists.swau.edu >Subject: Quick: Unix shell scripts, which sets environment vars > > >Hi all, > >I need to execute a shell script from Quick, and retrieve the environment >variables, set by the script. > >The script works and the variables is set in the calling process when run >manually from the shell with a dot preceeding the scriptname (. >) but when I try from Quick using RUN COMMAND ". " >it fails with an exit status of 126. > >It is the leading dot, that causes the error because when I try RUN COMMAND >"", I get no errors - but the environment variables set by the >script are of course not available to GETSYSTEMVAL afterwards. > >So I guess that my problem can be re-phrased to: How does one execute a >shell command from Quick using the same shell instance as Quick runs in? > >Any help will be highly appreciated. > >Mange hilsner / With kind regards > >Ole Hansen > >=========================================================== >E-mail: oh@scanconsult.dk Cell Phone: +45 4040 1150 >=========================================================== >ScanConsult IT-Partners ApS Voice : +45 8738 7474 >Jegstrupvej 96A Fax : +45 8738 7475 >DK-8361 Hasselager Support : support@scanconsult.dk >Denmark Sales : sales@scanconsult.dk > http://www.scanconsult.dk >= ParaSuite : A Suite of Air Cargo Handling solutions = >= ParaSafe : A Suite of IT-Security solutions = >= Partners : Hewlett-Packard, Cognos, Microsoft and more = > > >= = = = = = = = = = = = = = = = = = = = = = = = = = = = >Mailing list: powerh-l@lists.swau.edu >Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu >Unsubscribe: "unsubscribe " in message body to >powerh-l-request@lists.swau.edu >http://lists.swau.edu/mailman/listinfo/powerh-l >This list is closed, thus to post to the list you must be a subscriber. = = >= = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: >powerh-l@lists.swau.edu >Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu >Unsubscribe: "unsubscribe " in message body to >powerh-l-request@lists.swau.edu >http://lists.swau.edu/mailman/listinfo/powerh-l >This list is closed, thus to post to the list you must be a subscriber. > >= = = = = = = = = = = = = = = = = = = = = = = = = = = = >Mailing list: powerh-l@lists.swau.edu >Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu >Unsubscribe: "unsubscribe " in message body to >powerh-l-request@lists.swau.edu >http://lists.swau.edu/mailman/listinfo/powerh-l >This list is closed, thus to post to the list you must be a subscriber. _________________________________________________________________ MSN 8 helps eliminate e-mail viruses. Get 2 months FREE*. http://join.msn.com/?page=features/virus From Fernando.Olmos@alcoa.com.au Sat Aug 23 04:02:14 2003 From: Fernando.Olmos@alcoa.com.au (Olmos, Fernando (Sericon at Alcoa)) Date: Sat, 23 Aug 2003 11:02:14 +0800 Subject: Stats on list subscribers Message-ID: > LC = ? Pass > MY = ? Malaysia > SI = ? Hmmm... Singapore? > SV = ? Slovakia? From tifre@wmdata.com Mon Aug 25 10:26:30 2003 From: tifre@wmdata.com (Frederiksen Tim) Date: Mon, 25 Aug 2003 11:26:30 +0200 Subject: =?iso-8859-1?Q?FW=3A_Er_det_hvad_vi_vil_sp=F8rge_om=3F?= Message-ID: <00447476B925D51198E000508B6F0DDC010DF752@WMSI000272> > Hi, > > Today we have a function in our PowerHouse application that's allows the > user to type "-" in an entry field which runs a procedure like this: > > PROCEDURE INPUT XX_KUNDENR > BEGIN > IF FIELDTEXT = "-" OR FIELDTEXT = "00" OR FIELDTEXT = "???" > THEN BEGIN > RUN SCREEN BOUKUKTO PASSING W_PAR_KUNDE MODE F > LET FIELDTEXT = W_PAR_KUNDE > END > END > The screens that starts is a "information screen" thats provides the user whit info about valid entry in the field > In Axiant we would like to allow the user to do this but more windows > like, do anyone know a way that allows us that? > > Any suggestions are very welcome. > > Regards > Tim Frederiksen > > __________________________________ > Tim Frederiksen > > WM-data > Lautrupvang 10 > 2750 Ballerup > DK-Denmark > Tel.: (+45) 4478 4000, direkte: (+45)4483 8349 > Fax: (+45) 44 78 40 01 > mailto:tifre@wmdata.com > http://www.wmdata.dk , http://www.wmdata.com > > > From REdis@Blistex.com Mon Aug 25 18:13:19 2003 From: REdis@Blistex.com (Edis, Robert) Date: Mon, 25 Aug 2003 12:13:19 -0500 Subject: PH gig in Oz (Sydney) Message-ID: <22891C4DC32D234EA7719468C29A17830EA749@ChiExch2k.corp.blistex.com> Position: Analyst / Programmer (Data Migration) Location: Sydney CBD Rate: Up to AUD60 per hour Details: You will be involved in system integration, data migration and report creation/modification. Essential for this role is experience in POWERHOUSE and VMS. The contract duration is initially 3 months but will be on going for up to 2 years and an attractive rate of up to $60 per hour is available for the right candidate. If you fit the above criteria and have the technical background mentioned please apply by emailing your resume to lbunx@hays.com.au. For more information contact Lyfina on (02) 8226 9843. Disclaimed: Blue has no knowledge of this gig other than what's posted above. From sdeleese@yahoo.com Mon Aug 25 18:36:12 2003 From: sdeleese@yahoo.com (Sam DeLeese) Date: Mon, 25 Aug 2003 10:36:12 -0700 (PDT) Subject: Work in SoCal Message-ID: <20030825173612.54490.qmail@web14002.mail.yahoo.com> --0-318330391-1061832972=:54343 Content-Type: text/plain; charset=us-ascii Anyone know of any PowerHouse or PHWeb work in sunny Southern California? Regards, Sam DeLeese sdeleese@deleeseconsulting.com WWW.DELEESECONSULTING.COM --0-318330391-1061832972=:54343 Content-Type: text/html; charset=us-ascii
Anyone know of any PowerHouse or PHWeb work in sunny Southern California?


Regards,
Sam DeLeese
sdeleese@deleeseconsulting.com
WWW.DELEESECONSULTING.COM --0-318330391-1061832972=:54343-- From ian.wedge@ramesys.com Tue Aug 26 16:05:55 2003 From: ian.wedge@ramesys.com (Ian Wedge) Date: Tue, 26 Aug 2003 16:05:55 +0100 Subject: Stats on list subscribers (updated) In-Reply-To: <3050B72D58AFD5119D0100D0B73E4C9301B807B8@msxuk25.london.schroders.com> Message-ID: That could apply to quite a few .com based addresses, but Mark Fry of all people will have given correct info on any subscribers from my domain. Ian Wedge -----Original Message----- From: powerh-l-admin@cube.swau.edu [mailto:powerh-l-admin@cube.swau.edu]On Behalf Of Heasman, David Sent: 22 August 2003 17:00 To: 'Edis, Robert'; Powerh-L (E-mail) Subject: RE: Stats on list subscribers (updated) > Anyone know what countries are MY, LC and SV? Google is our friend here. "Internet Country Codes" tells us LC Saint Lucia MY Malaysia SV El Salvador Me I'm a ".com" but I'm in England. From steven.jones@wincanton.co.uk Wed Aug 27 08:44:24 2003 From: steven.jones@wincanton.co.uk (steven.jones@wincanton.co.uk) Date: Wed, 27 Aug 2003 08:44:24 +0100 Subject: Rule:Re:powerh-l digest, Vol 1 #755 - 1 msg Message-ID: <3134780057@wincanton.co.uk> I am Away from Thursday 21/08/03 to Thursday 28/08/03 If urgent please send to manufacturing IT Support. Many Thanks Regards Stephen Jones Support Programmer I.T. WMS Support UK & Ireland 01225 770162 stephen.jones@wincanton.co.uk a **************************************************************** Wincanton plc - delivering supply chain solutions Wincanton plc designs, implements and operates creative solutions for complex supply chains. Our business is based on long-term partnerships with a broad range of customers and an in depth knowledge of their markets and business processes. We add value to our customers operations through our leading-edge systems expertise, a relentless focus on the highest standards of operational performance and the skills and commitment of all our people. www.wincanton.co.uk **************************************************************** This e-mail and any files transmitted with it are confidential and intended solely for the use of the individual(s) to whom it is addressed. If you have received this e-mail in error please contact Network Security on (44) 01454 338254 or e-mail web.access@wincanton.co.uk Any views or opinions expressed are solely those of the author and do not necessarily represent those of Wincanton plc or any of its subsidiary companies. Unauthorised publication, use, dissemination, forwarding, printing or copying of this e-mail and its associated attachment(s) is strictly prohibited. Wincanton plc, Cale House, Station Road, Wincanton, Somerset BA9 9AD. **************************************************************** From palandri@4j.lane.edu Wed Aug 27 15:41:57 2003 From: palandri@4j.lane.edu (Mike Palandri) Date: Wed, 27 Aug 2003 07:41:57 -0700 Subject: Record count in Quiz Message-ID: <5.2.1.1.2.20030827073758.00a97008@eug4ja.lane.edu> Is there any way to get a hold of the record count in Quiz, so that its value would be 1 when the first record was read, 2 when the second was read, 3 when the third was read etc.? I am trying to convert a report based on a QTP to Quiz, and the technique used requires the record count. This is done with temps in QTP, but I can't seem to come up with it for Quiz: TEMP TI-REC-CNT INT*10 [...] ITEM TI-REC-CNT = TI-REC-CNT + 1 Thanks, Mike . From Andreas.Noack@gesm.ge.com Wed Aug 27 16:01:43 2003 From: Andreas.Noack@gesm.ge.com (Noack, Andreas M (GESM)) Date: Wed, 27 Aug 2003 16:01:43 +0100 Subject: Record count in Quiz Message-ID: Hello Mike, maybe I am too simplistic here, then correct... I would create a numeric defined item with value 1 and at report statement subtotal this. If indeed you need the count value per record for some calculation then report to subfile and use it in a second report. Kind regards g GE Water Technologies ----------------------------------------- Andreas Noack IT Team Europe -----Original Message----- From: Mike Palandri [mailto:palandri@4j.lane.edu] Sent: Mittwoch, 27. August 2003 16:42 To: powerh-l@lists.swau.edu Subject: Record count in Quiz Is there any way to get a hold of the record count in Quiz, so that its value would be 1 when the first record was read, 2 when the second was read, 3 when the third was read etc.? I am trying to convert a report based on a QTP to Quiz, and the technique used requires the record count. This is done with temps in QTP, but I can't seem to come up with it for Quiz: TEMP TI-REC-CNT INT*10 [...] ITEM TI-REC-CNT = TI-REC-CNT + 1 Thanks, Mike . = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. From Bjorn.Selfors@bergen.kommune.no Wed Aug 27 16:04:17 2003 From: Bjorn.Selfors@bergen.kommune.no (=?iso-8859-1?Q?=22Selfors=2C_Bj=F8rn=22?=) Date: Wed, 27 Aug 2003 17:04:17 +0200 Subject: SV: Record count in Quiz Message-ID: <139FC4788B3EE34A97494134DD327FDF01B869A2@EXVO1.adm.bgo> You can put it into a subfile like: acc.... define cnt = 1 rep sum .... cnt subtotal noreset set subfile name ... mvh/regards Bjørn Selfors, Delfi Data a.s. -----Opprinnelig melding----- Fra: Mike Palandri [mailto:palandri@4j.lane.edu] Sendt: 27. august 2003 16:42 Til: powerh-l@lists.swau.edu Emne: Record count in Quiz Is there any way to get a hold of the record count in Quiz, so that its value would be 1 when the first record was read, 2 when the second was read, 3 when the third was read etc.? I am trying to convert a report based on a QTP to Quiz, and the technique used requires the record count. This is done with temps in QTP, but I can't seem to come up with it for Quiz: TEMP TI-REC-CNT INT*10 [...] ITEM TI-REC-CNT = TI-REC-CNT + 1 Thanks, Mike . = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. From REdis@Blistex.com Wed Aug 27 16:16:35 2003 From: REdis@Blistex.com (Edis, Robert) Date: Wed, 27 Aug 2003 10:16:35 -0500 Subject: Record count in Quiz Message-ID: <22891C4DC32D234EA7719468C29A17830EB2A6@ChiExch2k.corp.blistex.com> Doesn't Quiz have a summary operation called COUNT? Blue -----Original Message----- From: Mike Palandri [mailto:palandri@4j.lane.edu] Sent: Wednesday, August 27, 2003 9:42 AM To: powerh-l@lists.swau.edu Subject: Record count in Quiz Is there any way to get a hold of the record count in Quiz, so that its value would be 1 when the first record was read, 2 when the second was read, 3 when the third was read etc.? I am trying to convert a report based on a QTP to Quiz, and the technique used requires the record count. This is done with temps in QTP, but I can't seem to come up with it for Quiz: TEMP TI-REC-CNT INT*10 [...] ITEM TI-REC-CNT = TI-REC-CNT + 1 Thanks, Mike . = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. From palandri@4j.lane.edu Wed Aug 27 16:22:19 2003 From: palandri@4j.lane.edu (Mike Palandri) Date: Wed, 27 Aug 2003 08:22:19 -0700 Subject: Record count in Quiz Message-ID: <5.2.1.1.2.20030827080250.00aeccd8@eug4ja.lane.edu> Thanks for all the tips. I need the record count to sort on, so a summary operation such as count or subtotal won't help. The problem is to read a record and save the value of one of the fields so it may be compared with another field in the next record. This is to determine if the date range in the first record overlaps the range in the second. I've been sorting on the record count in QTP in order to provide a break on each record... SORT ON EMP-NO, POS-NO, DATE-PLAN-START, TI-REC-CNT ...then saving an end date field in a temp when the record count breaks (which it does on every record)... ITEM TD-END-TMP = DATE-PLAN-END AT TI-REC-CNT RESET AT POS-NO ...so it can be compared with the start date in the next record: DEF TC-DUP-FLAG CHAR*01 = "Y" & IF TD-END-TMP <> 0 AND TD-END-TMP >= DATE-PLAN-START & ELSE "" This tells me if the end date in record (n) is >= to the start date in record (n + 1), if so the range in the second record overlaps the range in the first, and it is written to a subfile to be reported in Quiz What I am trying to do is make this a simple one pass Quiz. I may as well keep the current QTP method if I am going to be forced to use two passes and a subfile in Quiz. I can see as I think through what I am writing here, that I would also have an issue converting the ITEM TD-END-TMP... statement to Quiz as well. Perhaps it's just not worth the trouble. Thanks again. At 10:03 AM 08/27/2003 -0500, you wrote: >You can't use temp's in quiz and you cannot reference the count function >directly. You can however use a defined variable to do the same thing. > >ACCESS CUSTOMERS > >DEFINE CTR NUM*4 = 1 > >REPORT SUMMARY CUSTOMER-NUMBER CTR SUB NORESET > >GO > >This will increment the CTR variable for each record complex. > > > >-----Original Message----- >From: Mike Palandri [mailto:palandri@4j.lane.edu] >Sent: Wednesday, August 27, 2003 9:42 AM >To: powerh-l@lists.swau.edu >Subject: Record count in Quiz > > >Is there any way to get a hold of the record count in Quiz, so that its >value would be 1 when the first record was read, 2 when the second was >read, 3 when the third was read etc.? > > >I am trying to convert a report based on a QTP to Quiz, and the technique >used requires the record count. This is done with temps in QTP, but I >can't seem to come up with it for Quiz: > >TEMP TI-REC-CNT INT*10 > >[...] > >ITEM TI-REC-CNT = TI-REC-CNT + 1 > > >Thanks, > > >Mike >. > >= = = = = = = = = = = = = = = = = = = = = = = = = = = = >Mailing list: powerh-l@lists.swau.edu >Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu >Unsubscribe: "unsubscribe " in message body to >powerh-l-request@lists.swau.edu >http://lists.swau.edu/mailman/listinfo/powerh-l >This list is closed, thus to post to the list you must be a subscriber. Mike . From markus.grossrieder@alba-systems.com Wed Aug 27 16:25:54 2003 From: markus.grossrieder@alba-systems.com (Markus Grossrieder) Date: Wed, 27 Aug 2003 17:25:54 +0200 Subject: Record count in Quiz References: <5.2.1.1.2.20030827073758.00a97008@eug4ja.lane.edu> Message-ID: <020a01c36caf$866d4310$2601a8c0@albamarkusxp> Hi Mike, DEFINE D_COUNT INT*8 = 1 ... REPORT ... D_COUNT SUBTOT should work ! If you want to use it in footings, it will reset itself unless you use NORESET resp. RESET AT ... HTH, regards, Markus ----- Original Message ----- From: "Mike Palandri" To: Sent: Wednesday, August 27, 2003 4:41 PM Subject: Record count in Quiz > Is there any way to get a hold of the record count in Quiz, so that its > value would be 1 when the first record was read, 2 when the second was > read, 3 when the third was read etc.? > > > I am trying to convert a report based on a QTP to Quiz, and the technique > used requires the record count. This is done with temps in QTP, but I > can't seem to come up with it for Quiz: > > TEMP TI-REC-CNT INT*10 > > [...] > > ITEM TI-REC-CNT = TI-REC-CNT + 1 > > > Thanks, > > > Mike > . > > = = = = = = = = = = = = = = = = = = = = = = = = = = = = > Mailing list: powerh-l@lists.swau.edu > Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu > Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu > http://lists.swau.edu/mailman/listinfo/powerh-l > This list is closed, thus to post to the list you must be a subscriber. > > From chris.sharman@ccagroup.co.uk Wed Aug 27 18:19:52 2003 From: chris.sharman@ccagroup.co.uk (Chris Sharman) Date: Wed, 27 Aug 2003 18:19:52 +0100 Subject: Record count in Quiz In-Reply-To: <200308271554424190976@equus.ccagroup.co.uk> References: <200308271554424190976@equus.ccagroup.co.uk> Message-ID: <3F4CE838.3030003@ccagroup.co.uk> Mike Palandri wrote: > Is there any way to get a hold of the record count in Quiz, so that its > value would be 1 when the first record was read, 2 when the second was > read, 3 when the third was read etc.? > > I am trying to convert a report based on a QTP to Quiz, and the > technique used requires the record count. This is done with temps in > QTP, but I can't seem to come up with it for Quiz: count works for reports of course, but not for subfiles, for which you need something like: def kount int*9 = 1 rep sum kount subt noreset Chris ----------------------------------------------------------------------- Any views expressed in this message are those of the sender and not necessarily those of CCA Group. The unauthorized use, disclosure, copying or alteration of this message is forbidden. The contents of this message may be confidential and/or privileged, copyright CCA Group and are intended solely for the use of the individual or entity to whom they are addressed. Whilst this message has been scanned, CCA Group cannot guarantee that it is virus free or compatible with your systems and accepts no responsibility for any loss or damage arising from its use. The recipient is advised to run their own anti-virus software. If you receive this message in error please contact postmaster@ccagroup.co.uk immediately, destroy any copies and delete it from your computer systems. From Seamus.Browne@partage.org Fri Aug 29 15:14:52 2003 From: Seamus.Browne@partage.org (Seamus Browne) Date: Fri, 29 Aug 2003 16:14:52 +0200 Subject: Comparing dates - Squeeze two records into one. Message-ID: <0783BCF34B1CC442A58FB338CD20709005282A@netserver2.domaine2.org> You may find this helpful. I often did. OK, it is not a one pass trick, but it avoids having to compare data in one record with data in the next record. IMO, Quiz is not so good at that. In the first pass, get the first date leaving the second date blank (0). In the second pass, get the second date leaving the first date blank (0). In the third pass, combine the two records for each employee doing a KEEP AT EMPLOYEE_NO, using a MAX on both dates so as to save the significant date and drop the blank (0) date. Then you can compare the dates within the same record. ;First pass acc employees define first-date date = employee_file_date_item define second-date date = 0 set sub name outfile keep rep sum employee_no &, first_date &, second_date go ;Second pass acc the_other_file define first-date date = 0 define second_date date = second_file_date_item set sub name outfile APPEND rep sum employee_no &, first_date &, second_date go ;Third pass acc *outfile sort on employee_no set sub name outfile2 KEEP AT EMPLOYEE_NO rep sum employee_no &, first_date MAX &, second_date MAX go Does anyone know the technical term for this method ? I call it Squeezing because it kinda squeezes two records together. Seamus@partage.org -----Message d'origine----- De : powerh-l-request@cube.swau.edu [mailto:powerh-l-request@cube.swau.edu] Envoyé : jeudi 28 août 2003 13:25 À : powerh-l@lists.swau.edu Objet : powerh-l digest, Vol 1 #763 - 7 msgs Send powerh-l mailing list submissions to powerh-l@lists.swau.edu To subscribe or unsubscribe via the World Wide Web, visit http://lists.swau.edu/mailman/listinfo/powerh-l or, via email, send a message with subject or body 'help' to powerh-l-request@lists.swau.edu You can reach the person managing the list at powerh-l-admin@lists.swau.edu When replying, please edit your Subject line so it is more specific than "Re: Contents of powerh-l digest..." Today's Topics: 1. Record count in Quiz (Mike Palandri) 2. RE:Record count in Quiz (Noack, Andreas M (GESM)) 3. SV: Record count in Quiz (=?iso-8859-1?Q?=22Selfors=2C_Bj=F8rn=22?=) 4. RE:Record count in Quiz (Edis, Robert) 5. RE:Record count in Quiz (Mike Palandri) 6. Re:Record count in Quiz (Markus Grossrieder) 7. Re:Record count in Quiz (Chris Sharman) --__--__-- Message: 1 Date: Wed, 27 Aug 2003 07:41:57 -0700 From: Mike Palandri Subject: Record count in Quiz To: powerh-l@lists.swau.edu Is there any way to get a hold of the record count in Quiz, so that its value would be 1 when the first record was read, 2 when the second was read, 3 when the third was read etc.? I am trying to convert a report based on a QTP to Quiz, and the technique used requires the record count. This is done with temps in QTP, but I can't seem to come up with it for Quiz: TEMP TI-REC-CNT INT*10 [...] ITEM TI-REC-CNT = TI-REC-CNT + 1 Thanks, Mike . --__--__-- Message: 2 Subject: RE: Record count in Quiz Date: Wed, 27 Aug 2003 16:01:43 +0100 From: "Noack, Andreas M (GESM)" To: Cc: "Mike Palandri" Hello Mike, maybe I am too simplistic here, then correct... I would create a numeric defined item with value 1 and at report statement subtotal this. If indeed you need the count value per record for some calculation then report to subfile and use it in a second report. Kind regards g GE Water Technologies ----------------------------------------- Andreas Noack IT Team Europe -----Original Message----- From: Mike Palandri [mailto:palandri@4j.lane.edu] Sent: Mittwoch, 27. August 2003 16:42 To: powerh-l@lists.swau.edu Subject: Record count in Quiz Is there any way to get a hold of the record count in Quiz, so that its value would be 1 when the first record was read, 2 when the second was read, 3 when the third was read etc.? I am trying to convert a report based on a QTP to Quiz, and the technique used requires the record count. This is done with temps in QTP, but I can't seem to come up with it for Quiz: TEMP TI-REC-CNT INT*10 [...] ITEM TI-REC-CNT = TI-REC-CNT + 1 Thanks, Mike . = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. --__--__-- Message: 3 Subject: SV: Record count in Quiz Date: Wed, 27 Aug 2003 17:04:17 +0200 From: =?iso-8859-1?Q?=22Selfors=2C_Bj=F8rn=22?= To: "Mike Palandri" , You can put it into a subfile like: acc.... define cnt = 1 rep sum .... cnt subtotal noreset set subfile name ... mvh/regards Bjørn Selfors, Delfi Data a.s. -----Opprinnelig melding----- Fra: Mike Palandri [mailto:palandri@4j.lane.edu] Sendt: 27. august 2003 16:42 Til: powerh-l@lists.swau.edu Emne: Record count in Quiz Is there any way to get a hold of the record count in Quiz, so that its value would be 1 when the first record was read, 2 when the second was read, 3 when the third was read etc.? I am trying to convert a report based on a QTP to Quiz, and the technique used requires the record count. This is done with temps in QTP, but I can't seem to come up with it for Quiz: TEMP TI-REC-CNT INT*10 [...] ITEM TI-REC-CNT = TI-REC-CNT + 1 Thanks, Mike . = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. --__--__-- Message: 4 Subject: RE: Record count in Quiz Date: Wed, 27 Aug 2003 10:16:35 -0500 From: "Edis, Robert" To: "Powerh-L (E-mail)" Doesn't Quiz have a summary operation called COUNT? Blue -----Original Message----- From: Mike Palandri [mailto:palandri@4j.lane.edu] Sent: Wednesday, August 27, 2003 9:42 AM To: powerh-l@lists.swau.edu Subject: Record count in Quiz Is there any way to get a hold of the record count in Quiz, so that its value would be 1 when the first record was read, 2 when the second was read, 3 when the third was read etc.? I am trying to convert a report based on a QTP to Quiz, and the technique used requires the record count. This is done with temps in QTP, but I can't seem to come up with it for Quiz: TEMP TI-REC-CNT INT*10 [...] ITEM TI-REC-CNT = TI-REC-CNT + 1 Thanks, Mike . = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. --__--__-- Message: 5 Date: Wed, 27 Aug 2003 08:22:19 -0700 From: Mike Palandri Subject: RE: Record count in Quiz To: powerh-l@lists.swau.edu Thanks for all the tips. I need the record count to sort on, so a summary operation such as count or subtotal won't help. The problem is to read a record and save the value of one of the fields so it may be compared with another field in the next record. This is to determine if the date range in the first record overlaps the range in the second. I've been sorting on the record count in QTP in order to provide a break on each record... SORT ON EMP-NO, POS-NO, DATE-PLAN-START, TI-REC-CNT ...then saving an end date field in a temp when the record count breaks (which it does on every record)... ITEM TD-END-TMP = DATE-PLAN-END AT TI-REC-CNT RESET AT POS-NO ...so it can be compared with the start date in the next record: DEF TC-DUP-FLAG CHAR*01 = "Y" & IF TD-END-TMP <> 0 AND TD-END-TMP >= DATE-PLAN-START & ELSE "" This tells me if the end date in record (n) is >= to the start date in record (n + 1), if so the range in the second record overlaps the range in the first, and it is written to a subfile to be reported in Quiz What I am trying to do is make this a simple one pass Quiz. I may as well keep the current QTP method if I am going to be forced to use two passes and a subfile in Quiz. I can see as I think through what I am writing here, that I would also have an issue converting the ITEM TD-END-TMP... statement to Quiz as well. Perhaps it's just not worth the trouble. Thanks again. At 10:03 AM 08/27/2003 -0500, you wrote: >You can't use temp's in quiz and you cannot reference the count >function >directly. You can however use a defined variable to do the same thing. > >ACCESS CUSTOMERS > >DEFINE CTR NUM*4 = 1 > >REPORT SUMMARY CUSTOMER-NUMBER CTR SUB NORESET > >GO > >This will increment the CTR variable for each record complex. > > > >-----Original Message----- >From: Mike Palandri [mailto:palandri@4j.lane.edu] >Sent: Wednesday, August 27, 2003 9:42 AM >To: powerh-l@lists.swau.edu >Subject: Record count in Quiz > > >Is there any way to get a hold of the record count in Quiz, so that its >value would be 1 when the first record was read, 2 when the second was >read, 3 when the third was read etc.? > > >I am trying to convert a report based on a QTP to Quiz, and the >technique used requires the record count. This is done with temps in >QTP, but I can't seem to come up with it for Quiz: > >TEMP TI-REC-CNT INT*10 > >[...] > >ITEM TI-REC-CNT = TI-REC-CNT + 1 > > >Thanks, > > >Mike >. > >= = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: >powerh-l@lists.swau.edu >Subscribe: "subscribe" in message body to >powerh-l-request@lists.swau.edu >Unsubscribe: "unsubscribe " in message body to >powerh-l-request@lists.swau.edu >http://lists.swau.edu/mailman/listinfo/powerh-l >This list is closed, thus to post to the list you must be a subscriber. Mike . --__--__-- Message: 6 From: "Markus Grossrieder" To: "Mike Palandri" , Subject: Re: Record count in Quiz Date: Wed, 27 Aug 2003 17:25:54 +0200 Hi Mike, DEFINE D_COUNT INT*8 = 1 ... REPORT ... D_COUNT SUBTOT should work ! If you want to use it in footings, it will reset itself unless you use NORESET resp. RESET AT ... HTH, regards, Markus ----- Original Message ----- From: "Mike Palandri" To: Sent: Wednesday, August 27, 2003 4:41 PM Subject: Record count in Quiz > Is there any way to get a hold of the record count in Quiz, so that > its value would be 1 when the first record was read, 2 when the second > was read, 3 when the third was read etc.? > > > I am trying to convert a report based on a QTP to Quiz, and the > technique used requires the record count. This is done with temps in > QTP, but I can't seem to come up with it for Quiz: > > TEMP TI-REC-CNT INT*10 > > [...] > > ITEM TI-REC-CNT = TI-REC-CNT + 1 > > > Thanks, > > > Mike > . > > = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: > powerh-l@lists.swau.edu > Subscribe: "subscribe" in message body to > powerh-l-request@lists.swau.edu > Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu > http://lists.swau.edu/mailman/listinfo/powerh-l > This list is closed, thus to post to the list you must be a > subscriber. > > --__--__-- Message: 7 Date: Wed, 27 Aug 2003 18:19:52 +0100 From: Chris Sharman To: Mike Palandri , PowerH List Subject: Re: Record count in Quiz Mike Palandri wrote: > Is there any way to get a hold of the record count in Quiz, so that > its > value would be 1 when the first record was read, 2 when the second was > read, 3 when the third was read etc.? > > I am trying to convert a report based on a QTP to Quiz, and the > technique used requires the record count. This is done with temps in > QTP, but I can't seem to come up with it for Quiz: count works for reports of course, but not for subfiles, for which you need something like: def kount int*9 = 1 rep sum kount subt noreset Chris ----------------------------------------------------------------------- Any views expressed in this message are those of the sender and not necessarily those of CCA Group. The unauthorized use, disclosure, copying or alteration of this message is forbidden. The contents of this message may be confidential and/or privileged, copyright CCA Group and are intended solely for the use of the individual or entity to whom they are addressed. Whilst this message has been scanned, CCA Group cannot guarantee that it is virus free or compatible with your systems and accepts no responsibility for any loss or damage arising from its use. The recipient is advised to run their own anti-virus software. If you receive this message in error please contact postmaster@ccagroup.co.uk immediately, destroy any copies and delete it from your computer systems. --__--__-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. End of powerh-l Digest From dmorrison@mcbrideelectric.com Fri Aug 29 15:32:38 2003 From: dmorrison@mcbrideelectric.com (David Morrison - Corporate) Date: Fri, 29 Aug 2003 07:32:38 -0700 Subject: Comparing dates - Squeeze two records into one. Message-ID: <95E33F6AAE73984CA53417395C3DAC67AB2EB5@srvrexchange.mcb_corp.mcbrideelectric.com> Seamus, I think its more elegant to sort on employee number, then date, and then output at employee number with the date from the last record. David Morrison McBride Electric -----Original Message----- From: Seamus Browne [mailto:Seamus.Browne@partage.org] Sent: Friday, August 29, 2003 7:15 AM To: powerh-l@cube.swau.edu Subject: Comparing dates - Squeeze two records into one. You may find this helpful. I often did. OK, it is not a one pass trick, but it avoids having to compare data in one record with data in the next record. IMO, Quiz is not so good at that. In the first pass, get the first date leaving the second date blank (0). In the second pass, get the second date leaving the first date blank (0). In the third pass, combine the two records for each employee doing a KEEP AT EMPLOYEE_NO, using a MAX on both dates so as to save the significant date and drop the blank (0) date. Then you can compare the dates within the same record. ;First pass acc employees define first-date date = employee_file_date_item define second-date date = 0 set sub name outfile keep rep sum employee_no &, first_date &, second_date go ;Second pass acc the_other_file define first-date date = 0 define second_date date = second_file_date_item set sub name outfile APPEND rep sum employee_no &, first_date &, second_date go ;Third pass acc *outfile sort on employee_no set sub name outfile2 KEEP AT EMPLOYEE_NO rep sum employee_no &, first_date MAX &, second_date MAX go Does anyone know the technical term for this method ? I call it Squeezing because it kinda squeezes two records together. Seamus@partage.org -----Message d'origine----- De : powerh-l-request@cube.swau.edu [mailto:powerh-l-request@cube.swau.edu] Envoyé : jeudi 28 août 2003 13:25 À : powerh-l@lists.swau.edu Objet : powerh-l digest, Vol 1 #763 - 7 msgs Send powerh-l mailing list submissions to powerh-l@lists.swau.edu To subscribe or unsubscribe via the World Wide Web, visit http://lists.swau.edu/mailman/listinfo/powerh-l or, via email, send a message with subject or body 'help' to powerh-l-request@lists.swau.edu You can reach the person managing the list at powerh-l-admin@lists.swau.edu When replying, please edit your Subject line so it is more specific than "Re: Contents of powerh-l digest..." Today's Topics: 1. Record count in Quiz (Mike Palandri) 2. RE:Record count in Quiz (Noack, Andreas M (GESM)) 3. SV: Record count in Quiz (=?iso-8859-1?Q?=22Selfors=2C_Bj=F8rn=22?=) 4. RE:Record count in Quiz (Edis, Robert) 5. RE:Record count in Quiz (Mike Palandri) 6. Re:Record count in Quiz (Markus Grossrieder) 7. Re:Record count in Quiz (Chris Sharman) --__--__-- Message: 1 Date: Wed, 27 Aug 2003 07:41:57 -0700 From: Mike Palandri Subject: Record count in Quiz To: powerh-l@lists.swau.edu Is there any way to get a hold of the record count in Quiz, so that its value would be 1 when the first record was read, 2 when the second was read, 3 when the third was read etc.? I am trying to convert a report based on a QTP to Quiz, and the technique used requires the record count. This is done with temps in QTP, but I can't seem to come up with it for Quiz: TEMP TI-REC-CNT INT*10 [...] ITEM TI-REC-CNT = TI-REC-CNT + 1 Thanks, Mike . --__--__-- Message: 2 Subject: RE: Record count in Quiz Date: Wed, 27 Aug 2003 16:01:43 +0100 From: "Noack, Andreas M (GESM)" To: Cc: "Mike Palandri" Hello Mike, maybe I am too simplistic here, then correct... I would create a numeric defined item with value 1 and at report statement subtotal this. If indeed you need the count value per record for some calculation then report to subfile and use it in a second report. Kind regards g GE Water Technologies ----------------------------------------- Andreas Noack IT Team Europe -----Original Message----- From: Mike Palandri [mailto:palandri@4j.lane.edu] Sent: Mittwoch, 27. August 2003 16:42 To: powerh-l@lists.swau.edu Subject: Record count in Quiz Is there any way to get a hold of the record count in Quiz, so that its value would be 1 when the first record was read, 2 when the second was read, 3 when the third was read etc.? I am trying to convert a report based on a QTP to Quiz, and the technique used requires the record count. This is done with temps in QTP, but I can't seem to come up with it for Quiz: TEMP TI-REC-CNT INT*10 [...] ITEM TI-REC-CNT = TI-REC-CNT + 1 Thanks, Mike . = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. --__--__-- Message: 3 Subject: SV: Record count in Quiz Date: Wed, 27 Aug 2003 17:04:17 +0200 From: =?iso-8859-1?Q?=22Selfors=2C_Bj=F8rn=22?= To: "Mike Palandri" , You can put it into a subfile like: acc.... define cnt = 1 rep sum .... cnt subtotal noreset set subfile name ... mvh/regards Bjørn Selfors, Delfi Data a.s. -----Opprinnelig melding----- Fra: Mike Palandri [mailto:palandri@4j.lane.edu] Sendt: 27. august 2003 16:42 Til: powerh-l@lists.swau.edu Emne: Record count in Quiz Is there any way to get a hold of the record count in Quiz, so that its value would be 1 when the first record was read, 2 when the second was read, 3 when the third was read etc.? I am trying to convert a report based on a QTP to Quiz, and the technique used requires the record count. This is done with temps in QTP, but I can't seem to come up with it for Quiz: TEMP TI-REC-CNT INT*10 [...] ITEM TI-REC-CNT = TI-REC-CNT + 1 Thanks, Mike . = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. --__--__-- Message: 4 Subject: RE: Record count in Quiz Date: Wed, 27 Aug 2003 10:16:35 -0500 From: "Edis, Robert" To: "Powerh-L (E-mail)" Doesn't Quiz have a summary operation called COUNT? Blue -----Original Message----- From: Mike Palandri [mailto:palandri@4j.lane.edu] Sent: Wednesday, August 27, 2003 9:42 AM To: powerh-l@lists.swau.edu Subject: Record count in Quiz Is there any way to get a hold of the record count in Quiz, so that its value would be 1 when the first record was read, 2 when the second was read, 3 when the third was read etc.? I am trying to convert a report based on a QTP to Quiz, and the technique used requires the record count. This is done with temps in QTP, but I can't seem to come up with it for Quiz: TEMP TI-REC-CNT INT*10 [...] ITEM TI-REC-CNT = TI-REC-CNT + 1 Thanks, Mike . = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. --__--__-- Message: 5 Date: Wed, 27 Aug 2003 08:22:19 -0700 From: Mike Palandri Subject: RE: Record count in Quiz To: powerh-l@lists.swau.edu Thanks for all the tips. I need the record count to sort on, so a summary operation such as count or subtotal won't help. The problem is to read a record and save the value of one of the fields so it may be compared with another field in the next record. This is to determine if the date range in the first record overlaps the range in the second. I've been sorting on the record count in QTP in order to provide a break on each record... SORT ON EMP-NO, POS-NO, DATE-PLAN-START, TI-REC-CNT ...then saving an end date field in a temp when the record count breaks (which it does on every record)... ITEM TD-END-TMP = DATE-PLAN-END AT TI-REC-CNT RESET AT POS-NO ...so it can be compared with the start date in the next record: DEF TC-DUP-FLAG CHAR*01 = "Y" & IF TD-END-TMP <> 0 AND TD-END-TMP >= DATE-PLAN-START & ELSE "" This tells me if the end date in record (n) is >= to the start date in record (n + 1), if so the range in the second record overlaps the range in the first, and it is written to a subfile to be reported in Quiz What I am trying to do is make this a simple one pass Quiz. I may as well keep the current QTP method if I am going to be forced to use two passes and a subfile in Quiz. I can see as I think through what I am writing here, that I would also have an issue converting the ITEM TD-END-TMP... statement to Quiz as well. Perhaps it's just not worth the trouble. Thanks again. At 10:03 AM 08/27/2003 -0500, you wrote: >You can't use temp's in quiz and you cannot reference the count >function >directly. You can however use a defined variable to do the same thing. > >ACCESS CUSTOMERS > >DEFINE CTR NUM*4 = 1 > >REPORT SUMMARY CUSTOMER-NUMBER CTR SUB NORESET > >GO > >This will increment the CTR variable for each record complex. > > > >-----Original Message----- >From: Mike Palandri [mailto:palandri@4j.lane.edu] >Sent: Wednesday, August 27, 2003 9:42 AM >To: powerh-l@lists.swau.edu >Subject: Record count in Quiz > > >Is there any way to get a hold of the record count in Quiz, so that its >value would be 1 when the first record was read, 2 when the second was >read, 3 when the third was read etc.? > > >I am trying to convert a report based on a QTP to Quiz, and the >technique used requires the record count. This is done with temps in >QTP, but I can't seem to come up with it for Quiz: > >TEMP TI-REC-CNT INT*10 > >[...] > >ITEM TI-REC-CNT = TI-REC-CNT + 1 > > >Thanks, > > >Mike >. > >= = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: >powerh-l@lists.swau.edu >Subscribe: "subscribe" in message body to >powerh-l-request@lists.swau.edu >Unsubscribe: "unsubscribe " in message body to >powerh-l-request@lists.swau.edu >http://lists.swau.edu/mailman/listinfo/powerh-l >This list is closed, thus to post to the list you must be a subscriber. Mike . --__--__-- Message: 6 From: "Markus Grossrieder" To: "Mike Palandri" , Subject: Re: Record count in Quiz Date: Wed, 27 Aug 2003 17:25:54 +0200 Hi Mike, DEFINE D_COUNT INT*8 = 1 ... REPORT ... D_COUNT SUBTOT should work ! If you want to use it in footings, it will reset itself unless you use NORESET resp. RESET AT ... HTH, regards, Markus ----- Original Message ----- From: "Mike Palandri" To: Sent: Wednesday, August 27, 2003 4:41 PM Subject: Record count in Quiz > Is there any way to get a hold of the record count in Quiz, so that > its value would be 1 when the first record was read, 2 when the second > was read, 3 when the third was read etc.? > > > I am trying to convert a report based on a QTP to Quiz, and the > technique used requires the record count. This is done with temps in > QTP, but I can't seem to come up with it for Quiz: > > TEMP TI-REC-CNT INT*10 > > [...] > > ITEM TI-REC-CNT = TI-REC-CNT + 1 > > > Thanks, > > > Mike > . > > = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: > powerh-l@lists.swau.edu > Subscribe: "subscribe" in message body to > powerh-l-request@lists.swau.edu > Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu > http://lists.swau.edu/mailman/listinfo/powerh-l > This list is closed, thus to post to the list you must be a > subscriber. > > --__--__-- Message: 7 Date: Wed, 27 Aug 2003 18:19:52 +0100 From: Chris Sharman To: Mike Palandri , PowerH List Subject: Re: Record count in Quiz Mike Palandri wrote: > Is there any way to get a hold of the record count in Quiz, so that > its > value would be 1 when the first record was read, 2 when the second was > read, 3 when the third was read etc.? > > I am trying to convert a report based on a QTP to Quiz, and the > technique used requires the record count. This is done with temps in > QTP, but I can't seem to come up with it for Quiz: count works for reports of course, but not for subfiles, for which you need something like: def kount int*9 = 1 rep sum kount subt noreset Chris ----------------------------------------------------------------------- Any views expressed in this message are those of the sender and not necessarily those of CCA Group. The unauthorized use, disclosure, copying or alteration of this message is forbidden. The contents of this message may be confidential and/or privileged, copyright CCA Group and are intended solely for the use of the individual or entity to whom they are addressed. Whilst this message has been scanned, CCA Group cannot guarantee that it is virus free or compatible with your systems and accepts no responsibility for any loss or damage arising from its use. The recipient is advised to run their own anti-virus software. If you receive this message in error please contact postmaster@ccagroup.co.uk immediately, destroy any copies and delete it from your computer systems. --__--__-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. End of powerh-l Digest = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. _________________________________________________ Scanned on 29 Aug 2003 14:28:26 Scanning by http://erado.com From REdis@Blistex.com Fri Aug 29 15:38:48 2003 From: REdis@Blistex.com (Edis, Robert) Date: Fri, 29 Aug 2003 09:38:48 -0500 Subject: Comparing dates - Squeeze two records into one. Message-ID: <22891C4DC32D234EA7719468C29A1783104A37@ChiExch2k.corp.blistex.com> "MERGE" BTW, SQL is no better than Quiz at doing this type of task. Unless you do a self join, and have something to join on, you can't compare one row with another in the same table. You do it in QTP due to the existence of variables (temp items) that can be persistent in the course of the code execution. SQL can achieve this in a cursor but at least in Transact SQL (SQL Server) cursors are so resource intensive they're often not worth the bother. I would use the same method you describe in T-SQL as well as this would provide the best performance. Blue -----Original Message----- From: Seamus Browne [mailto:Seamus.Browne@partage.org] Sent: Friday, August 29, 2003 9:15 AM To: powerh-l@cube.swau.edu Subject: Comparing dates - Squeeze two records into one. You may find this helpful. I often did. OK, it is not a one pass trick, but it avoids having to compare data in one record with data in the next record. IMO, Quiz is not so good at that. In the first pass, get the first date leaving the second date blank (0). In the second pass, get the second date leaving the first date blank (0). In the third pass, combine the two records for each employee doing a KEEP AT EMPLOYEE_NO, using a MAX on both dates so as to save the significant date and drop the blank (0) date. Then you can compare the dates within the same record. ;First pass acc employees define first-date date = employee_file_date_item define second-date date = 0 set sub name outfile keep rep sum employee_no &, first_date &, second_date go ;Second pass acc the_other_file define first-date date = 0 define second_date date = second_file_date_item set sub name outfile APPEND rep sum employee_no &, first_date &, second_date go ;Third pass acc *outfile sort on employee_no set sub name outfile2 KEEP AT EMPLOYEE_NO rep sum employee_no &, first_date MAX &, second_date MAX go Does anyone know the technical term for this method ? I call it Squeezing because it kinda squeezes two records together. Seamus@partage.org -----Message d'origine----- De : powerh-l-request@cube.swau.edu [mailto:powerh-l-request@cube.swau.edu] Envoyé : jeudi 28 août 2003 13:25 À : powerh-l@lists.swau.edu Objet : powerh-l digest, Vol 1 #763 - 7 msgs Send powerh-l mailing list submissions to powerh-l@lists.swau.edu To subscribe or unsubscribe via the World Wide Web, visit http://lists.swau.edu/mailman/listinfo/powerh-l or, via email, send a message with subject or body 'help' to powerh-l-request@lists.swau.edu You can reach the person managing the list at powerh-l-admin@lists.swau.edu When replying, please edit your Subject line so it is more specific than "Re: Contents of powerh-l digest..." Today's Topics: 1. Record count in Quiz (Mike Palandri) 2. RE:Record count in Quiz (Noack, Andreas M (GESM)) 3. SV: Record count in Quiz (=?iso-8859-1?Q?=22Selfors=2C_Bj=F8rn=22?=) 4. RE:Record count in Quiz (Edis, Robert) 5. RE:Record count in Quiz (Mike Palandri) 6. Re:Record count in Quiz (Markus Grossrieder) 7. Re:Record count in Quiz (Chris Sharman) --__--__-- Message: 1 Date: Wed, 27 Aug 2003 07:41:57 -0700 From: Mike Palandri Subject: Record count in Quiz To: powerh-l@lists.swau.edu Is there any way to get a hold of the record count in Quiz, so that its value would be 1 when the first record was read, 2 when the second was read, 3 when the third was read etc.? I am trying to convert a report based on a QTP to Quiz, and the technique used requires the record count. This is done with temps in QTP, but I can't seem to come up with it for Quiz: TEMP TI-REC-CNT INT*10 [...] ITEM TI-REC-CNT = TI-REC-CNT + 1 Thanks, Mike . --__--__-- Message: 2 Subject: RE: Record count in Quiz Date: Wed, 27 Aug 2003 16:01:43 +0100 From: "Noack, Andreas M (GESM)" To: Cc: "Mike Palandri" Hello Mike, maybe I am too simplistic here, then correct... I would create a numeric defined item with value 1 and at report statement subtotal this. If indeed you need the count value per record for some calculation then report to subfile and use it in a second report. Kind regards g GE Water Technologies ----------------------------------------- Andreas Noack IT Team Europe -----Original Message----- From: Mike Palandri [mailto:palandri@4j.lane.edu] Sent: Mittwoch, 27. August 2003 16:42 To: powerh-l@lists.swau.edu Subject: Record count in Quiz Is there any way to get a hold of the record count in Quiz, so that its value would be 1 when the first record was read, 2 when the second was read, 3 when the third was read etc.? I am trying to convert a report based on a QTP to Quiz, and the technique used requires the record count. This is done with temps in QTP, but I can't seem to come up with it for Quiz: TEMP TI-REC-CNT INT*10 [...] ITEM TI-REC-CNT = TI-REC-CNT + 1 Thanks, Mike . = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. --__--__-- Message: 3 Subject: SV: Record count in Quiz Date: Wed, 27 Aug 2003 17:04:17 +0200 From: =?iso-8859-1?Q?=22Selfors=2C_Bj=F8rn=22?= To: "Mike Palandri" , You can put it into a subfile like: acc.... define cnt = 1 rep sum .... cnt subtotal noreset set subfile name ... mvh/regards Bjørn Selfors, Delfi Data a.s. -----Opprinnelig melding----- Fra: Mike Palandri [mailto:palandri@4j.lane.edu] Sendt: 27. august 2003 16:42 Til: powerh-l@lists.swau.edu Emne: Record count in Quiz Is there any way to get a hold of the record count in Quiz, so that its value would be 1 when the first record was read, 2 when the second was read, 3 when the third was read etc.? I am trying to convert a report based on a QTP to Quiz, and the technique used requires the record count. This is done with temps in QTP, but I can't seem to come up with it for Quiz: TEMP TI-REC-CNT INT*10 [...] ITEM TI-REC-CNT = TI-REC-CNT + 1 Thanks, Mike . = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. --__--__-- Message: 4 Subject: RE: Record count in Quiz Date: Wed, 27 Aug 2003 10:16:35 -0500 From: "Edis, Robert" To: "Powerh-L (E-mail)" Doesn't Quiz have a summary operation called COUNT? Blue -----Original Message----- From: Mike Palandri [mailto:palandri@4j.lane.edu] Sent: Wednesday, August 27, 2003 9:42 AM To: powerh-l@lists.swau.edu Subject: Record count in Quiz Is there any way to get a hold of the record count in Quiz, so that its value would be 1 when the first record was read, 2 when the second was read, 3 when the third was read etc.? I am trying to convert a report based on a QTP to Quiz, and the technique used requires the record count. This is done with temps in QTP, but I can't seem to come up with it for Quiz: TEMP TI-REC-CNT INT*10 [...] ITEM TI-REC-CNT = TI-REC-CNT + 1 Thanks, Mike . = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. --__--__-- Message: 5 Date: Wed, 27 Aug 2003 08:22:19 -0700 From: Mike Palandri Subject: RE: Record count in Quiz To: powerh-l@lists.swau.edu Thanks for all the tips. I need the record count to sort on, so a summary operation such as count or subtotal won't help. The problem is to read a record and save the value of one of the fields so it may be compared with another field in the next record. This is to determine if the date range in the first record overlaps the range in the second. I've been sorting on the record count in QTP in order to provide a break on each record... SORT ON EMP-NO, POS-NO, DATE-PLAN-START, TI-REC-CNT ...then saving an end date field in a temp when the record count breaks (which it does on every record)... ITEM TD-END-TMP = DATE-PLAN-END AT TI-REC-CNT RESET AT POS-NO ...so it can be compared with the start date in the next record: DEF TC-DUP-FLAG CHAR*01 = "Y" & IF TD-END-TMP <> 0 AND TD-END-TMP >= DATE-PLAN-START & ELSE "" This tells me if the end date in record (n) is >= to the start date in record (n + 1), if so the range in the second record overlaps the range in the first, and it is written to a subfile to be reported in Quiz What I am trying to do is make this a simple one pass Quiz. I may as well keep the current QTP method if I am going to be forced to use two passes and a subfile in Quiz. I can see as I think through what I am writing here, that I would also have an issue converting the ITEM TD-END-TMP... statement to Quiz as well. Perhaps it's just not worth the trouble. Thanks again. At 10:03 AM 08/27/2003 -0500, you wrote: >You can't use temp's in quiz and you cannot reference the count >function >directly. You can however use a defined variable to do the same thing. > >ACCESS CUSTOMERS > >DEFINE CTR NUM*4 = 1 > >REPORT SUMMARY CUSTOMER-NUMBER CTR SUB NORESET > >GO > >This will increment the CTR variable for each record complex. > > > >-----Original Message----- >From: Mike Palandri [mailto:palandri@4j.lane.edu] >Sent: Wednesday, August 27, 2003 9:42 AM >To: powerh-l@lists.swau.edu >Subject: Record count in Quiz > > >Is there any way to get a hold of the record count in Quiz, so that its >value would be 1 when the first record was read, 2 when the second was >read, 3 when the third was read etc.? > > >I am trying to convert a report based on a QTP to Quiz, and the >technique used requires the record count. This is done with temps in >QTP, but I can't seem to come up with it for Quiz: > >TEMP TI-REC-CNT INT*10 > >[...] > >ITEM TI-REC-CNT = TI-REC-CNT + 1 > > >Thanks, > > >Mike >. > >= = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: >powerh-l@lists.swau.edu >Subscribe: "subscribe" in message body to >powerh-l-request@lists.swau.edu >Unsubscribe: "unsubscribe " in message body to >powerh-l-request@lists.swau.edu >http://lists.swau.edu/mailman/listinfo/powerh-l >This list is closed, thus to post to the list you must be a subscriber. Mike . --__--__-- Message: 6 From: "Markus Grossrieder" To: "Mike Palandri" , Subject: Re: Record count in Quiz Date: Wed, 27 Aug 2003 17:25:54 +0200 Hi Mike, DEFINE D_COUNT INT*8 = 1 ... REPORT ... D_COUNT SUBTOT should work ! If you want to use it in footings, it will reset itself unless you use NORESET resp. RESET AT ... HTH, regards, Markus ----- Original Message ----- From: "Mike Palandri" To: Sent: Wednesday, August 27, 2003 4:41 PM Subject: Record count in Quiz > Is there any way to get a hold of the record count in Quiz, so that > its value would be 1 when the first record was read, 2 when the second > was read, 3 when the third was read etc.? > > > I am trying to convert a report based on a QTP to Quiz, and the > technique used requires the record count. This is done with temps in > QTP, but I can't seem to come up with it for Quiz: > > TEMP TI-REC-CNT INT*10 > > [...] > > ITEM TI-REC-CNT = TI-REC-CNT + 1 > > > Thanks, > > > Mike > . > > = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: > powerh-l@lists.swau.edu > Subscribe: "subscribe" in message body to > powerh-l-request@lists.swau.edu > Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu > http://lists.swau.edu/mailman/listinfo/powerh-l > This list is closed, thus to post to the list you must be a > subscriber. > > --__--__-- Message: 7 Date: Wed, 27 Aug 2003 18:19:52 +0100 From: Chris Sharman To: Mike Palandri , PowerH List Subject: Re: Record count in Quiz Mike Palandri wrote: > Is there any way to get a hold of the record count in Quiz, so that > its > value would be 1 when the first record was read, 2 when the second was > read, 3 when the third was read etc.? > > I am trying to convert a report based on a QTP to Quiz, and the > technique used requires the record count. This is done with temps in > QTP, but I can't seem to come up with it for Quiz: count works for reports of course, but not for subfiles, for which you need something like: def kount int*9 = 1 rep sum kount subt noreset Chris ----------------------------------------------------------------------- Any views expressed in this message are those of the sender and not necessarily those of CCA Group. The unauthorized use, disclosure, copying or alteration of this message is forbidden. The contents of this message may be confidential and/or privileged, copyright CCA Group and are intended solely for the use of the individual or entity to whom they are addressed. Whilst this message has been scanned, CCA Group cannot guarantee that it is virus free or compatible with your systems and accepts no responsibility for any loss or damage arising from its use. The recipient is advised to run their own anti-virus software. If you receive this message in error please contact postmaster@ccagroup.co.uk immediately, destroy any copies and delete it from your computer systems. --__--__-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. End of powerh-l Digest = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber. From VGoparaju@tradepointsystems.com Fri Aug 29 17:58:52 2003 From: VGoparaju@tradepointsystems.com (Goparaju, Vidyasagar) Date: Fri, 29 Aug 2003 12:58:52 -0400 Subject: Unix file conversin using 'dd' command Message-ID: I have an ASCII file with 6 records in it and the record terminator is a NEWLINE character. All the records are less than 80 bytes. I have to read this file using Powerhouse dictionary record which is 200 bytes fixed length sequential file. I have been playing with 'dd' command and different options. None of them working for me. When I type the file using 'cat' command, it is showing correctly. But when I read the file in QUIZ, I am getting different number of records (less than 6). Any help will be highly appreciated. Thanks Sagar From Alan_G_Power@Keane.com Fri Aug 29 21:18:39 2003 From: Alan_G_Power@Keane.com (Alan_G_Power@Keane.com) Date: Fri, 29 Aug 2003 17:18:39 -0300 Subject: Alan G Power/HAL/Keane is out of the office. Message-ID: I will be out of the office starting 08/29/2003 and will not return until 09/08/2003. I will respond to your message when I return. Please contact Michael Traves in the case of an emergency. From neil@nha.co.za Sat Aug 30 07:06:16 2003 From: neil@nha.co.za (Neil Harvey) Date: Sat, 30 Aug 2003 08:06:16 +0200 Subject: Unix file conversin using 'dd' command Message-ID: <8F2D061DFD77E444B00D8FE9B8273DD098D015@titan.nha.co.za> I use this in a script:- echo test line1 > qfile echo test line2 >> qfile #turn it into a file quiz can read dd if=qfile of=wfile cbs=256 conv=block Where wfile is a 256 byte DIRECT file (UNIXIO) in the dictionary. Wouldn't it be nice if PowerHouse was able to really read UNIX (LF delimited) and DOS (CRLF) delimited file natively, without having to go through hoops? The parsers seem to cope happily..... Neil -----Original Message----- From: Goparaju, Vidyasagar [mailto:VGoparaju@tradepointsystems.com] Sent: 29 August 2003 06:59 To: Powerh-L (E-mail) Subject: Unix file conversin using 'dd' command I have an ASCII file with 6 records in it and the record terminator is a NEWLINE character. All the records are less than 80 bytes. I have to read this file using Powerhouse dictionary record which is 200 bytes fixed length sequential file. I have been playing with 'dd' command and different options. None of them working for me. When I type the file using 'cat' command, it is showing correctly. But when I read the file in QUIZ, I am getting different number of records (less than 6). Any help will be highly appreciated. Thanks Sagar = = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list: powerh-l@lists.swau.edu Subscribe: "subscribe" in message body to powerh-l-request@lists.swau.edu Unsubscribe: "unsubscribe " in message body to powerh-l-request@lists.swau.edu http://lists.swau.edu/mailman/listinfo/powerh-l This list is closed, thus to post to the list you must be a subscriber.