Re: SMPE Internet Service Retrieval: TRANSFERONLY

2019-03-08 Thread Smith, Sean M
I cannot use FTP, only the SXMPE Internet Service Retrieval.

Sean

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Jesse 1 Robinson
Sent: Monday, March 04, 2019 2:48 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: SMPE Internet Service Retrieval: TRANSFERONLY

If you're just interested in HOLDDATA, try what I do for multiple 
releases/products that I maintain concurrently. 

1. Run a step to pull all available HOLDDATA and store into a single flat file 
or PDS(E) member. You only hit the web once. 
2. Follow this with as many steps as necessary to RECEIVE this HOLDDATA into 
all applicable CSIs.

Example for z/OS 2.3 and GDPS, each with its own GLOBAL zone.   

//FTPGET   EXEC PGM=FTP,REGION=32M, 
// PARM='proxy(exit=8 timeout 720'
//SYSPRINT DD SYSOUT=*,BLKSIZE=133  
//OUTPUT   DD SYSOUT=*,BLKSIZE=133  
//INPUTDD * 
 anonym...@service.boulder.ibm.com userid@URL   ; 
 cd /s390/holddata; 
 get full.txt  'hlq.smpe.ptfs(holddata)' (repl ; 
 quit ; 
//* 
//* 
//ZOSR23   EXEC SMPR23,COND.SMPSTEP=(0,LT,FTPGET)   
//* 
//* 
//SMPHOLD  DD DISP=SHR,DSN=hlq.SMPE.PTFS(HOLDDATA)   
//SYSINDD * 
  SETBOUNDARY(GLOBAL) . 
  RECEIVE HOLDDATA /* LIST */ . 
//* 
//* 
//ZOSGDPS  EXEC SMPEGDPS,COND.SMPSTEP=(0,LT,FTPGET) 
//* 
//* 
//SMPHOLD  DD DISP=SHR,DSN=hlq.SMPE.PTFS(HOLDDATA)   
//SYSINDD * 
  SETBOUNDARY(GLOBAL) . 
  RECEIVE HOLDDATA /* LIST */ . 
...


.
.
J.O.Skip Robinson
Southern California Edison Company
Electric Dragon Team Paddler 
SHARE MVS Program Co-Manager
323-715-0595 Mobile
626-543-6132 Office ⇐=== NEW
robin...@sce.com

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Smith, Sean M
Sent: Monday, March 04, 2019 1:27 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: (External):Re: SMPE Internet Service Retrieval: TRANSFERONLY

We are receiving the HOLDDATA into 22 zones and it takes forever and is prone 
to time outs during the order process.  We are using it to run EXCEPTION SYSMOD 
reports and track the PEs

Sean 


-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Jousma, David
Sent: Monday, March 04, 2019 11:18 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: SMPE Internet Service Retrieval: TRANSFERONLY

So, I've asked this of folks that have had the same request prior to you.   Why 
not just run the SMPE Receive order for all available maintenance, once for 
each global zone you have?   You get the current enhanced holddata, and you get 
all available maintenance.   That way, when Receive order is broken, and you 
need that one PTF, maybe you already have it?  No one says you have to apply 
it, but you have it at  your fingertips when you do need it.

I don't understand the thought process of just getting holddata, or just *some* 
of the PTF's. 

_
Dave Jousma
Mainframe Engineering, Assistant Vice President david.jou...@53.com
1830 East Paris, Grand Rapids, MI  49546 MD RSCB2H p 616.653.8429 f 616.653.2717

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Smith, Sean M
Sent: Monday, March 4, 2019 2:05 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: SMPE Internet Service Retrieval: TRANSFERONLY

**CAUTION EXTERNAL EMAIL**

**DO NOT open attachments or click on links from unknown senders or unexpected 
emails**

We have moved exclusively to SMPE internet service retrieval so FTP is no 
longer an option.

Sean


-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Michael Babcock
Sent: Monday, March 04, 2019 11:03 AM
To: IBM-MAIN

Re: SMPE Internet Service Retrieval: TRANSFERONLY

2019-03-05 Thread Jesse 1 Robinson
"Can you use HTTPS with RECEIVE ORDER?  Or is this FTPS only?"

Although my previous post suggested using FTP to pull the year's-worth HOLDDATA 
file and re-RECEIVE it to all global zones, we employ RECEIVE ORDER to pull 
actual PTF data. We do this with HTTPS because we cannot use FTPS. (Long 
story.) So yes, I can verify that this works. 

.
.
J.O.Skip Robinson
Southern California Edison Company
Electric Dragon Team Paddler 
SHARE MVS Program Co-Manager
323-715-0595 Mobile
626-543-6132 Office ⇐=== NEW
robin...@sce.com


-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Mark Pace
Sent: Tuesday, March 05, 2019 8:24 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: (External):Re: SMPE Internet Service Retrieval: TRANSFERONLY

I'm still using the old way of FTPing the HOLDDATA every week.  And I use HTTPS 
to download maintenance from SHOPZ.

Can you use HTTPS with RECEIVE ORDER?  Or is this FTPS only?

On Tue, Mar 5, 2019 at 9:32 AM Kurt Quackenbush  wrote:

> On 3/4/2019 4:33 PM, Smith, Sean M wrote:
> > "Have you tried the TRANSFERONLY once, followed by RECEIVE FROMNTS 
> > for each CSI?"
> >
> > My job is automated and as such I would need to capture the 
> > execution of the first step to get the order number to dynamically 
> > create the second step with the RECEIVE FROMNTS ORDER(xx)
>
> Sort'a.  You'd have to scrape the output from the RECEIVE ORDER to 
> capture the generated subdirectory name, then do the following for the 
> other global zones:
>
> RECEIVE FROMNTS('ORD1-05March2019-08.57.58')
>
> > Hence my question about redirecting or managing a referback.  The 
> > process makes sense it just doesn't seem to lend itself to any sort 
> > of automation and with 22 GLOBAL CSI's to order and receive into it 
> > is ripe for transmission or wait time outs.
>
> This may be blasphemous, but have you considered using a single, or 
> maybe fewer, global zones?  Maybe even just for your daily receive of 
> the HOLDDATA and running all of your reports.  More global zones are 
> not always necessary or helpful.
>
> Kurt Quackenbush -- IBM, SMP/E Development


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: SMPE Internet Service Retrieval: TRANSFERONLY

2019-03-05 Thread Mark Pace
I'm still using the old way of FTPing the HOLDDATA every week.  And I use
HTTPS to download maintenance from SHOPZ.

Can you use HTTPS with RECEIVE ORDER?  Or is this FTPS only?

On Tue, Mar 5, 2019 at 9:32 AM Kurt Quackenbush  wrote:

> On 3/4/2019 4:33 PM, Smith, Sean M wrote:
> > "Have you tried the TRANSFERONLY once, followed by RECEIVE FROMNTS
> > for each CSI?"
> >
> > My job is automated and as such I would need to capture the execution
> > of the first step to get the order number to dynamically create the
> > second step with the RECEIVE FROMNTS ORDER(xx)
>
> Sort'a.  You'd have to scrape the output from the RECEIVE ORDER to
> capture the generated subdirectory name, then do the following for the
> other global zones:
>
> RECEIVE FROMNTS('ORD1-05March2019-08.57.58')
>
> > Hence my question about redirecting or managing a referback.  The
> > process makes sense it just doesn't seem to lend itself to any sort
> > of automation and with 22 GLOBAL CSI's to order and receive into it
> > is ripe for transmission or wait time outs.
>
> This may be blasphemous, but have you considered using a single, or
> maybe fewer, global zones?  Maybe even just for your daily receive of
> the HOLDDATA and running all of your reports.  More global zones are not
> always necessary or helpful.
>
> Kurt Quackenbush -- IBM, SMP/E Development
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>


-- 
The postings on this site are my own and don’t necessarily represent
Mainline’s positions or opinions

Mark D Pace
Senior Systems Engineer
Mainline Information Systems

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: SMPE Internet Service Retrieval: TRANSFERONLY

2019-03-05 Thread Kurt Quackenbush

On 3/4/2019 4:33 PM, Smith, Sean M wrote:

"Have you tried the TRANSFERONLY once, followed by RECEIVE FROMNTS
for each CSI?"

My job is automated and as such I would need to capture the execution
of the first step to get the order number to dynamically create the
second step with the RECEIVE FROMNTS ORDER(xx)


Sort'a.  You'd have to scrape the output from the RECEIVE ORDER to 
capture the generated subdirectory name, then do the following for the 
other global zones:


RECEIVE FROMNTS('ORD1-05March2019-08.57.58')


Hence my question about redirecting or managing a referback.  The
process makes sense it just doesn't seem to lend itself to any sort
of automation and with 22 GLOBAL CSI's to order and receive into it
is ripe for transmission or wait time outs.


This may be blasphemous, but have you considered using a single, or 
maybe fewer, global zones?  Maybe even just for your daily receive of 
the HOLDDATA and running all of your reports.  More global zones are not 
always necessary or helpful.


Kurt Quackenbush -- IBM, SMP/E Development

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: SMPE Internet Service Retrieval: TRANSFERONLY

2019-03-05 Thread Wayne Bickerdike
Our connections also drop frequently. I just submit a few extra jobs. If
the data has already been shipped the process is smart enough to skip over
that piece.

Or you could have a final step that checks the condition code and submits
the same job again via INTRDR.

Here in slow old Australia, some of my transfers can take > 18 hours.

On Tue, Mar 5, 2019 at 9:50 AM Jesse 1 Robinson 
wrote:

> If you're just interested in HOLDDATA, try what I do for multiple
> releases/products that I maintain concurrently.
>
> 1. Run a step to pull all available HOLDDATA and store into a single flat
> file or PDS(E) member. You only hit the web once.
> 2. Follow this with as many steps as necessary to RECEIVE this HOLDDATA
> into all applicable CSIs.
>
> Example for z/OS 2.3 and GDPS, each with its own GLOBAL zone.
>
> //FTPGET   EXEC PGM=FTP,REGION=32M,
> // PARM='proxy(exit=8 timeout 720'
> //SYSPRINT DD SYSOUT=*,BLKSIZE=133
> //OUTPUT   DD SYSOUT=*,BLKSIZE=133
> //INPUTDD *
>  anonym...@service.boulder.ibm.com userid@URL   ;
>  cd /s390/holddata;
>  get full.txt  'hlq.smpe.ptfs(holddata)' (repl ;
>  quit ;
> //*
> //*
> //ZOSR23   EXEC SMPR23,COND.SMPSTEP=(0,LT,FTPGET)
> //*
> //*
> //SMPHOLD  DD DISP=SHR,DSN=hlq.SMPE.PTFS(HOLDDATA)
> //SYSINDD *
>   SETBOUNDARY(GLOBAL) .
>   RECEIVE HOLDDATA /* LIST */ .
> //*
> //*
> //ZOSGDPS  EXEC SMPEGDPS,COND.SMPSTEP=(0,LT,FTPGET)
> //*
> //*
> //SMPHOLD  DD DISP=SHR,DSN=hlq.SMPE.PTFS(HOLDDATA)
> //SYSINDD *
>   SETBOUNDARY(GLOBAL) .
>   RECEIVE HOLDDATA /* LIST */ .
> ...
>
>
> .
> .
> J.O.Skip Robinson
> Southern California Edison Company
> Electric Dragon Team Paddler
> SHARE MVS Program Co-Manager
> 323-715-0595 Mobile
> 626-543-6132 Office ⇐=== NEW
> robin...@sce.com
>
> -Original Message-
> From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On
> Behalf Of Smith, Sean M
> Sent: Monday, March 04, 2019 1:27 PM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: (External):Re: SMPE Internet Service Retrieval: TRANSFERONLY
>
> We are receiving the HOLDDATA into 22 zones and it takes forever and is
> prone to time outs during the order process.  We are using it to run
> EXCEPTION SYSMOD reports and track the PEs
>
> Sean
>
>
> -Original Message-
> From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On
> Behalf Of Jousma, David
> Sent: Monday, March 04, 2019 11:18 AM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: SMPE Internet Service Retrieval: TRANSFERONLY
>
> So, I've asked this of folks that have had the same request prior to you.
>  Why not just run the SMPE Receive order for all available maintenance,
> once for each global zone you have?   You get the current enhanced
> holddata, and you get all available maintenance.   That way, when Receive
> order is broken, and you need that one PTF, maybe you already have it?  No
> one says you have to apply it, but you have it at  your fingertips when you
> do need it.
>
> I don't understand the thought process of just getting holddata, or just
> *some* of the PTF's.
>
> _
> Dave Jousma
> Mainframe Engineering, Assistant Vice President david.jou...@53.com
> 1830 East Paris, Grand Rapids, MI  49546 MD RSCB2H p 616.653.8429 f
> 616.653.2717
>
> -Original Message-
> From: IBM Mainframe Discussion List  On Behalf
> Of Smith, Sean M
> Sent: Monday, March 4, 2019 2:05 PM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: SMPE Internet Service Retrieval: TRANSFERONLY
>
> **CAUTION EXTERNAL EMAIL**
>
> **DO NOT open attachments or click on links from unknown senders or
> unexpected emails**
>
> We have moved exclusively to SMPE internet service retrieval so FTP is no
> longer an option.
>
> Sean
>
>
> -Original Message-
> From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On
> Behalf Of Michael Babcock
> Sent: Monday, March 04, 2019 11:03 AM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: SMPE Internet Service Retrieval: TRANSFERONLY
>
> I use FTP to get the yearly file into a dataset then run an SMP RECEIVE to
> bring it in.
>
> On Mon, Mar 4, 2019 at 12:57 PM Tom Marchant <
> 000a2a8c2020-dmarc-requ...@listserv.ua.edu> wrote:
>
> > I think that they have made it as easy as humanly possible.
> >
> > I'm pretty sure you just specify the same path for SMPNTS in the
> > second step for the RECEIVE FROMNTS.
> >
> > Have you tried it?
> >

Re: SMPE Internet Service Retrieval: TRANSFERONLY

2019-03-04 Thread Jesse 1 Robinson
If you're just interested in HOLDDATA, try what I do for multiple 
releases/products that I maintain concurrently. 

1. Run a step to pull all available HOLDDATA and store into a single flat file 
or PDS(E) member. You only hit the web once. 
2. Follow this with as many steps as necessary to RECEIVE this HOLDDATA into 
all applicable CSIs.

Example for z/OS 2.3 and GDPS, each with its own GLOBAL zone.   

//FTPGET   EXEC PGM=FTP,REGION=32M, 
// PARM='proxy(exit=8 timeout 720'
//SYSPRINT DD SYSOUT=*,BLKSIZE=133  
//OUTPUT   DD SYSOUT=*,BLKSIZE=133  
//INPUTDD * 
 anonym...@service.boulder.ibm.com userid@URL   ; 
 cd /s390/holddata; 
 get full.txt  'hlq.smpe.ptfs(holddata)' (repl ; 
 quit ; 
//* 
//* 
//ZOSR23   EXEC SMPR23,COND.SMPSTEP=(0,LT,FTPGET)   
//* 
//* 
//SMPHOLD  DD DISP=SHR,DSN=hlq.SMPE.PTFS(HOLDDATA)   
//SYSINDD * 
  SETBOUNDARY(GLOBAL) . 
  RECEIVE HOLDDATA /* LIST */ . 
//* 
//* 
//ZOSGDPS  EXEC SMPEGDPS,COND.SMPSTEP=(0,LT,FTPGET) 
//* 
//* 
//SMPHOLD  DD DISP=SHR,DSN=hlq.SMPE.PTFS(HOLDDATA)   
//SYSINDD * 
  SETBOUNDARY(GLOBAL) . 
  RECEIVE HOLDDATA /* LIST */ . 
...


.
.
J.O.Skip Robinson
Southern California Edison Company
Electric Dragon Team Paddler 
SHARE MVS Program Co-Manager
323-715-0595 Mobile
626-543-6132 Office ⇐=== NEW
robin...@sce.com

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Smith, Sean M
Sent: Monday, March 04, 2019 1:27 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: (External):Re: SMPE Internet Service Retrieval: TRANSFERONLY

We are receiving the HOLDDATA into 22 zones and it takes forever and is prone 
to time outs during the order process.  We are using it to run EXCEPTION SYSMOD 
reports and track the PEs

Sean 


-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Jousma, David
Sent: Monday, March 04, 2019 11:18 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: SMPE Internet Service Retrieval: TRANSFERONLY

So, I've asked this of folks that have had the same request prior to you.   Why 
not just run the SMPE Receive order for all available maintenance, once for 
each global zone you have?   You get the current enhanced holddata, and you get 
all available maintenance.   That way, when Receive order is broken, and you 
need that one PTF, maybe you already have it?  No one says you have to apply 
it, but you have it at  your fingertips when you do need it.

I don't understand the thought process of just getting holddata, or just *some* 
of the PTF's. 

_
Dave Jousma
Mainframe Engineering, Assistant Vice President david.jou...@53.com
1830 East Paris, Grand Rapids, MI  49546 MD RSCB2H p 616.653.8429 f 616.653.2717

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Smith, Sean M
Sent: Monday, March 4, 2019 2:05 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: SMPE Internet Service Retrieval: TRANSFERONLY

**CAUTION EXTERNAL EMAIL**

**DO NOT open attachments or click on links from unknown senders or unexpected 
emails**

We have moved exclusively to SMPE internet service retrieval so FTP is no 
longer an option.

Sean


-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Michael Babcock
Sent: Monday, March 04, 2019 11:03 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: SMPE Internet Service Retrieval: TRANSFERONLY

I use FTP to get the yearly file into a dataset then run an SMP RECEIVE to 
bring it in.

On Mon, Mar 4, 2019 at 12:57 PM Tom Marchant < 
000a2a8c2020-dmarc-requ...@listserv.ua.edu> wrote:

> I think that they have made it as easy as humanly

Re: SMPE Internet Service Retrieval: TRANSFERONLY

2019-03-04 Thread Smith, Sean M
"Have you tried the TRANSFERONLY once, followed by RECEIVE FROMNTS for each 
CSI?"

My job is automated and as such I would need to capture the execution of the 
first step to get the order number to dynamically create the second step with 
the RECEIVE FROMNTS ORDER(xx)

Hence my question about redirecting or managing a referback.  The process makes 
sense it just doesn't seem to lend itself to any sort of automation and with 22 
GLOBAL CSI's to order and receive into it is ripe for transmission or wait time 
outs.

Sean 

On Mon, 4 Mar 2019 19:03:59 +, Smith, Sean M wrote:

>As I recall it required you to enter the ORDER number for that to work.  So to 
>run it as a second step would require that you scrape the report from the 
>first step to get the order number so you can do the receive.
> 
Have you tried the TRANSFERONLY once, followed by RECEIVE FROMNTS for each CSI?
I'd not expect that FROMNTS requires credentials, but I'd never know.  Perhaps 
the
top-level SHA-1?

On Mon, 4 Mar 2019 19:18:24 +, Jousma, David wrote:

>So, I've asked this of folks that have had the same request prior to you.   
>Why not just run the SMPE Receive order for all available maintenance, once 
>for each global zone you have?   You get the current enhanced holddata, and 
>you get all available maintenance.   That way, when Receive order is broken, 
>and you need that one PTF, maybe you already have it?  No one says you have to 
>apply it, but you have it at  your fingertips when you do need it.
>
In the (unlikely) event that bandwidth is a constraint, one might wish to do a 
single
TRANSFERONLY followed bh multiple FROMNTS.

What cleans up SMPNTS?  Don't want to do that too soon.

>I don't understand the thought process of just getting holddata, or just 
>*some* of the PTF's. 

-- gil

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
This message, and any attachments, is for the intended recipient(s) only, may 
contain information that is privileged, confidential and/or proprietary and 
subject to important terms and conditions available at 
http://www.bankofamerica.com/emaildisclaimer.   If you are not the intended 
recipient, please delete this message.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: SMPE Internet Service Retrieval: TRANSFERONLY

2019-03-04 Thread Smith, Sean M
We are receiving the HOLDDATA into 22 zones and it takes forever and is prone 
to time outs during the order process.  We are using it to run EXCEPTION SYSMOD 
reports and track the PEs

Sean 


-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Jousma, David
Sent: Monday, March 04, 2019 11:18 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: SMPE Internet Service Retrieval: TRANSFERONLY

So, I've asked this of folks that have had the same request prior to you.   Why 
not just run the SMPE Receive order for all available maintenance, once for 
each global zone you have?   You get the current enhanced holddata, and you get 
all available maintenance.   That way, when Receive order is broken, and you 
need that one PTF, maybe you already have it?  No one says you have to apply 
it, but you have it at  your fingertips when you do need it.

I don't understand the thought process of just getting holddata, or just *some* 
of the PTF's. 

_
Dave Jousma
Mainframe Engineering, Assistant Vice President
david.jou...@53.com
1830 East Paris, Grand Rapids, MI  49546 MD RSCB2H
p 616.653.8429
f 616.653.2717

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Smith, Sean M
Sent: Monday, March 4, 2019 2:05 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: SMPE Internet Service Retrieval: TRANSFERONLY

**CAUTION EXTERNAL EMAIL**

**DO NOT open attachments or click on links from unknown senders or unexpected 
emails**

We have moved exclusively to SMPE internet service retrieval so FTP is no 
longer an option.

Sean


-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Michael Babcock
Sent: Monday, March 04, 2019 11:03 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: SMPE Internet Service Retrieval: TRANSFERONLY

I use FTP to get the yearly file into a dataset then run an SMP RECEIVE to 
bring it in.

On Mon, Mar 4, 2019 at 12:57 PM Tom Marchant < 
000a2a8c2020-dmarc-requ...@listserv.ua.edu> wrote:

> I think that they have made it as easy as humanly possible.
>
> I'm pretty sure you just specify the same path for SMPNTS in the 
> second step for the RECEIVE FROMNTS.
>
> Have you tried it?
>
> On Mon, 4 Mar 2019 17:30:52 +, Smith, Sean M wrote:
>
> >Right, but then you have to point to the exact file in the exact sub
> directory that is dynamically created...so no way to just run a second 
> step in the job and point to the file that I can see.  Am I missing 
> something obvious or did they make this is hard as humanly possible?
> >
> >Sean
> >
> >-Original Message-
> >From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] 
> >On
> Behalf Of Tom Marchant
> >Sent: Monday, March 04, 2019 9:23 AM
> >To: IBM-MAIN@LISTSERV.UA.EDU
> >Subject: Re: SMPE Internet Service Retrieval: TRANSFERONLY
> >
> >On Mon, 4 Mar 2019 17:07:42 +, Smith, Sean M
> >wrote:
> >
> >>When using the SMPE Internet Service Retrieval to get HOLDDATA, I 
> >>would
> like to use the TRANSFERONLY feature so I can place a single ORDER and 
> then receive the HOLDDATA into my various SMPE environments.  I am not 
> seeing how to control where the HOLDDATA gets transferred however nor 
> how to go about referring to it in a  subsequent job step. This seems 
> like a rudimentary question and I did look through the manuals 
> thinking this has to be pretty simpleand...help!
> >
> >SMPNTS defines where the it is transferred to and/or received from. 
> >It is
> a Unix path.
> >You can then use RECEIVE FROMNTS to receive it into your other global
> zones on that system.
> >
> >--
> >Tom Marchant
> >
> >-
> >- For IBM-MAIN subscribe / signoff / archive access instructions, 
> >send email to lists...@listserv.ua.edu with the message: INFO 
> >IBM-MAIN
> >
> >-
> >- This message, and any attachments, is for the intended recipient(s) 
> >only,
> may contain information that is privileged, confidential and/or 
> proprietary and subject to important terms and conditions available at
> http://www.bankofamerica.com/emaildisclaimer.   If you are not the
> intended recipient, please delete this message.
> >
> >-
> >- For IBM-MAIN subscribe / signoff / archive access instructions, 
> >send email to lists...@listserv.ua.edu with the message: INFO 
> >IBM-MAIN
>
> --
> For

Re: SMPE Internet Service Retrieval: TRANSFERONLY

2019-03-04 Thread Paul Gilmartin
On Mon, 4 Mar 2019 19:03:59 +, Smith, Sean M wrote:

>As I recall it required you to enter the ORDER number for that to work.  So to 
>run it as a second step would require that you scrape the report from the 
>first step to get the order number so you can do the receive.
> 
Have you tried the TRANSFERONLY once, followed by RECEIVE FROMNTS for each CSI?
I'd not expect that FROMNTS requires credentials, but I'd never know.  Perhaps 
the
top-level SHA-1?

On Mon, 4 Mar 2019 19:18:24 +, Jousma, David wrote:

>So, I've asked this of folks that have had the same request prior to you.   
>Why not just run the SMPE Receive order for all available maintenance, once 
>for each global zone you have?   You get the current enhanced holddata, and 
>you get all available maintenance.   That way, when Receive order is broken, 
>and you need that one PTF, maybe you already have it?  No one says you have to 
>apply it, but you have it at  your fingertips when you do need it.
>
In the (unlikely) event that bandwidth is a constraint, one might wish to do a 
single
TRANSFERONLY followed bh multiple FROMNTS.

What cleans up SMPNTS?  Don't want to do that too soon.

>I don't understand the thought process of just getting holddata, or just 
>*some* of the PTF's. 

-- gil

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: SMPE Internet Service Retrieval: TRANSFERONLY

2019-03-04 Thread Jerry Whitteridge
That's exactly what we do - One run daily per Global CSI and I have all the
most current Holddata AND Issued PTF's for the CSI.

Jerry Whitteridge
Delivery Manager / Mainframe Architect
GTS - Safeway Account
602 527 4871 Mobile
jerry.whitteri...@ibm.com

IBM Services

IBM Mainframe Discussion List  wrote on
03/04/2019 12:18:24 PM:

> From: "Jousma, David" <01a0403c5dc1-dmarc-requ...@listserv.ua.edu>
> To: IBM-MAIN@LISTSERV.UA.EDU
> Date: 03/04/2019 12:20 PM
> Subject: Re: SMPE Internet Service Retrieval: TRANSFERONLY
> Sent by: IBM Mainframe Discussion List 
>
> So, I've asked this of folks that have had the same request prior to
> you.   Why not just run the SMPE Receive order for all available
> maintenance, once for each global zone you have?   You get the
> current enhanced holddata, and you get all available maintenance.
> That way, when Receive order is broken, and you need that one PTF,
> maybe you already have it?  No one says you have to apply it, but
> you have it at  your fingertips when you do need it.
>
> I don't understand the thought process of just getting holddata, or
> just *some* of the PTF's.
>
> _
> Dave Jousma
> Mainframe Engineering, Assistant Vice President
> david.jou...@53.com
> 1830 East Paris, Grand Rapids, MI  49546 MD RSCB2H
> p 616.653.8429
> f 616.653.2717
>
> -Original Message-
> From: IBM Mainframe Discussion List  On
> Behalf Of Smith, Sean M
> Sent: Monday, March 4, 2019 2:05 PM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: SMPE Internet Service Retrieval: TRANSFERONLY
>
> **CAUTION EXTERNAL EMAIL**
>
> **DO NOT open attachments or click on links from unknown senders or
> unexpected emails**
>
> We have moved exclusively to SMPE internet service retrieval so FTP
> is no longer an option.
>
> Sean
>
>
> -Original Message-
> From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU
> ] On Behalf Of Michael Babcock
> Sent: Monday, March 04, 2019 11:03 AM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: SMPE Internet Service Retrieval: TRANSFERONLY
>
> I use FTP to get the yearly file into a dataset then run an SMP
> RECEIVE to bring it in.
>
> On Mon, Mar 4, 2019 at 12:57 PM Tom Marchant < 000a2a8c2020-
> dmarc-requ...@listserv.ua.edu> wrote:
>
> > I think that they have made it as easy as humanly possible.
> >
> > I'm pretty sure you just specify the same path for SMPNTS in the
> > second step for the RECEIVE FROMNTS.
> >
> > Have you tried it?
> >
> > On Mon, 4 Mar 2019 17:30:52 +, Smith, Sean M wrote:
> >
> > >Right, but then you have to point to the exact file in the exact sub
> > directory that is dynamically created...so no way to just run a second
> > step in the job and point to the file that I can see.  Am I missing
> > something obvious or did they make this is hard as humanly possible?
> > >
> > >Sean
> > >
> > >-Original Message-
> > >From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU]
> > >On
> > Behalf Of Tom Marchant
> > >Sent: Monday, March 04, 2019 9:23 AM
> > >To: IBM-MAIN@LISTSERV.UA.EDU
> > >Subject: Re: SMPE Internet Service Retrieval: TRANSFERONLY
> > >
> > >On Mon, 4 Mar 2019 17:07:42 +, Smith, Sean M
> > >wrote:
> > >
> > >>When using the SMPE Internet Service Retrieval to get HOLDDATA, I
> > >>would
> > like to use the TRANSFERONLY feature so I can place a single ORDER and
> > then receive the HOLDDATA into my various SMPE environments.  I am not
> > seeing how to control where the HOLDDATA gets transferred however nor
> > how to go about referring to it in a  subsequent job step. This seems
> > like a rudimentary question and I did look through the manuals
> > thinking this has to be pretty simpleand...help!
> > >
> > >SMPNTS defines where the it is transferred to and/or received from.
> > >It is
> > a Unix path.
> > >You can then use RECEIVE FROMNTS to receive it into your other global
> > zones on that system.
> > >
> > >--
> > >Tom Marchant
> > >
> > >-
> > >- For IBM-MAIN subscribe / signoff / archive access instructions,
> > >send email to lists...@listserv.ua.edu with the message: INFO
> > >IBM-MAIN
> > >
> > >-
> > >- This message, and any attachments, is for the intended recipie

