Re: file list for ftp in a command procedure
- From: David J Dachtera <djesys.nospam@xxxxxxxxxxx>
- Date: Mon, 06 Mar 2006 17:13:29 -0600
"pcoviello@xxxxxxxxx" wrote:
ok I followed your post above with some mods ( single quotes around P1
& P2) but now I'm getting this
thanks
Paul
$ @test 01-oct-2005 01-nov-2005
$ if P1 .eqs. "" then Inquire start_date "Please Enter Start Date
dd-mmm-yyyy"
$ if P2 .eqs. "" then Inquire end_date "Please Enter End Date
dd-mmm-yyyy"
$ start_date = f$cvtime(01-OCT-2005, "comparison", "date" )
%DCL-W-UNDSYM, undefined symbol - check validity and spelling
\OCT\
$ end_date = f$cvtime(01-NOV-2005, "comparison", "date" )
%DCL-W-UNDSYM, undefined symbol - check validity and spelling
\NOV\
Try using P1 amd P2 as per the original post. The fact that the contents
of those symbols are appearing indicates that you may be doing this:
$ start_date = f$cvtime('p1, "comparison", "date" )
$ end_date = f$cvtime('p2, "comparison", "date" )
....instead of this:
$ start_date = f$cvtime(p1, "comparison", "date" )
$ end_date = f$cvtime(p2, "comparison", "date" )
--
David J Dachtera
dba DJE Systems
http://www.djesys.com/
Unofficial OpenVMS Marketing Home Page
http://www.djesys.com/vms/market/
Unofficial Affordable OpenVMS Home Page:
http://www.djesys.com/vms/soho/
Unofficial OpenVMS-IA32 Home Page:
http://www.djesys.com/vms/ia32/
Unofficial OpenVMS Hobbyist Support Page:
http://www.djesys.com/vms/support/
.
- Follow-Ups:
- Re: file list for ftp in a command procedure
- From: pcoviello@xxxxxxxxx
- Re: file list for ftp in a command procedure
- References:
- Re: file list for ftp in a command procedure
- From: pcoviello@xxxxxxxxx
- Re: file list for ftp in a command procedure
- Prev by Date: Re: so called IT pros looking for disaster recovery?
- Next by Date: Re: OpenVMS proves superior to all other OSs
- Previous by thread: Re: file list for ftp in a command procedure
- Next by thread: Re: file list for ftp in a command procedure
- Index(es):
Relevant Pages
|