Re: Connect:Direct question

2024-02-06 Thread Michael Oujesky
Another tidbit on using the ADRDSSU exit - if the file(s) is/are 
compressed, they are transferred without de-compression and re-compression.


Michael

At 12:26 PM 2/1/2024, Michael Oujesky wrote:
Food for thought.  You might investigate using the ADRDSSU exit 
available to C:D.


Not only does it allow specifying target dataset(s) SMS classes, it 
even allows copying whole volumes or dsname-masked groups of files 
between z/OS systems.


Michael

At 07:50 AM 1/31/2024, Gadi Ben-Avi wrote:

Hi,
I am trying to transfer a file using Connect:Direct from one z/OS 
system to another.

I need to specify both STORCLAS and DATACLAS.
This is what I am writing:
CPYSEQ PROCESS-
SNODE=RTST
 COPY1 COPY-
   FROM (DSN=G120NTN.KVTNKSP.UNLOAD-
 DISP=SHR  -
 PNODE -
) -
   TO   (DSN=G120NTN.KVTNKSP.UNLOAD-
 DISP=(NEW,CATLG)  -
 SPACE=(CYL,(999,),RLSE)   -
 SYSOPTS="STORCLAS=RKF1 DATACLAS=EXT" -
 SNODE -
)

And I keep getting errors.

How to I specify more than one parameter in SYSOPTS. I've tried 
writing a comma between the parameters with the same results.


Thanks

Gadi





--
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


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


Re: Connect:Direct question

2024-02-01 Thread Michael Oujesky
Food for thought.  You might investigate using the ADRDSSU exit 
available to C:D.


Not only does it allow specifying target dataset(s) SMS classes, it 
even allows copying whole volumes or dsname-masked groups of files 
between z/OS systems.


Michael

At 07:50 AM 1/31/2024, Gadi Ben-Avi wrote:

Hi,
I am trying to transfer a file using Connect:Direct from one z/OS 
system to another.

I need to specify both STORCLAS and DATACLAS.
This is what I am writing:
CPYSEQ PROCESS-
SNODE=RTST
 COPY1 COPY-
   FROM (DSN=G120NTN.KVTNKSP.UNLOAD-
 DISP=SHR  -
 PNODE -
) -
   TO   (DSN=G120NTN.KVTNKSP.UNLOAD-
 DISP=(NEW,CATLG)  -
 SPACE=(CYL,(999,),RLSE)   -
 SYSOPTS="STORCLAS=RKF1 DATACLAS=EXT" -
 SNODE -
)

And I keep getting errors.

How to I specify more than one parameter in SYSOPTS. I've tried 
writing a comma between the parameters with the same results.


Thanks

Gadi





--
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: Connect:Direct question

2024-02-01 Thread Rasmussen, A. (Andre)
Hi

It works on my end. The only difference is I have a generic process and then I 
pass the parameters to via my DMBATCH step in the JCL. I don't have a DATACLAS 
specified but as you can see the parameters are specified directly in the TO 
statement.

DMBATCH JCL:

//ST01#01 EXEC PGM=DMBATCH
//DMNETMAP DD DSN=XXX.XXX.NETMAP,DISP=SHR
//DMPUBLIB DD DSN= XXX.XXX.PROCESS.LIB,DISP=SHR
//DMMSGFIL DD DSN= XXX.XXX.MSG,DISP=SHR
//DMPRINT  DD SYSOUT=*
//SYSUDUMP DD SYSOUT=D
//SYSINDD *
   SIGNON CASE=YES
   SUB PROC=XXX = =-
   = XXX.XXX.XXX  -
=SHR -
   =YYY.YYY.YYY  -
=NEW-
=,  -
=,-
=,  -
=,-
=M -
=S   -
=,   -
NEWNAME=
   SIGNOFF
//*

PROCESS

COPY01 PROCESS PNODE= SNODE= -
 PRTY=5   -
 RETAIN=NO-
 MAXDELAY=99:00:00
STEP1  COPY FROM  (PNODE DSN=   -
   DISP=)   -
TO(SNODE DSN=   -
DCB= -
DISP=(,) -
SPACE= -
DSNTYPE= -
MGMTCLAS=-
STORCLAS=-
UNIT=)  -
CKPT=5M  -
COMPRESS EXT

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Gadi Ben-Avi
Sent: Thursday, February 01, 2024 12:12
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Connect:Direct question