Re: SMPE Internet Service Retrieval: TRANSFERONLY

2019-03-04 Thread Jousma, David
So, I've asked this of folks that have had the same request prior to you.   Why 
not just run the SMPE Receive order for all available maintenance, once for 
each global zone you have?   You get the current enhanced holddata, and you get 
all available maintenance.   That way, when Receive order is broken, and you 
need that one PTF, maybe you already have it?  No one says you have to apply 
it, but you have it at  your fingertips when you do need it.

I don't understand the thought process of just getting holddata, or just *some* 
of the PTF's. 

_
Dave Jousma
Mainframe Engineering, Assistant Vice President
david.jou...@53.com
1830 East Paris, Grand Rapids, MI  49546 MD RSCB2H
p 616.653.8429
f 616.653.2717

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Smith, Sean M
Sent: Monday, March 4, 2019 2:05 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: SMPE Internet Service Retrieval: TRANSFERONLY

**CAUTION EXTERNAL EMAIL**

**DO NOT open attachments or click on links from unknown senders or unexpected 
emails**

We have moved exclusively to SMPE internet service retrieval so FTP is no 
longer an option.

Sean


-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Michael Babcock
Sent: Monday, March 04, 2019 11:03 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: SMPE Internet Service Retrieval: TRANSFERONLY

