Re: FTP and SMS (and DYNALLOC)

2009-05-26 Thread Neil Duffee
On 2009-05-22 at 16:15, concerning "Re: FTP and SMS (and DYNALLOC)", 
Bob Lester  wrote to IBM-Main:

>We have an ftp batch job that reaches down to a squatty box and
> pulls some data. 
> 
>The LOCSITE parms are:  
>LOCSITE LRECL=8996 BLKSIZE=9000 RECFM=VBA +
>unit=sysda volume=SYST01 cyl pri=20 sec=30 
> 
>Volume SYST01 does not exist anymore [snip]

Bob:  I accomplish this (ok, related to JCL) with a Dummy StorGrp 
(named, conveniently, OBSOLETE).  

My solution was aimed at resolving DISP={OLD | MOD},VOL=SER=SYST01 
coded on JCL statements.  (I obsoleted all my PROD* volumes in this 
manner.)  In normal circumstances, the above signals that *you know* 
where the dataset goes and so catalogue/SMS work is 
bypassed/abbreviated.  (I think I found the descriptive text in the 
JCL reference manual discussion DISP=OLD/MOD vs. VOL=)  I suspect 
your LocSite values (volume=) builds the same kind of information 
and, hence, the missing volume problem.  By placing the volSer in the 
Dummy SG, it signals that the volume is SMS managed and the ACS 
routines are invoked where you can deal with the over-rides.

Before we went to SMS-managed as the default, I kept a FiltList of 
obsolete volumes ie. PROD*, to make my ACS routines more manageable.  
Now I keep a FiltList of NON-managed volumes so the users (ie. my 
senior) don't have to specify StorClas=NonSms in their JCL.

Hope this helps.  ciao.

-->  signature = 6 lines follows <--
Neil Duffee, Joe SysProg, U d'Ottawa, Ottawa, Ont, Canada
telephone:1 613 562 5800 x4585 fax:1 613 562 5161
mailto:NDuffee of uOttawa.ca http:/ /aix1.uottawa.ca/ ~nduffee
"How *do* you plan for something like that?" Guardian Bob, Reboot
"For every action, there is an equal and opposite criticism."
"Systems Programming: Guilty, until proven innocent" John Norgauer 
2004

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: FTP and SMS (and DYNALLOC)

2009-05-26 Thread Lester, Bob
> -Original Message-
> From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
> Behalf Of Gibney, Dave
> Sent: Saturday, May 23, 2009 9:41 PM
> To: IBM-MAIN@bama.ua.edu
> Subject: Re: FTP and SMS (and DYNALLOC)
> 
> 
>   I just read that in detail again. The automount lead me to
> consider if
> you're really in the HFS file system when you di the get. Try a
> "whatever the print local directory command is after the locsite and
> before the get.
> 

Hi Dave,

   Nope, checked that too.  LPWD shows 'TSMAINT' which is the ID I'm
using.  For now, I've just clipped a volume with that VOLSER and all is
good.  

Thanks!
BobL

--
This e-mail transmission may contain information that is proprietary, 
privileged and/or confidential and is intended exclusively for the person(s) to 
whom it is addressed. Any use, copying, retention or disclosure by any person 
other than the intended recipient or the intended recipient's designees is 
strictly prohibited. If you are not the intended recipient or their designee, 
please notify the sender immediately by return e-mail and delete all copies. 
OppenheimerFunds may, at its sole discretion, monitor, review, retain and/or 
disclose the content of all email communications. 
==

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: FTP and SMS (and DYNALLOC)

2009-05-26 Thread Dave Quinton
Don't know if this means anything, but DFP Storage Administration Reference
documents this:


&ALLVOL The volume serial numbers specified for data set allocations when
&ACSENVIR is not recall or recover.

&ANYVOL The volume serial numbers explicitly specified for the volumes if
&ACSENVIR is not recall or recover


Note the addition of the word "explicitly"

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html--- Begin Message ---
Hi Dave,

   Data is pulled via ftp in batch to new DSN:
PFDT.TSREL.OPPLZDCK.PULLOUT.SUN, which matches this DC FILTLIST pattern:

   SYST_NEWINCLUDE ( PFDT.** )

   The DC ACS does this:

   WHEN (&ALLVOL NE '' &&
  &DSN = &SYST_NEW ) DO
 SET &DATACLAS= 'DCSTAND'
 EXIT
 END

   The SC ACS does this:

WHEN (&DATACLAS = 'DCSTAND' OR
  &DATACLAS = 'DCSTANDE') DO
  SET &STORCLAS = 'STANDARD'
  EXIT
  END

   The STANDARD Storage Class does NOT have the Guaranteed Space
attribute (for the other Dave).

   The SG ACS has the same FILTLIST as the DC ACS.

   The SG ACS does this:

 WHEN(&STORCLAS = 'STANDARD' &&
 &DSN = &SYST_NEW) DO
  SET &STORGRP = 'SYSTEST'
  EXIT
  END

  But it doesn't get there. :-(

Thanks!
BobL



