Re: VSE JCL question

2010-03-09 Thread Donald Johnson
: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On Behalf Of Paul Gilmartin Sent: Monday, March 08, 2010 7:46 PM To: IBM-MAIN@bama.ua.edu Subject: Re: VSE JCL question On Mon, 8 Mar 2010 18:24:58 -0700, Frank Swarbrick wrote: If you put what on z/OS is SOME.OTHER.FILENAME(MEMBER

Re: VSE JCL question

2010-03-09 Thread Chuck Arney
] On Behalf Of Donald Johnson Sent: Tuesday, March 09, 2010 7:12 AM To: IBM-MAIN@bama.ua.edu Subject: Re: VSE JCL question Thanks...so if I read this last statement correctly about it being expanded at reader time, I can't create a library member in one step and then pass it to the next step using the SLI

VSE JCL question

2010-03-08 Thread Donald Johnson
Hi friends! I have some z/OS JCL that I am trying to convert to VSE, and am brand new to VSE. Can someone point me toward a JCL reference guide that might help in converting JCL, or could you tell me if what I am doing is even possible? I have a SYSIN file that has a series of commands,

Re: VSE JCL question

2010-03-08 Thread Rich Smrcina
On 03/08/2010 03:20 PM, Donald Johnson wrote: Hi friends! I have some z/OS JCL that I am trying to convert to VSE, and am brand new to VSE. Can someone point me toward a JCL reference guide that might help in converting JCL, or could you tell me if what I am doing is even possible? I have a

Re: VSE JCL question

2010-03-08 Thread Chuck Arney
free. You should ensure you have adequate measures in place for your own virus checking. -Original Message- From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On Behalf Of Donald Johnson Sent: Monday, March 08, 2010 3:20 PM To: IBM-MAIN@bama.ua.edu Subject: VSE JCL question

Re: VSE JCL question

2010-03-08 Thread Donald Johnson
The commands are to my application program. In my z/OS system it would look like this; //SYSIN DD * command1 command2 ... commandn /* // DD DSN=some.other.filename(member),disp=shr // DD * commandx commandy commandz /* On Mon, Mar 8, 2010 at 4:24 PM, Rich Smrcina

Re: VSE JCL question

2010-03-08 Thread Frank Swarbrick
If you put what on z/OS is SOME.OTHER.FILENAME(MEMBER) in a VSE library you can probably use the POWER SLI card to read it in. So it's say the VSE library is named USER.MYLIB and the member is named MEMBER.$ // EXEC MYPGM command1 command2 ... commandn * $$ SLI MEM=MEMBER.$,S=USER.MYLIB

Re: VSE JCL question

2010-03-08 Thread Paul Gilmartin
On Mon, 8 Mar 2010 18:24:58 -0700, Frank Swarbrick wrote: If you put what on z/OS is SOME.OTHER.FILENAME(MEMBER) in a VSE library you can probably use the POWER SLI card to read it in. So it's say the VSE library is named USER.MYLIB and the member is named MEMBER.$ // EXEC MYPGM command1

Re: VSE JCL question

2010-03-08 Thread Chuck Arney
- From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On Behalf Of Paul Gilmartin Sent: Monday, March 08, 2010 7:46 PM To: IBM-MAIN@bama.ua.edu Subject: Re: VSE JCL question On Mon, 8 Mar 2010 18:24:58 -0700, Frank Swarbrick wrote: If you put what on z/OS is SOME.OTHER.FILENAME