I use FTP to get the yearly file into a dataset then run an SMP RECEIVE to 
bring it in.

On Mon, Mar 4, 2019 at 12:57 PM Tom Marchant < 
000a2a8c2020-dmarc-requ...@listserv.ua.edu> wrote:

> I think that they have made it as easy as humanly possible.
>
> I'm pretty sure you just specify the same path for SMPNTS in the 
> second step for the RECEIVE FROMNTS.
>
> Have you tried it?
>
> On Mon, 4 Mar 2019 17:30:52 +, Smith, Sean M wrote:
>
> >Right, but then you have to point to the exact file in the exact sub
> directory that is dynamically created...so no way to just run a second 
> step in the job and point to the file that I can see.  Am I missing 
> something obvious or did they make this is hard as humanly possible?
> >
> >Sean
> >
> >-Original Message-
> >From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] 
> >On
> Behalf Of Tom Marchant
> >Sent: Monday, March 04, 2019 9:23 AM
> >To: IBM-MAIN@LISTSERV.UA.EDU
> >Subject: Re: SMPE Internet Service Retrieval: TRANSFERONLY
> >
> >On Mon, 4 Mar 2019 17:07:42 +, Smith, Sean M
> >wrote:
> >
> >>When using the SMPE Internet Service Retrieval to get HOLDDATA, I 
> >>would
> like to use the TRANSFERONLY feature so I can place a single ORDER and 
> then receive the HOLDDATA into my various SMPE environments.  I am not 
> seeing how to control where the HOLDDATA gets transferred however nor 
> how to go about referring to it in a  subsequent job step. This seems 
> like a rudimentary question and I did look through the manuals 
> thinking this has to be pretty simpleand...help!
> >
> >SMPNTS defines where the it is transferred to and/or received from. 
> >It is
> a Unix path.
> >You can then use RECEIVE FROMNTS to receive it into your other global
> zones on that system.
> >
> >--
> >Tom Marchant
> >
> >-
> >- For IBM-MAIN subscribe / signoff / archive access instructions, 
> >send email to lists...@listserv.ua.edu with the message: INFO 
> >IBM-MAIN
> >
> >-
> >- This message, and any attachments, is for the intended recipient(s) 
> >only,
> may contain information that is privileged, confidential and/or 
> proprietary and subject to important terms and conditions available at
> http://www.bankofamerica.com/emaildisclaimer.   If you are not the
> intended recipient, please delete this message.
> >
> >-
> >- For IBM-MAIN subscribe / signoff / archive access instructions, 
> >send email to lists...@listserv.ua.edu with the message: INFO 
> >IBM-MAIN
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions, send 
> email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>
--
Michael Babcock
OneMain Financial
z/OS Systems Programmer, Lead