> -Original Message-
> From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
> Behalf Of Gibney, Dave
> Sent: Friday, May 22, 2009 1:58 PM
> To: IBM-MAIN@bama.ua.edu
> Subject: Re: FTP and SMS (and DYNALLOC)
>
> Dataclas won't directly affect volume choice. What do your STORCLAS
> and
> STORGRP routines do with such allocations?
>
> Dave Gibney
> Information Technology Services
> Washington State University
>

--
This e-mail transmission may contain information that is proprietary,
privileged and/or confidential and is intended exclusively for the person(s) to
whom it is addressed. Any use, copying, retention or disclosure by any person
other than the intended recipient or the intended recipient's designees is
strictly prohibited. If you are not the intended recipient or their designee,
please notify the sender immediately by return e-mail and delete all copies.
OppenheimerFunds may, at its sole discretion, monitor, review, retain and/or
disclose the content of all email communications.
==

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html>>>>>>>>>>>>>> HDT Original External RFC822 Hdrs Begin <<<<<<<<<<<<<<
X-Env-Sender: owner-ibm-m...@bama.ua.edu
X-Env-Recipient: david.quin...@nccourts.org
X-End-of-Envelope:
Received: from ??? ([199.120.166.242]) by nccourts.org (FISC HDT v1.3R SMTP 
gateway for Unix System Services)
with SMTP id emailscan.nccourts.org; Fri, 22 May 2009 17:08:54 -0400
Received: from emailscan.nccourts.org (emailscan [127.0.0.1])
by localhost.nccourts.org (Postfix) with ESMTP id 8EEAE2AD841E
for ; Fri, 22 May 2009 17:08:40 -0400 (EDT)
Received: from bama.ua.edu (bama.ua.edu [130.160.4.114])by 
emailscan.nccourts.org (Postfix) with ESMTP id 7B6EF2AD8419for 
; Fri, 22 May 2009 17:08:40 -0400 (EDT)
Received: from bama (localhost [127.0.0.1])by bama.ua.edu 
(8.13.8+Sun/8.13.8) with ESMTP id n4MKIkbg003000;Fri, 22 May 2009 
16:08:38 
-0500 (CDT)
Received: by BAMA.UA.EDU (LISTSERV-TCP/IP release 15.0) with spool id 96887 
for IBM-MAIN@BAMA.UA.EDU; Fri, 22 May 2009 16:08:19 -0500
Received: from mailapp-1.ua.edu (mailapp-1.ua.edu [130.160.4.236]) by   
  bama.ua.edu (8.13.8+Sun/8.13.8) with ESMTP id n4ML8H0q000415 for  
   
; Fri, 22 May 2009 16:08:18 -0500 (CDT)
X-RemoteIP: 208.203.94.79
X-Group: ACCEPTLIST
X-Policy: $ACCEPTED
X-MID: 49163342
X-SBRS: 5.3
X-IronPort-Anti-Spam-Filtered: true
X-IronPort-Anti-Spam-Result: AiECAFCxFkrQy15PmWdsb2JhbACXYQEBAQEBCAsKBxFFul+
CQoFJBYcQgSg
X-IronPort-AV: E=Sophos;i="4.41,235,1241413200"; d="scan'

Re: FTP and SMS (and DYNALLOC)

2009-05-23 Thread Gibney, Dave
  I just read that in detail again. The automount lead me to consider if
you're really in the HFS file system when you di the get. Try a
"whatever the print local directory command is after the locsite and
before the get.

> -Original Message-
> From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
> Behalf Of Lester, Bob
> Sent: Saturday, May 23, 2009 7:43 PM
> To: IBM-MAIN@bama.ua.edu
> Subject: Re: FTP and SMS (and DYNALLOC)
> 
> > -Original Message-
> > From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
> > Behalf Of Ted MacNEIL
> > Sent: Saturday, May 23, 2009 7:34 PM
> > To: IBM-MAIN@bama.ua.edu
> > Subject: Re: FTP and SMS (and DYNALLOC)
> >
> > >No joy, I'm afraid.  Set it up as documented, but get the same
> > error.
> > >I think I'm getting bit by this statement in the doc.
> >
> > I haven't really been following this thread, so please forgive me as
> > I ask for clarification.
> >
> > Are you saying that if an FTP outfile is allocated, under z/OS, that
> > DFSMS does not intercede?
> > -
> 
> Hi Ted,
> 
>More or less, I guess.  FTP client on z/OS 1.9, pulling data from a
> squatty box.  Relevant parms are:
> 
>LOCSITE UNIT=SYSDA VOL=SYST01
> 
>Get whatever.distributed.file 'PFDT.TSREL.OPPLZDCK.PULLOUT.SUN'
> 
>SYST01 doesn't exist, but my SMS ACS routines point PFDT.** to a
> particular SG.  The get fails with:
> 
>PFDT.TSREL.OPPLZDCK.PULLOUT.SUN is on a direct access volume that
is
> not mounted and Noautomount is specified.
> Std Return Code = 16000, Error Code = 00018
> 
>Putting SYST01 in a DUMMY SG doesn't work, same error.  Doc sort of
> implies that it won't work.
> 
>I clipped a volume to SYST01 and it works fine.
> 
>I was trying to get this to work without changing the ftp client
> control cards.
> 
> Thanks!
> BobL
> 
> 
>