[You don't often get email from gad...@malam.com. Learn why this is important 
at https://aka.ms/LearnAboutSenderIdentification ]

⚠️ CAUTION: EXTERNAL SENDER - Please be careful when opening links and 
attachments. ⚠️ Please report any suspicious mail to phish...@nedbank.co.za. 
Nedbank Information Security

Hi,
I tried that but it didn't work.
The manual says that the SMS parameters must be specified in the SYSOPTS.

Gadi

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Rasmussen, A. (Andre)
Sent: יום ה 01 פברואר 2024 11:34
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Connect:Direct question

[You don't often get email from 04eb5e8da660-dmarc-requ...@listserv.ua.edu. 
Learn why this is important at https://aka.ms/LearnAboutSenderIdentification ]

Hi Gadi

Those aren't SYSOPTS options. You need to code it something like this.

CPYSEQ PROCESS-
SNODE=RTST
 COPY1 COPY-
   FROM (DSN=G120NTN.KVTNKSP.UNLOAD-
 DISP=SHR  -
 PNODE -
) -
   TO   (DSN=G120NTN.KVTNKSP.UNLOAD-
 DISP=(NEW,CATLG)  -
 SPACE=(CYL,(999,),RLSE)   -
 STORCLAS=RKF1   -
 DATACLAS=EXT   -
 SNODE -
)

Regards
Andre


-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Gadi Ben-Avi
Sent: Wednesday, January 31, 2024 15:51
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Connect:Direct question

⚠️ CAUTION: EXTERNAL SENDER - Please be careful when opening links and 
attachments. ⚠️ Please report any suspicious mail to phish...@nedbank.co.za. 
Nedbank Information Security

Hi,
I am trying to transfer a file using Connect:Direct from one z/OS system to 
another.
I need to specify both STORCLAS and DATACLAS.
This is what I am writing:
CPYSEQ PROCESS-
SNODE=RTST
 COPY1 COPY-
   FROM (DSN=G120NTN.KVTNKSP.UNLOAD-
 DISP=SHR  -
 PNODE -
) -
   TO   (DSN=G120NTN.KVTNKSP.UNLOAD-
 DISP=(NEW,CATLG)  -
 SPACE=(CYL,(999,),RLSE)   -
 SYSOPTS="STORCLAS=RKF1 DATACLAS=EXT" -
 SNODE -
)

And I keep getting errors.

How to I specify more than one parameter in SYSOPTS. I've tried writing a comma 
between the parameters with the same results.

Thanks

Gadi






Re: Connect:Direct question

2024-02-01 Thread Gadi Ben-Avi
Hi,
I tried that but it didn't work.
The manual says that the SMS parameters must be specified in the SYSOPTS.

Gadi

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Rasmussen, A. (Andre)
Sent: יום ה 01 פברואר 2024 11:34
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Connect:Direct question

[You don't often get email from 04eb5e8da660-dmarc-requ...@listserv.ua.edu. 
Learn why this is important at https://aka.ms/LearnAboutSenderIdentification ]

Hi Gadi

Those aren't SYSOPTS options. You need to code it something like this.

CPYSEQ PROCESS-
SNODE=RTST
 COPY1 COPY-
   FROM (DSN=G120NTN.KVTNKSP.UNLOAD-
 DISP=SHR  -
 PNODE -
) -
   TO   (DSN=G120NTN.KVTNKSP.UNLOAD-
 DISP=(NEW,CATLG)  -
 SPACE=(CYL,(999,),RLSE)   -
 STORCLAS=RKF1   -
 DATACLAS=EXT   -
 SNODE -
)

Regards
Andre


-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Gadi Ben-Avi
Sent: Wednesday, January 31, 2024 15:51
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Connect:Direct question

⚠️ CAUTION: EXTERNAL SENDER - Please be careful when opening links and 
attachments. ⚠️ Please report any suspicious mail to phish...@nedbank.co.za. 
Nedbank Information Security

Hi,
I am trying to transfer a file using Connect:Direct from one z/OS system to 
another.
I need to specify both STORCLAS and DATACLAS.
This is what I am writing:
CPYSEQ PROCESS-
SNODE=RTST
 COPY1 COPY-
   FROM (DSN=G120NTN.KVTNKSP.UNLOAD-
 DISP=SHR  -
 PNODE -
) -
   TO   (DSN=G120NTN.KVTNKSP.UNLOAD-
 DISP=(NEW,CATLG)  -
 SPACE=(CYL,(999,),RLSE)   -
 SYSOPTS="STORCLAS=RKF1 DATACLAS=EXT" -
 SNODE -
)

And I keep getting errors.

How to I specify more than one parameter in SYSOPTS. I've tried writing a comma 
between the parameters with the same results.

Thanks

Gadi





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


Nedbank Limited group of companies (Nedbank) disclaimer and confidentiality 
notice:

This email, including any attachments (email), contains information that is 
confidential and is meant only for intended recipients. You may not share or 
copy the email or any part of it, unless the sender has specifically allowed 
you to do so. If you are not an intended recipient, please delete the email 
permanently and let Nedbank know that you have deleted it by replying to the 
sender or calling the Nedbank Contact Centre on +27 (0)800 555 111 (local) or 
+27 (0)10 2170 000 (international).

This email is not confirmation of a transaction or a Nedbank statement and is 
not offering or inviting anyone to take up any financial products or services, 
unless the content specifically indicates that it does so. Nedbank will not be 
liable for any errors or omissions in this email. The views and opinions are 
those of the author and not necessarily those of Nedbank.

The names of the Nedbank Board of Directors and Company Secretary are available 
here: 
https://eur04.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.nedbank.co.za%2Fterms%2FDirectorsNedbank.htm=05%7C02%7CGADI_B%40MALAM.COM%7C312299d406e9404fd3fb08dc2309131d%7C2669957b2b9e4ff0859535b303d5fcec%7C0%7C0%7C638423769074641430%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C=NpNwm3kBcHEm5LZbBo234HP67MtEAf9BxDioAJJOpU8%3D=0.
 Nedbank Ltd Reg No 1951/09/06.


--
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: Connect:Direct question

2024-02-01 Thread Rasmussen, A. (Andre)
Hi Gadi

Those aren't SYSOPTS options. You need to code it something like this.

CPYSEQ PROCESS-
SNODE=RTST
 COPY1 COPY-
   FROM (DSN=G120NTN.KVTNKSP.UNLOAD-
 DISP=SHR  -
 PNODE -
) -
   TO   (DSN=G120NTN.KVTNKSP.UNLOAD-
 DISP=(NEW,CATLG)  -
 SPACE=(CYL,(999,),RLSE)   -
 STORCLAS=RKF1   -
 DATACLAS=EXT   -
 SNODE -
)

Regards
Andre


-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Gadi Ben-Avi
Sent: Wednesday, January 31, 2024 15:51
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Connect:Direct question

⚠️ CAUTION: EXTERNAL SENDER - Please be careful when opening links and 
attachments. ⚠️ Please report any suspicious mail to phish...@nedbank.co.za. 
Nedbank Information Security

Hi,
I am trying to transfer a file using Connect:Direct from one z/OS system to 
another.
I need to specify both STORCLAS and DATACLAS.
This is what I am writing:
CPYSEQ PROCESS-
SNODE=RTST
 COPY1 COPY-
   FROM (DSN=G120NTN.KVTNKSP.UNLOAD-
 DISP=SHR  -
 PNODE -
) -
   TO   (DSN=G120NTN.KVTNKSP.UNLOAD-
 DISP=(NEW,CATLG)  -
 SPACE=(CYL,(999,),RLSE)   -
 SYSOPTS="STORCLAS=RKF1 DATACLAS=EXT" -
 SNODE -
)

And I keep getting errors.

How to I specify more than one parameter in SYSOPTS. I've tried writing a comma 
between the parameters with the same results.

Thanks

Gadi





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


Nedbank Limited group of companies (Nedbank) disclaimer and confidentiality 
notice:

This email, including any attachments (email), contains information that is 
confidential and is meant only for intended recipients. You may not share or 
copy the email or any part of it, unless the sender has specifically allowed 
you to do so. If you are not an intended recipient, please delete the email 
permanently and let Nedbank know that you have deleted it by replying to the 
sender or calling the Nedbank Contact Centre on +27 (0)800 555 111 (local) or 
+27 (0)10 2170 000 (international).

This email is not confirmation of a transaction or a Nedbank statement and is 
not offering or inviting anyone to take up any financial products or services, 
unless the content specifically indicates that it does so. Nedbank will not be 
liable for any errors or omissions in this email. The views and opinions are 
those of the author and not necessarily those of Nedbank.

The names of the Nedbank Board of Directors and Company Secretary are available 
here: www.nedbank.co.za/terms/DirectorsNedbank.htm. Nedbank Ltd Reg No 
1951/09/06.


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


Re: Connect:Direct question

2024-01-31 Thread Sasso, Len
Good morning!

https://www.ibm.com/support/pages/how-code-sysopts-statement-binary-file-transfer-between-connectdirect-windows-and-connectdirect-os390-sci35380


Thank You and Please Be Safe.


Please Note: I would appreciate it if you would please include my teammates 
("rdc_applications_...@gdit.com") in future emails to keep them informed.

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

TEAM: Together Everyone Achieves More

Office Hours: M-F  7 AM - 3:30 PM

Out-Of-The-Office:  Mon., Feb. 5, 2024

Cell: (518) 894-0879
Phone: (518) 257-4209
Fax: (518) 257-4300
len.sa...@gdit.com
URL: www.gdit.com<http://www.gdit.com/>
Customer Focused, Value Driven, Delivery Obsessed


From: IBM Mainframe Discussion List  on behalf of Bob 
Bridges 
Sent: Wednesday, January 31, 2024 9:47 AM
To: IBM-MAIN@LISTSERV.UA.EDU 
Subject: Re: Connect:Direct question

This Message Is From an External Sender
Please use caution with links, attachments, and any requests for credentials.


Decades ago when I had first discovered the exciting geekery of computer
programming, I remarked in a passing group of fellow enthusiasts that this
was the most fun I'd ever had in my life.  One of them said "Yeah?  Would
you be interested in a job this fall?"  So the Academic Computer Center
hired me (just a student job) to a) run a HASP station and b) help other
students debug their programs.

The latter would come to the desk, all confused:  "I ran this program last
semester and it worked, but now it's failing and [all chorus it together
with me] I DIDN'T CHANGE A THING!".