--
For IBM-MAIN subscribe / signoff / archive access instructions, send email to 
lists...@listserv.ua.edu with the message: INFO IBM-MAIN

-

Re: SMPE Internet Service Retrieval: TRANSFERONLY

2019-03-04 Thread Smith, Sean M
We have moved exclusively to SMPE internet service retrieval so FTP is no 
longer an option.

Sean


-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Michael Babcock
Sent: Monday, March 04, 2019 11:03 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: SMPE Internet Service Retrieval: TRANSFERONLY

I use FTP to get the yearly file into a dataset then run an SMP RECEIVE to
bring it in.

On Mon, Mar 4, 2019 at 12:57 PM Tom Marchant <
000a2a8c2020-dmarc-requ...@listserv.ua.edu> wrote:

> I think that they have made it as easy as humanly possible.
>
> I'm pretty sure you just specify the same path for SMPNTS in the second
> step for the RECEIVE FROMNTS.
>
> Have you tried it?
>
> On Mon, 4 Mar 2019 17:30:52 +, Smith, Sean M wrote:
>
> >Right, but then you have to point to the exact file in the exact sub
> directory that is dynamically created...so no way to just run a second step
> in the job and point to the file that I can see.  Am I missing something
> obvious or did they make this is hard as humanly possible?
> >
> >Sean
> >
> >-Original Message-
> >From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On
> Behalf Of Tom Marchant
> >Sent: Monday, March 04, 2019 9:23 AM
> >To: IBM-MAIN@LISTSERV.UA.EDU
> >Subject: Re: SMPE Internet Service Retrieval: TRANSFERONLY
> >
> >On Mon, 4 Mar 2019 17:07:42 +, Smith, Sean M
> >wrote:
> >
> >>When using the SMPE Internet Service Retrieval to get HOLDDATA, I would
> like to use the TRANSFERONLY feature so I can place a single ORDER and then
> receive the HOLDDATA into my various SMPE environments.  I am not seeing
> how to control where the HOLDDATA gets transferred however nor how to go
> about referring to it in a  subsequent job step. This seems like a
> rudimentary question and I did look through the manuals thinking this has
> to be pretty simpleand...help!
> >
> >SMPNTS defines where the it is transferred to and/or received from. It is
> a Unix path.
> >You can then use RECEIVE FROMNTS to receive it into your other global
> zones on that system.
> >
> >--
> >Tom Marchant
> >
> >--
> >For IBM-MAIN subscribe / signoff / archive access instructions,
> >send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
> >
> >--
> >This message, and any attachments, is for the intended recipient(s) only,
> may contain information that is privileged, confidential and/or proprietary
> and subject to important terms and conditions available at
> http://www.bankofamerica.com/emaildisclaimer.   If you are not the
> intended recipient, please delete this message.
> >
> >--
> >For IBM-MAIN subscribe / signoff / archive access instructions,
> >send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>
-- 
Michael Babcock
OneMain Financial
z/OS Systems Programmer, Lead

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
This message, and any attachments, is for the intended recipient(s) only, may 
contain information that is privileged, confidential and/or proprietary and 
subject to important terms and conditions available at 
http://www.bankofamerica.com/emaildisclaimer.   If you are not the intended 
recipient, please delete this message.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: SMPE Internet Service Retrieval: TRANSFERONLY