--
> 
> This e-mail transmission may contain information that is proprietary,
> privileged and/or confidential and is intended exclusively for the
> person(s) to whom it is addressed. Any use, copying, retention or
> disclosure by any person other than the intended recipient or the
intended
> recipient's designees is strictly prohibited. If you are not the
intended
> recipient or their designee, please notify the sender immediately by
> return e-mail and delete all copies. OppenheimerFunds may, at its sole
> discretion, monitor, review, retain and/or disclose the content of all
> email communications.
>

==
> 
> 
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
> Search the archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: FTP and SMS (and DYNALLOC)

2009-05-23 Thread Lester, Bob
> -Original Message-
> From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
> Behalf Of Ted MacNEIL
> Sent: Saturday, May 23, 2009 7:34 PM
> To: IBM-MAIN@bama.ua.edu
> Subject: Re: FTP and SMS (and DYNALLOC)
> 
> >No joy, I'm afraid.  Set it up as documented, but get the same
> error.
> >I think I'm getting bit by this statement in the doc.
> 
> I haven't really been following this thread, so please forgive me as
> I ask for clarification.
> 
> Are you saying that if an FTP outfile is allocated, under z/OS, that
> DFSMS does not intercede?
> -

Hi Ted,

   More or less, I guess.  FTP client on z/OS 1.9, pulling data from a
squatty box.  Relevant parms are:

   LOCSITE UNIT=SYSDA VOL=SYST01

   Get whatever.distributed.file 'PFDT.TSREL.OPPLZDCK.PULLOUT.SUN'

   SYST01 doesn't exist, but my SMS ACS routines point PFDT.** to a
particular SG.  The get fails with:

   PFDT.TSREL.OPPLZDCK.PULLOUT.SUN is on a direct access volume that is
not mounted and Noautomount is specified. 
Std Return Code = 16000, Error Code = 00018

   Putting SYST01 in a DUMMY SG doesn't work, same error.  Doc sort of
implies that it won't work.

   I clipped a volume to SYST01 and it works fine.  

   I was trying to get this to work without changing the ftp client
control cards.

Thanks!
BobL


--
This e-mail transmission may contain information that is proprietary, 
privileged and/or confidential and is intended exclusively for the person(s) to 
whom it is addressed. Any use, copying, retention or disclosure by any person 
other than the intended recipient or the intended recipient's designees is 
strictly prohibited. If you are not the intended recipient or their designee, 
please notify the sender immediately by return e-mail and delete all copies. 
OppenheimerFunds may, at its sole discretion, monitor, review, retain and/or 
disclose the content of all email communications. 
==

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: FTP and SMS (and DYNALLOC)

2009-05-23 Thread Ted MacNEIL
>No joy, I'm afraid.  Set it up as documented, but get the same error.
>I think I'm getting bit by this statement in the doc.

I haven't really been following this thread, so please forgive me as I ask for 
clarification.

Are you saying that if an FTP outfile is allocated, under z/OS, that DFSMS does 
not intercede?
-
Too busy driving to stop for gas!

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: FTP and SMS (and DYNALLOC)

2009-05-23 Thread Lester, Bob
Hi Greg,

   No joy, I'm afraid.  Set it up as documented, but get the same error.
I think I'm getting bit by this statement in the doc.

---snip---

Volumes in dummy storage groups cannot be used when performing
volume allocations. For example, the following DD statement,  
where DUMMY1 is a volume in a dummy storage group, does not   
work: 
  
   //DD1  DD VOL=SER=DUMMY1,UNIT=SYSDA,DISP=SHR   

---snip---

   It appears that this applies to LOCSITE VOL= in the FTP client as
well.

Thanks!
BobL
 
> -Original Message-
> From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
> Behalf Of Greg Shirey
> Sent: Friday, May 22, 2009 3:53 PM
> To: IBM-MAIN@bama.ua.edu
> Subject: Re: FTP and SMS (and DYNALLOC)
> 
> I believe this is one the situations where a dummy storage group
> would
> be useful.  I couldn't find an example in the Implementing
> System-Managed Storage manual, but found the definition:
> 
> A type of storage group that contains the serial numbers of volumes
> no
> longer connected to a system. Dummy storage groups allow existing
> JCL to
> function without having to be changed.
> 
> HTH,
> Greg
> 
> 

--
This e-mail transmission may contain information that is proprietary, 
privileged and/or confidential and is intended exclusively for the person(s) to 
whom it is addressed. Any use, copying, retention or disclosure by any person 
other than the intended recipient or the intended recipient's designees is 
strictly prohibited. If you are not the intended recipient or their designee, 
please notify the sender immediately by return e-mail and delete all copies. 
OppenheimerFunds may, at its sole discretion, monitor, review, retain and/or 
disclose the content of all email communications. 
==

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: FTP and SMS (and DYNALLOC)

2009-05-22 Thread Lester, Bob
Hi Greg,

  I found the doc:  DFSMSdfp Storage admin. reference.  Might do the
trick.  Thanks for the tip.

Thanks!
BobL