The response is always simple:  Well, let's look at the compile errors.  And
it was almost always right there.  This was a PL/C compiler with lots of
willingness to guess, so it might say "Stm 53: Missing right parenthesis in
column 14".

And the student then says "Oh, well, I did change that ONE statement..."

The point of this rambling digression is this:  If you want someone to help
you diagnose your program at a distance, and you say "I keep getting
errors", mightn't it be helpful to say WHAT errors?  This is kind of basic.
Quote them exactly, please.

---
Bob Bridges, robhbrid...@gmail.com, cell 336 382-7313

/* To be humble to superiors is duty, to equals courtesy, to inferiors
nobleness.  -Poor Richard */

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of
Gadi Ben-Avi
Sent: Wednesday, January 31, 2024 08:51

I am trying to transfer a file using Connect:Direct from one z/OS system to
another.  I need to specify both STORCLAS and DATACLAS.  This is what I am
writing:

CPYSEQ PROCESS-
SNODE=RTST
 COPY1 COPY-
   FROM (DSN=G120NTN.KVTNKSP.UNLOAD-
 DISP=SHR  -
 PNODE -
) -
   TO   (DSN=G120NTN.KVTNKSP.UNLOAD-
 DISP=(NEW,CATLG)  -
 SPACE=(CYL,(999,),RLSE)   -
 SYSOPTS="STORCLAS=RKF1 DATACLAS=EXT" -
 SNODE -
)