2019-03-04 Thread Smith, Sean M
As I recall it required you to enter the ORDER number for that to work.  So to 
run it as a second step would require that you scrape the report from the first 
step to get the order number so you can do the receive.

Sean 

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Tom Marchant
Sent: Monday, March 04, 2019 10:57 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: SMPE Internet Service Retrieval: TRANSFERONLY

I think that they have made it as easy as humanly possible.

I'm pretty sure you just specify the same path for SMPNTS in the second step 
for the RECEIVE FROMNTS.

Have you tried it?

On Mon, 4 Mar 2019 17:30:52 +, Smith, Sean M wrote:

>Right, but then you have to point to the exact file in the exact sub directory 
>that is dynamically created...so no way to just run a second step in the job 
>and point to the file that I can see.  Am I missing something obvious or did 
>they make this is hard as humanly possible?
>
>Sean
>
>-Original Message-
>From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On 
>Behalf Of Tom Marchant
>Sent: Monday, March 04, 2019 9:23 AM
>To: IBM-MAIN@LISTSERV.UA.EDU
>Subject: Re: SMPE Internet Service Retrieval: TRANSFERONLY
>
>On Mon, 4 Mar 2019 17:07:42 +, Smith, Sean M
>wrote:
>
>>When using the SMPE Internet Service Retrieval to get HOLDDATA, I would like 
>>to use the TRANSFERONLY feature so I can place a single ORDER and then 
>>receive the HOLDDATA into my various SMPE environments.  I am not seeing how 
>>to control where the HOLDDATA gets transferred however nor how to go about 
>>referring to it in a  subsequent job step. This seems like a rudimentary 
>>question and I did look through the manuals thinking this has to be pretty 
>>simpleand...help!
>
>SMPNTS defines where the it is transferred to and/or received from. It is a 
>Unix path.
>You can then use RECEIVE FROMNTS to receive it into your other global zones on 
>that system.
>
>--
>Tom Marchant
>
>--
>For IBM-MAIN subscribe / signoff / archive access instructions,
>send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>
>--
>This message, and any attachments, is for the intended recipient(s) only, may 
>contain information that is privileged, confidential and/or proprietary and 
>subject to important terms and conditions available at 
>http://www.bankofamerica.com/emaildisclaimer.   If you are not the intended 
>recipient, please delete this message.
>
>--
>For IBM-MAIN subscribe / signoff / archive access instructions,
>send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
This message, and any attachments, is for the intended recipient(s) only, may 
contain information that is privileged, confidential and/or proprietary and 
subject to important terms and conditions available at 
http://www.bankofamerica.com/emaildisclaimer.   If you are not the intended 
recipient, please delete this message.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: SMPE Internet Service Retrieval: TRANSFERONLY