> -Original Message-
> From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
> Behalf Of Greg Shirey
> Sent: Friday, May 22, 2009 3:53 PM
> To: IBM-MAIN@bama.ua.edu
> Subject: Re: FTP and SMS (and DYNALLOC)
> 
> I believe this is one the situations where a dummy storage group
> would
> be useful.  I couldn't find an example in the Implementing
> System-Managed Storage manual, but found the definition:
> 
> A type of storage group that contains the serial numbers of volumes
> no
> longer connected to a system. Dummy storage groups allow existing
> JCL to
> function without having to be changed.
> 
> HTH,
> Greg
> 
> 
> -Original Message-
> From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
> Behalf Of Lester, Bob
> Sent: Friday, May 22, 2009 4:45 PM
> To: IBM-MAIN@bama.ua.edu
> Subject: Re: FTP and SMS (and DYNALLOC)
> 
> Hi Dave,
> 
>Well, that makes me feel somewhat better.  I'll keep looking, and
> thanks for the suggestions.
> 
> BobL
> 
> 
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@bama.ua.edu with the message: GET IBM-MAIN
> INFO
> Search the archives at http://bama.ua.edu/archives/ibm-main.html


--
This e-mail transmission may contain information that is proprietary, 
privileged and/or confidential and is intended exclusively for the person(s) to 
whom it is addressed. Any use, copying, retention or disclosure by any person 
other than the intended recipient or the intended recipient's designees is 
strictly prohibited. If you are not the intended recipient or their designee, 
please notify the sender immediately by return e-mail and delete all copies. 
OppenheimerFunds may, at its sole discretion, monitor, review, retain and/or 
disclose the content of all email communications. 
==

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: FTP and SMS (and DYNALLOC)

2009-05-22 Thread Greg Shirey
I believe this is one the situations where a dummy storage group would
be useful.  I couldn't find an example in the Implementing
System-Managed Storage manual, but found the definition:  

A type of storage group that contains the serial numbers of volumes no
longer connected to a system. Dummy storage groups allow existing JCL to
function without having to be changed. 

HTH,
Greg 
 

-Original Message-
From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
Behalf Of Lester, Bob
Sent: Friday, May 22, 2009 4:45 PM
To: IBM-MAIN@bama.ua.edu
Subject: Re: FTP and SMS (and DYNALLOC)

Hi Dave,

   Well, that makes me feel somewhat better.  I'll keep looking, and
thanks for the suggestions.

BobL

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: FTP and SMS (and DYNALLOC)

2009-05-22 Thread Lester, Bob
Hi Dave,

   Well, that makes me feel somewhat better.  I'll keep looking, and
thanks for the suggestions.

BobL