And I keep getting errors.

How to I specify more than one parameter in SYSOPTS. I've tried writing a
comma between the parameters with the same results.

--
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: Connect:Direct question

2024-01-31 Thread Bob Bridges
Decades ago when I had first discovered the exciting geekery of computer
programming, I remarked in a passing group of fellow enthusiasts that this
was the most fun I'd ever had in my life.  One of them said "Yeah?  Would
you be interested in a job this fall?"  So the Academic Computer Center
hired me (just a student job) to a) run a HASP station and b) help other
students debug their programs.

The latter would come to the desk, all confused:  "I ran this program last
semester and it worked, but now it's failing and [all chorus it together
with me] I DIDN'T CHANGE A THING!".

The response is always simple:  Well, let's look at the compile errors.  And
it was almost always right there.  This was a PL/C compiler with lots of
willingness to guess, so it might say "Stm 53: Missing right parenthesis in
column 14".

And the student then says "Oh, well, I did change that ONE statement..."

The point of this rambling digression is this:  If you want someone to help
you diagnose your program at a distance, and you say "I keep getting
errors", mightn't it be helpful to say WHAT errors?  This is kind of basic.
Quote them exactly, please.

---
Bob Bridges, robhbrid...@gmail.com, cell 336 382-7313

/* To be humble to superiors is duty, to equals courtesy, to inferiors
nobleness.  -Poor Richard */

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of
Gadi Ben-Avi
Sent: Wednesday, January 31, 2024 08:51