2019-03-04 Thread Michael Babcock
I use FTP to get the yearly file into a dataset then run an SMP RECEIVE to
bring it in.

On Mon, Mar 4, 2019 at 12:57 PM Tom Marchant <
000a2a8c2020-dmarc-requ...@listserv.ua.edu> wrote:

> I think that they have made it as easy as humanly possible.
>
> I'm pretty sure you just specify the same path for SMPNTS in the second
> step for the RECEIVE FROMNTS.
>
> Have you tried it?
>
> On Mon, 4 Mar 2019 17:30:52 +, Smith, Sean M wrote:
>
> >Right, but then you have to point to the exact file in the exact sub
> directory that is dynamically created...so no way to just run a second step
> in the job and point to the file that I can see.  Am I missing something
> obvious or did they make this is hard as humanly possible?
> >
> >Sean
> >
> >-Original Message-
> >From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On
> Behalf Of Tom Marchant
> >Sent: Monday, March 04, 2019 9:23 AM
> >To: IBM-MAIN@LISTSERV.UA.EDU
> >Subject: Re: SMPE Internet Service Retrieval: TRANSFERONLY
> >
> >On Mon, 4 Mar 2019 17:07:42 +, Smith, Sean M
> >wrote:
> >
> >>When using the SMPE Internet Service Retrieval to get HOLDDATA, I would
> like to use the TRANSFERONLY feature so I can place a single ORDER and then
> receive the HOLDDATA into my various SMPE environments.  I am not seeing
> how to control where the HOLDDATA gets transferred however nor how to go
> about referring to it in a  subsequent job step. This seems like a
> rudimentary question and I did look through the manuals thinking this has
> to be pretty simpleand...help!
> >
> >SMPNTS defines where the it is transferred to and/or received from. It is
> a Unix path.
> >You can then use RECEIVE FROMNTS to receive it into your other global
> zones on that system.
> >
> >--
> >Tom Marchant
> >
> >--
> >For IBM-MAIN subscribe / signoff / archive access instructions,
> >send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
> >
> >--
> >This message, and any attachments, is for the intended recipient(s) only,
> may contain information that is privileged, confidential and/or proprietary
> and subject to important terms and conditions available at
> http://www.bankofamerica.com/emaildisclaimer.   If you are not the
> intended recipient, please delete this message.
> >
> >--
> >For IBM-MAIN subscribe / signoff / archive access instructions,
> >send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>
-- 
Michael Babcock
OneMain Financial
z/OS Systems Programmer, Lead

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: SMPE Internet Service Retrieval: TRANSFERONLY