> -Original Message-
> From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
> Behalf Of Gibney, Dave
> Sent: Friday, May 22, 2009 3:17 PM
> To: IBM-MAIN@bama.ua.edu
> Subject: Re: FTP and SMS (and DYNALLOC)
> 
> 
>   My best guess is that there is a condition earlier in one or more
> of
> the routines that is satisfied first.
> I decided I wanted to know what my routines were doing. On entry, I
> write out a routine identifier and the more important read only
> variables. I also (when testing) have a specific write for each exit
> point.
> 
> I suggest you do something similar. What you shown so far looks like
> it
> should work :(
> 
> Dave Gibney
> Information Technology Services
> Washington State University
> 

--
This e-mail transmission may contain information that is proprietary, 
privileged and/or confidential and is intended exclusively for the person(s) to 
whom it is addressed. Any use, copying, retention or disclosure by any person 
other than the intended recipient or the intended recipient's designees is 
strictly prohibited. If you are not the intended recipient or their designee, 
please notify the sender immediately by return e-mail and delete all copies. 
OppenheimerFunds may, at its sole discretion, monitor, review, retain and/or 
disclose the content of all email communications. 
==

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: FTP and SMS (and DYNALLOC)

2009-05-22 Thread Gibney, Dave
  My best guess is that there is a condition earlier in one or more of
the routines that is satisfied first.
I decided I wanted to know what my routines were doing. On entry, I
write out a routine identifier and the more important read only
variables. I also (when testing) have a specific write for each exit
point.

I suggest you do something similar. What you shown so far looks like it
should work :(

Dave Gibney
Information Technology Services
Washington State University


> -Original Message-
> From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
> Behalf Of Lester, Bob
> Sent: Friday, May 22, 2009 2:08 PM
> To: IBM-MAIN@bama.ua.edu
> Subject: Re: FTP and SMS (and DYNALLOC)
> 
> Hi Dave,
> 
>Data is pulled via ftp in batch to new DSN:
> PFDT.TSREL.OPPLZDCK.PULLOUT.SUN, which matches this DC FILTLIST
> pattern:
> 
>SYST_NEWINCLUDE ( PFDT.** )
> 
>The DC ACS does this:
> 
>WHEN (&ALLVOL NE '' &&
>   &DSN = &SYST_NEW ) DO
>  SET &DATACLAS= 'DCSTAND'
>  EXIT
>  END
> 
>The SC ACS does this:
> 
> WHEN (&DATACLAS = 'DCSTAND' OR
>   &DATACLAS = 'DCSTANDE') DO
>   SET &STORCLAS = 'STANDARD'
>   EXIT
>   END
> 
>The STANDARD Storage Class does NOT have the Guaranteed Space
> attribute (for the other Dave).
> 
>The SG ACS has the same FILTLIST as the DC ACS.
> 
>The SG ACS does this:
> 
>  WHEN(&STORCLAS = 'STANDARD' &&
>  &DSN = &SYST_NEW) DO
>   SET &STORGRP = 'SYSTEST'
>   EXIT
>   END
> 
>   But it doesn't get there. :-(
> 
> Thanks!
> BobL
> 
> 
> 
> > -Original Message-
> > From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
> > Behalf Of Gibney, Dave
> > Sent: Friday, May 22, 2009 1:58 PM
> > To: IBM-MAIN@bama.ua.edu
> > Subject: Re: FTP and SMS (and DYNALLOC)
> >
> > Dataclas won't directly affect volume choice. What do your STORCLAS
> > and
> > STORGRP routines do with such allocations?
> >
> > Dave Gibney
> > Information Technology Services
> > Washington State University
> >
> 
>
---
> ---
> This e-mail transmission may contain information that is proprietary,
> privileged and/or confidential and is intended exclusively for the
> person(s) to whom it is addressed. Any use, copying, retention or
> disclosure by any person other than the intended recipient or the
> intended recipient's designees is strictly prohibited. If you are not
> the intended recipient or their designee, please notify the sender
> immediately by return e-mail and delete all copies. OppenheimerFunds
> may, at its sole discretion, monitor, review, retain and/or disclose
> the content of all email communications.
>
===
> ===
> 
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
> Search the archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: FTP and SMS (and DYNALLOC)

2009-05-22 Thread Lester, Bob
Hi Dave,

   Data is pulled via ftp in batch to new DSN:
PFDT.TSREL.OPPLZDCK.PULLOUT.SUN, which matches this DC FILTLIST pattern:

   SYST_NEWINCLUDE ( PFDT.** )

   The DC ACS does this: 

   WHEN (&ALLVOL NE '' && 
  &DSN = &SYST_NEW ) DO
 SET &DATACLAS= 'DCSTAND'  
 EXIT  
 END   

   The SC ACS does this:

WHEN (&DATACLAS = 'DCSTAND' OR   
  &DATACLAS = 'DCSTANDE') DO 
  SET &STORCLAS = 'STANDARD' 
  EXIT   
  END

   The STANDARD Storage Class does NOT have the Guaranteed Space
attribute (for the other Dave).

   The SG ACS has the same FILTLIST as the DC ACS.

   The SG ACS does this:

 WHEN(&STORCLAS = 'STANDARD' &&
 &DSN = &SYST_NEW) DO 
  SET &STORGRP = 'SYSTEST'
  EXIT
  END   

  But it doesn't get there. :-(

Thanks!
BobL  

   

> -Original Message-
> From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
> Behalf Of Gibney, Dave
> Sent: Friday, May 22, 2009 1:58 PM
> To: IBM-MAIN@bama.ua.edu
> Subject: Re: FTP and SMS (and DYNALLOC)
> 
> Dataclas won't directly affect volume choice. What do your STORCLAS
> and
> STORGRP routines do with such allocations?
> 
> Dave Gibney
> Information Technology Services
> Washington State University
> 

--
This e-mail transmission may contain information that is proprietary, 
privileged and/or confidential and is intended exclusively for the person(s) to 
whom it is addressed. Any use, copying, retention or disclosure by any person 
other than the intended recipient or the intended recipient's designees is 
strictly prohibited. If you are not the intended recipient or their designee, 
please notify the sender immediately by return e-mail and delete all copies. 
OppenheimerFunds may, at its sole discretion, monitor, review, retain and/or 
disclose the content of all email communications. 
==

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: FTP and SMS (and DYNALLOC)

2009-05-22 Thread Lester, Bob
Hi Dennis,

   Ah, there's the rub you see. :-)

   I'm trying to do this without changing existing control cards.

Thanks!
BobL

> -Original Message-
> From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
> Behalf Of Roach, Dennis (N-GHG)
> Sent: Friday, May 22, 2009 1:55 PM
> To: IBM-MAIN@bama.ua.edu
> Subject: Re: FTP and SMS (and DYNALLOC)
> 
> Since you are relying on SMS to select the volume, take it out of
> the
> locsite statement.
> 

--
This e-mail transmission may contain information that is proprietary, 
privileged and/or confidential and is intended exclusively for the person(s) to 
whom it is addressed. Any use, copying, retention or disclosure by any person 
other than the intended recipient or the intended recipient's designees is 
strictly prohibited. If you are not the intended recipient or their designee, 
please notify the sender immediately by return e-mail and delete all copies. 
OppenheimerFunds may, at its sole discretion, monitor, review, retain and/or 
disclose the content of all email communications. 
==

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: FTP and SMS (and DYNALLOC)

2009-05-22 Thread Dave Quinton
I reproduced your test, and the FTP went fine for me.

Do you have Guaranteed Space for storage class STANDARD?  If so, that could be
your problem, as Guaranteed Space
doesn't ignore volser.  When I changed the storage class to guaranteed space,
the FTP failed.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html--- Begin Message ---
Hi Dennis,

   Nope, I checked that.  It appears that the volume specified on the
LOCSITE VOL= parameter must exist?  It can't be redirected?  Can you
confirm?   (Or am I doing something stupid?).

   Thanks for the reply.

Thanks!
BobL

> -Original Message-
> From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
> Behalf Of Roach, Dennis (N-GHG)
> Sent: Friday, May 22, 2009 1:43 PM
> To: IBM-MAIN@bama.ua.edu
> Subject: Re: FTP and SMS (and DYNALLOC)
>
> Does a catalog entry for PFDT.TSREL.OPPLZDCK.PULLOUT.SUN already
> exist
> for SYST01?
>
> Dennis Roach
> GHG Corporation


--
This e-mail transmission may contain information that is proprietary,
privileged and/or confidential and is intended exclusively for the person(s) to
whom it is addressed. Any use, copying, retention or disclosure by any person
other than the intended recipient or the intended recipient's designees is
strictly prohibited. If you are not the intended recipient or their designee,
please notify the sender immediately by return e-mail and delete all copies.
OppenheimerFunds may, at its sole discretion, monitor, review, retain and/or
disclose the content of all email communications.
==

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html>>>>>>>>>>>>>> HDT Original External RFC822 Hdrs Begin <<<<<<<<<<<<<<
X-Env-Sender: owner-ibm-m...@bama.ua.edu
X-Env-Recipient: david.quin...@nccourts.org
X-End-of-Envelope:
Received: from ??? ([199.120.166.242]) by nccourts.org (FISC HDT v1.3R SMTP 
gateway for Unix System Services)
with SMTP id emailscan.nccourts.org; Fri, 22 May 2009 15:50:10 -0400
Received: from emailscan.nccourts.org (emailscan [127.0.0.1])
by localhost.nccourts.org (Postfix) with ESMTP id B0FA62AD8129
for ; Fri, 22 May 2009 15:49:56 -0400 (EDT)
Received: from bama.ua.edu (bama.ua.edu [130.160.4.114])by 
emailscan.nccourts.org (Postfix) with ESMTP id 8D8172AD811Bfor 
; Fri, 22 May 2009 15:49:56 -0400 (EDT)
Received: from bama (localhost [127.0.0.1])by bama.ua.edu 
(8.13.8+Sun/8.13.8) with ESMTP id n4MJeR5K003000;Fri, 22 May 2009 
14:49:53 
-0500 (CDT)
Received: by BAMA.UA.EDU (LISTSERV-TCP/IP release 15.0) with spool id 93322 
for IBM-MAIN@BAMA.UA.EDU; Fri, 22 May 2009 14:49:28 -0500
Received: from mailapp-2.ua.edu (mailapp-2.ua.edu [130.160.4.237]) by   
  bama.ua.edu (8.13.8+Sun/8.13.8) with ESMTP id n4MJnRU6013745 for  
   
; Fri, 22 May 2009 14:49:28 -0500 (CDT)
X-RemoteIP: 208.203.94.79
X-Group: ACCEPTLIST
X-Policy: $ACCEPTED
X-MID: 47610202
X-SBRS: 5.3
X-IronPort-Anti-Spam-Filtered: true
X-IronPort-Anti-Spam-Result: Ah0CABieFkrQy15PmWdsb2JhbACXYQEBAQEBCAsKBxG7MYQ
LBYg4
X-IronPort-AV: E=Sophos;i="4.41,234,1241413200"; d="scan'208";a="47610202"
Received: from mailgate3.oppenheimerfunds.com ([208.203.94.79]) by 
mailapp-2.ua.edu with ESMTP; 22 May 2009 14:49:28 -0500
X-WSS-ID: 0KK29QJ-08-1W8-01
Received: from den-mailsecure.den.ofi.com (den-mailsecure.den.ofi.com   
  [172.17.35.17]) by mailgate3.oppenheimerfunds.com (Tumbleweed 
MailGate 3.5.1) with ESMTP id 2189A1A8FC46 for 
; Fri, 22 May 2009 13:49:31 -0600 (MDT)
Received: from [172.17.37.163] by den-mailsecure.den.ofi.com with ESMTP 
(SMTP Relay (Email Firewall v6.3.1)); Fri, 22 May 2009 13:49:21 
-0600
X-Server-Uuid: F441211E-CA68-48D7-921F-47715A51A5EB
X-MimeOLE: Produced By Microsoft Exchange V6.5
Content-class: urn:content-classes:message
MIME-Version: 1.0
X-MS-Has-Attach: 
X-MS-TNEF-Correlator: 
Thread-Topic: FTP and S

Re: FTP and SMS (and DYNALLOC)

2009-05-22 Thread Gibney, Dave
Dataclas won't directly affect volume choice. What do your STORCLAS and
STORGRP routines do with such allocations?

Dave Gibney
Information Technology Services
Washington State University


> -Original Message-
> From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
> Behalf Of Lester, Bob
> Sent: Friday, May 22, 2009 12:49 PM
> To: IBM-MAIN@bama.ua.edu
> Subject: Re: FTP and SMS (and DYNALLOC)
> 
> Hi Dennis,
> 
>Nope, I checked that.  It appears that the volume specified on the
> LOCSITE VOL= parameter must exist?  It can't be redirected?  Can you
> confirm?   (Or am I doing something stupid?).
> 
>Thanks for the reply.
> 
> Thanks!
> BobL
> 
> > -Original Message-
> > From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
> > Behalf Of Roach, Dennis (N-GHG)
> > Sent: Friday, May 22, 2009 1:43 PM
> > To: IBM-MAIN@bama.ua.edu
> > Subject: Re: FTP and SMS (and DYNALLOC)
> >
> > Does a catalog entry for PFDT.TSREL.OPPLZDCK.PULLOUT.SUN already
> > exist
> > for SYST01?
> >
> > Dennis Roach
> > GHG Corporation
> 
> 
>
---
> ---
> This e-mail transmission may contain information that is proprietary,
> privileged and/or confidential and is intended exclusively for the
> person(s) to whom it is addressed. Any use, copying, retention or
> disclosure by any person other than the intended recipient or the
> intended recipient's designees is strictly prohibited. If you are not
> the intended recipient or their designee, please notify the sender
> immediately by return e-mail and delete all copies. OppenheimerFunds
> may, at its sole discretion, monitor, review, retain and/or disclose
> the content of all email communications.
>
===
> ===
> 
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
> Search the archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: FTP and SMS (and DYNALLOC)

2009-05-22 Thread Roach, Dennis (N-GHG)
Since you are relying on SMS to select the volume, take it out of the
locsite statement.

Dennis Roach
GHG Corporation
Lockheed Martin Mission Services
Flight Design and Operations Contract
NASA/JSC
Address:
   2100 Space Park Drive 
   LM-15-4BH
   Houston, Texas 77058
Mail:
   P.O. Box 58487
   Mail Code H4C
   Houston, Texas 77258
Phone:
   Voice:  (281)336-5027
   Cell:   (713)591-1059
   Fax:(281)336-5410
E-Mail:  dennis.ro...@lmco.com

All opinions expressed by me are mine and may not agree with my employer
or any person, company, or thing, living or dead, on or near this or any
other planet, moon, asteroid, or other spatial object, natural or
manufactured, since the beginning of time.


> -Original Message-
> From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
> Behalf Of Lester, Bob
> Sent: Friday, May 22, 2009 2:49 PM
> To: IBM-MAIN@bama.ua.edu
> Subject: Re: FTP and SMS (and DYNALLOC)
> 
> Hi Dennis,
> 
>Nope, I checked that.  It appears that the volume specified on the
> LOCSITE VOL= parameter must exist?  It can't be redirected?  Can you
> confirm?   (Or am I doing something stupid?).
> 
>Thanks for the reply.
> 
> Thanks!
> BobL
> 
> > -Original Message-
> > From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
> > Behalf Of Roach, Dennis (N-GHG)
> > Sent: Friday, May 22, 2009 1:43 PM
> > To: IBM-MAIN@bama.ua.edu
> > Subject: Re: FTP and SMS (and DYNALLOC)
> >
> > Does a catalog entry for PFDT.TSREL.OPPLZDCK.PULLOUT.SUN already
> > exist
> > for SYST01?
> >
> > Dennis Roach
> > GHG Corporation
> 
> 
>
---
> ---
> This e-mail transmission may contain information that is proprietary,
> privileged and/or confidential and is intended exclusively for the
> person(s) to whom it is addressed. Any use, copying, retention or
> disclosure by any person other than the intended recipient or the
> intended recipient's designees is strictly prohibited. If you are not
> the intended recipient or their designee, please notify the sender
> immediately by return e-mail and delete all copies. OppenheimerFunds
> may, at its sole discretion, monitor, review, retain and/or disclose
> the content of all email communications.
>
===
> ===
> 
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
> Search the archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: FTP and SMS (and DYNALLOC)

2009-05-22 Thread Lester, Bob
Hi Dennis,

   Nope, I checked that.  It appears that the volume specified on the
LOCSITE VOL= parameter must exist?  It can't be redirected?  Can you
confirm?   (Or am I doing something stupid?).

   Thanks for the reply.

Thanks!
BobL

> -Original Message-
> From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
> Behalf Of Roach, Dennis (N-GHG)
> Sent: Friday, May 22, 2009 1:43 PM
> To: IBM-MAIN@bama.ua.edu
> Subject: Re: FTP and SMS (and DYNALLOC)
> 
> Does a catalog entry for PFDT.TSREL.OPPLZDCK.PULLOUT.SUN already
> exist
> for SYST01?
> 
> Dennis Roach
> GHG Corporation


--
This e-mail transmission may contain information that is proprietary, 
privileged and/or confidential and is intended exclusively for the person(s) to 
whom it is addressed. Any use, copying, retention or disclosure by any person 
other than the intended recipient or the intended recipient's designees is 
strictly prohibited. If you are not the intended recipient or their designee, 
please notify the sender immediately by return e-mail and delete all copies. 
OppenheimerFunds may, at its sole discretion, monitor, review, retain and/or 
disclose the content of all email communications. 
==

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: FTP and SMS (and DYNALLOC)

2009-05-22 Thread Roach, Dennis (N-GHG)
Does a catalog entry for PFDT.TSREL.OPPLZDCK.PULLOUT.SUN already exist
for SYST01? 

Dennis Roach
GHG Corporation
Lockheed Martin Mission Services
Flight Design and Operations Contract
NASA/JSC
Address:
   2100 Space Park Drive 
   LM-15-4BH
   Houston, Texas 77058
Mail:
   P.O. Box 58487
   Mail Code H4C
   Houston, Texas 77258
Phone:
   Voice:  (281)336-5027
   Cell:   (713)591-1059
   Fax:(281)336-5410
E-Mail:  dennis.ro...@lmco.com

All opinions expressed by me are mine and may not agree with my employer
or any person, company, or thing, living or dead, on or near this or any
other planet, moon, asteroid, or other spatial object, natural or
manufactured, since the beginning of time.


> -Original Message-
> From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
> Behalf Of Lester, Bob
> Sent: Friday, May 22, 2009 2:33 PM
> To: IBM-MAIN@bama.ua.edu
> Subject: FTP and SMS (and DYNALLOC)
> 
> Hi Folks,
> 
> 
> 
>I'm in the middle of an SMS conversion at z/OS 1.9.
> 
> 
> 
>We have an ftp batch job that reaches down to a squatty box and
> pulls
> some data.
> 
> 
> 
>The LOCSITE parms are:
> 
> 
> 
>LOCSITE LRECL=8996 BLKSIZE=9000 RECFM=VBA +
> 
>unit=sysda volume=SYST01 cyl pri=20 sec=30
> 
> 
> 
>Volume SYST01 does not exist anymore (it was replaced with an SMS
> pool of volumes) and the job fails with this:
> 
> 
> 
>EZA2322I PFDT.TSREL.OPPLZDCK.PULLOUT.SUN is on a direct access
> volume
> that is not mounted and Noautomount is specified.
> 
> 
> 
>I have code in my Data Class ACS like this:
> 
> 
> 
>WHEN (&PGM = 'FTP') DO
> 
> SET DATACLAS = 'DCSTAND'
> 
> EXIT
> 
> END
> 
> 
> 
> I do not have DATACLAS/STORCLAS/MGMTCLAS specified in my FTCDATA.
> 
> 
> 
>What am I missing?  Why doesn't the file get the Data Class?
> (DCSTAND points to SC STANDARD, The Storage Group should be set by DSN
> (in this case PFDT.**).
> 
> 
> 
>Any pointers are appreciated.  I've read the FM, but I'm not seeing
> it.
> 
> 
> 
> Thanks!
> BobL
> 
> 
> 
> Bob Lester
> Systems & Storage
> Oppenheimerfunds
> 303.768.3504
> bles...@oppenheimerfunds.com
> 
> 
> 
> 
>
---
> ---
> This e-mail transmission may contain information that is proprietary,
> privileged and/or confidential and is intended exclusively for the
> person(s) to whom it is addressed. Any use, copying, retention or
> disclosure by any person other than the intended recipient or the
> intended recipient's designees is strictly prohibited. If you are not
> the intended recipient or their designee, please notify the sender
> immediately by return e-mail and delete all copies. OppenheimerFunds
> may, at its sole discretion, monitor, review, retain and/or disclose
> the content of all email communications.
>
===
> ===
> 
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
> Search the archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


FTP and SMS (and DYNALLOC)

2009-05-22 Thread Lester, Bob
Hi Folks,

 

   I'm in the middle of an SMS conversion at z/OS 1.9.

 

   We have an ftp batch job that reaches down to a squatty box and pulls
some data.

 

   The LOCSITE parms are:  

 

   LOCSITE LRECL=8996 BLKSIZE=9000 RECFM=VBA +

   unit=sysda volume=SYST01 cyl pri=20 sec=30 

 

   Volume SYST01 does not exist anymore (it was replaced with an SMS
pool of volumes) and the job fails with this:

 

   EZA2322I PFDT.TSREL.OPPLZDCK.PULLOUT.SUN is on a direct access volume
that is not mounted and Noautomount is specified. 

 

   I have code in my Data Class ACS like this:

 

   WHEN (&PGM = 'FTP') DO

SET DATACLAS = 'DCSTAND'

EXIT

END



I do not have DATACLAS/STORCLAS/MGMTCLAS specified in my FTCDATA.

 

   What am I missing?  Why doesn't the file get the Data Class?
(DCSTAND points to SC STANDARD, The Storage Group should be set by DSN
(in this case PFDT.**).

 

   Any pointers are appreciated.  I've read the FM, but I'm not seeing
it.

 

Thanks!
BobL

   

Bob Lester 
Systems & Storage 
Oppenheimerfunds 
303.768.3504 
bles...@oppenheimerfunds.com 

 


--
This e-mail transmission may contain information that is proprietary, 
privileged and/or confidential and is intended exclusively for the person(s) to 
whom it is addressed. Any use, copying, retention or disclosure by any person 
other than the intended recipient or the intended recipient's designees is 
strictly prohibited. If you are not the intended recipient or their designee, 
please notify the sender immediately by return e-mail and delete all copies. 
OppenheimerFunds may, at its sole discretion, monitor, review, retain and/or 
disclose the content of all email communications. 
==

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html