I am trying to transfer a file using Connect:Direct from one z/OS system to
another.  I need to specify both STORCLAS and DATACLAS.  This is what I am
writing:

CPYSEQ PROCESS-
SNODE=RTST
 COPY1 COPY-
   FROM (DSN=G120NTN.KVTNKSP.UNLOAD-
 DISP=SHR  -
 PNODE -
) -
   TO   (DSN=G120NTN.KVTNKSP.UNLOAD-
 DISP=(NEW,CATLG)  -
 SPACE=(CYL,(999,),RLSE)   -
 SYSOPTS="STORCLAS=RKF1 DATACLAS=EXT" -
 SNODE -
)

And I keep getting errors.

How to I specify more than one parameter in SYSOPTS. I've tried writing a
comma between the parameters with the same results.

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


Re: Connect:Direct question

2024-01-31 Thread Cameron Conacher
Hello
A bit late to the party.
I use something like this.
Maybe it helps?

SYMBOL  = \"\ || :datatype= ||-
 || :xlate= ||  || :STRIP.BLANKS= || -
 || :permiss= ||  || :pipe= ||  -
 || :xlate.table= ||  || \:\ || \"\


Thanks

…….Cameron

From: IBM Mainframe Discussion List  On Behalf Of 
Steve Thompson
Sent: Wednesday, January 31, 2024 9:26 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Connect:Direct question

I can make a suggestion. But if this fails, the following questions would need 
to be addressed. SYSOPTS=("STORCLAS=RKF1 DATACLAS=EXT") - Don't know if that 
will work. I've not worked on/with NDM on a daily basis for about 4 years now. 
Why do


I can make a suggestion. But if this fails, the following

questions would need to be addressed.



  SYSOPTS=("STORCLAS=RKF1 DATACLAS=EXT") -



Don't know if that will work. I've not worked on/with NDM on a daily basis for 
about 4 years now.



Why do you have to specify storclass and dataclas for the

receiving entity? Does it not have ACS rules to handle this?



Secondly, could you provide any error messages relative to the

sysopts processing?



One other thought: Can you do a run task on the other system to

define the dataset and then do the xfer?



Steve Thompson



On 1/31/2024 8:50 AM, Gadi Ben-Avi wrote:

> Hi,

> I am trying to transfer a file using Connect:Direct from one z/OS system to 
> another.

> I need to specify both STORCLAS and DATACLAS.

> This is what I am writing:

> CPYSEQ PROCESS-

>  SNODE=RTST

>   COPY1 COPY-

> FROM (DSN=G120NTN.KVTNKSP.UNLOAD-

>   DISP=SHR  -

>   PNODE -

>  ) -

> TO   (DSN=G120NTN.KVTNKSP.UNLOAD-

>   DISP=(NEW,CATLG)  -

>   SPACE=(CYL,(999,),RLSE)   -

>   SYSOPTS="STORCLAS=RKF1 DATACLAS=EXT" -

>   SNODE -

>  )

>

> And I keep getting errors.

>

> How to I specify more than one parameter in SYSOPTS. I've tried writing a 
> comma between the parameters with the same results.

>

> Thanks

>

> Gadi

>

>

>

>

>

> --

> For IBM-MAIN subscribe / signoff / archive access instructions,

> send email to lists...@listserv.ua.edu<mailto:lists...@listserv.ua.edu> with 
> the message: INFO IBM-MAIN



--

Regards, Steve Thompson



--

For IBM-MAIN subscribe / signoff / archive access instructions,

send email to lists...@listserv.ua.edu<mailto:lists...@listserv.ua.edu> with 
the message: INFO IBM-MAIN


American Express made the following annotations

This e-mail was sent to you by a representative of Amex Bank of Canada, P.O. 
Box 3204, Station "F", Toronto, ON, M1W 3W7, www.americanexpress.ca. If you no 
longer wish to receive these e-mails, please notify the sender by reply e-mail.

This e-mail is solely for the intended recipient and may contain confidential 
or privileged information. If you are not the intended recipient, any 
disclosure, copying, use, or distribution of the information included in this 
e-mail is prohibited. If you have received this e-mail in error, please notify 
the sender by reply e-mail and immediately and permanently delete this e-mail 
and any attachments. Thank you.

American Express a fait les remarques suivantes
Ce courriel vous a été envoyé par un représentant de la Banque Amex du Canada, 
C.P. 3204, succursale F, Toronto (Ontario) M1W 3W7, www.americanexpress.ca. Si, 
par la suite, vous ne souhaitez plus recevoir ces courriels, veuillez en aviser 
les expéditeurs par courriel.

Ce courriel est réservé au seul destinataire indiqué et peut renfermer des 
renseignements confidentiels et privilégiés. Si vous n’êtes pas le destinataire 
prévu, toute divulgation, duplication, utilisation ou distribution du courriel 
est interdite. Si vous avez reçu ce courriel par erreur, veuillez en aviser 
l’expéditeur par courriel et détruire immédiatement le courriel et toute pièce 
jointe. Merci.

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


Re: Connect:Direct question

2024-01-31 Thread Steve Thompson
I can make a suggestion. But if this fails, the following 
questions would need to be addressed.


 SYSOPTS=("STORCLAS=RKF1 DATACLAS=EXT") -

Don't know if that will work. I've not worked on/with NDM on a daily basis for 
about 4 years now.

Why do you have to specify storclass and dataclas for the 
receiving entity? Does it not have ACS rules to handle this?


Secondly, could you provide any error messages relative to the 
sysopts processing?


One other thought: Can you do a run task on the other system to 
define the dataset and then do the xfer?


Steve Thompson

On 1/31/2024 8:50 AM, Gadi Ben-Avi wrote:

Hi,
I am trying to transfer a file using Connect:Direct from one z/OS system to 
another.
I need to specify both STORCLAS and DATACLAS.
This is what I am writing:
CPYSEQ PROCESS-
 SNODE=RTST
  COPY1 COPY-
FROM (DSN=G120NTN.KVTNKSP.UNLOAD-
  DISP=SHR  -
  PNODE -
 ) -
TO   (DSN=G120NTN.KVTNKSP.UNLOAD-
  DISP=(NEW,CATLG)  -
  SPACE=(CYL,(999,),RLSE)   -
  SYSOPTS="STORCLAS=RKF1 DATACLAS=EXT" -
  SNODE -
 )

And I keep getting errors.

How to I specify more than one parameter in SYSOPTS. I've tried writing a comma 
between the parameters with the same results.

Thanks

Gadi





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


--
Regards, Steve Thompson

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


Connect:Direct question

2024-01-31 Thread Gadi Ben-Avi
Hi,
I am trying to transfer a file using Connect:Direct from one z/OS system to 
another.
I need to specify both STORCLAS and DATACLAS.
This is what I am writing:
CPYSEQ PROCESS-
SNODE=RTST
 COPY1 COPY-
   FROM (DSN=G120NTN.KVTNKSP.UNLOAD-
 DISP=SHR  -
 PNODE -
) -
   TO   (DSN=G120NTN.KVTNKSP.UNLOAD-
 DISP=(NEW,CATLG)  -
 SPACE=(CYL,(999,),RLSE)   -
 SYSOPTS="STORCLAS=RKF1 DATACLAS=EXT" -
 SNODE -
)

And I keep getting errors.

How to I specify more than one parameter in SYSOPTS. I've tried writing a comma 
between the parameters with the same results.

Thanks

Gadi





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