2019-03-04 Thread Tom Marchant
I think that they have made it as easy as humanly possible.

I'm pretty sure you just specify the same path for SMPNTS in the second step 
for the RECEIVE FROMNTS.

Have you tried it?

On Mon, 4 Mar 2019 17:30:52 +, Smith, Sean M wrote:

>Right, but then you have to point to the exact file in the exact sub directory 
>that is dynamically created...so no way to just run a second step in the job 
>and point to the file that I can see.  Am I missing something obvious or did 
>they make this is hard as humanly possible?
>
>Sean
>
>-Original Message-
>From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On 
>Behalf Of Tom Marchant
>Sent: Monday, March 04, 2019 9:23 AM
>To: IBM-MAIN@LISTSERV.UA.EDU
>Subject: Re: SMPE Internet Service Retrieval: TRANSFERONLY
>
>On Mon, 4 Mar 2019 17:07:42 +, Smith, Sean M
>wrote:
>
>>When using the SMPE Internet Service Retrieval to get HOLDDATA, I would like 
>>to use the TRANSFERONLY feature so I can place a single ORDER and then 
>>receive the HOLDDATA into my various SMPE environments.  I am not seeing how 
>>to control where the HOLDDATA gets transferred however nor how to go about 
>>referring to it in a  subsequent job step. This seems like a rudimentary 
>>question and I did look through the manuals thinking this has to be pretty 
>>simpleand...help!
>
>SMPNTS defines where the it is transferred to and/or received from. It is a 
>Unix path.
>You can then use RECEIVE FROMNTS to receive it into your other global zones on 
>that system.
>
>--
>Tom Marchant
>
>--
>For IBM-MAIN subscribe / signoff / archive access instructions,
>send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>
>--
>This message, and any attachments, is for the intended recipient(s) only, may 
>contain information that is privileged, confidential and/or proprietary and 
>subject to important terms and conditions available at 
>http://www.bankofamerica.com/emaildisclaimer.   If you are not the intended 
>recipient, please delete this message.
>
>--
>For IBM-MAIN subscribe / signoff / archive access instructions,
>send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: SMPE Internet Service Retrieval: TRANSFERONLY

2019-03-04 Thread Smith, Sean M
Right, but then you have to point to the exact file in the exact sub directory 
that is dynamically created...so no way to just run a second step in the job 
and point to the file that I can see.  Am I missing something obvious or did 
they make this is hard as humanly possible?

Sean

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Tom Marchant
Sent: Monday, March 04, 2019 9:23 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: SMPE Internet Service Retrieval: TRANSFERONLY

On Mon, 4 Mar 2019 17:07:42 +, Smith, Sean M 
wrote:

>When using the SMPE Internet Service Retrieval to get HOLDDATA, I would like 
>to use the TRANSFERONLY feature so I can place a single ORDER and then receive 
>the HOLDDATA into my various SMPE environments.  I am not seeing how to 
>control where the HOLDDATA gets transferred however nor how to go about 
>referring to it in a  subsequent job step. This seems like a rudimentary 
>question and I did look through the manuals thinking this has to be pretty 
>simpleand...help!

SMPNTS defines where the it is transferred to and/or received from. It is a 
Unix path.
You can then use RECEIVE FROMNTS to receive it into your other global zones on 
that system.

-- 
Tom Marchant

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
This message, and any attachments, is for the intended recipient(s) only, may 
contain information that is privileged, confidential and/or proprietary and 
subject to important terms and conditions available at 
http://www.bankofamerica.com/emaildisclaimer.   If you are not the intended 
recipient, please delete this message.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: SMPE Internet Service Retrieval: TRANSFERONLY

2019-03-04 Thread Tom Marchant
On Mon, 4 Mar 2019 17:07:42 +, Smith, Sean M 
wrote:

>When using the SMPE Internet Service Retrieval to get HOLDDATA, I would like 
>to use the TRANSFERONLY feature so I can place a single ORDER and then receive 
>the HOLDDATA into my various SMPE environments.  I am not seeing how to 
>control where the HOLDDATA gets transferred however nor how to go about 
>referring to it in a  subsequent job step. This seems like a rudimentary 
>question and I did look through the manuals thinking this has to be pretty 
>simpleand...help!

SMPNTS defines where the it is transferred to and/or received from. It is a 
Unix path.
You can then use RECEIVE FROMNTS to receive it into your other global zones on 
that system.

-- 
Tom Marchant

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


SMPE Internet Service Retrieval: TRANSFERONLY

2019-03-04 Thread Smith, Sean M
When using the SMPE Internet Service Retrieval to get HOLDDATA, I would like to 
use the TRANSFERONLY feature so I can place a single ORDER and then receive the 
HOLDDATA into my various SMPE environments.  I am not seeing how to control 
where the HOLDDATA gets transferred however nor how to go about referring to it 
in a  subsequent job step. This seems like a rudimentary question and I did 
look through the manuals thinking this has to be pretty simpleand...help!

Sean

--
This message, and any attachments, is for the intended recipient(s) only, may 
contain information that is privileged, confidential and/or proprietary and 
subject to important terms and conditions available at 
http://www.bankofamerica.com/emaildisclaimer.   If you are not the intended 
recipient, please delete this message.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN