View previous topic :: View next topic |
Author |
Message |
MFdigger Beginner
Joined: 09 Sep 2005 Posts: 124 Topics: 52 Location: Chicago
|
Posted: Mon Feb 02, 2009 11:47 am Post subject: FTP'ing source programs - PANVALET |
|
|
Hi all,
I want to ftp some of the SOURCE programs from PANVALET, but in the FTP tool its not even showing the SOURCE library (may be because its PANVALET Library).
Could some one please let me know how can FTP the source programs or is there any option in PANVALET to be take care of so that the members in the library can be viewed for FTP'ing.
Please advice.
Thank you
 _________________ Tx
Digger |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
Posted: Mon Feb 02, 2009 11:58 am Post subject: |
|
|
MFdigger,
You can go use the panavalet program pan#1 or FILEMANAGER/Fileaid to extract the programs from panavalet libraries to a regular FB 80 byte datasets which you can FTP.
kolusu |
|
Back to top |
|
 |
MFdigger Beginner
Joined: 09 Sep 2005 Posts: 124 Topics: 52 Location: Chicago
|
Posted: Thu Feb 12, 2009 10:26 am Post subject: |
|
|
Hi Kolusu,
Sorry for my delayed response.
Thank you for providing the details. We have File Manager , but I'm not able to copy the members from Panvalet.
Could you please hlep me in providing the JCL with PAN#1 to copy the members into my dataset.
Thank you once again for your hlep
 _________________ Tx
Digger |
|
Back to top |
|
 |
dbzTHEdinosauer Supermod
Joined: 20 Oct 2006 Posts: 1411 Topics: 26 Location: germany
|
Posted: Thu Feb 12, 2009 10:34 am Post subject: |
|
|
any compile will have the pan#1 as the first step.
you can copy the jcl (with your sites syntax) from sdsf. _________________ Dick Brenholtz
American living in Varel, Germany |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
Posted: Thu Feb 12, 2009 11:29 am Post subject: |
|
|
MFdigger,
Code: |
//STEP0100 EXEC PGM=PAN#1
//PANDD1 DD DSN=Your panvalet.library,DISP=SHR
//PDSOUT DD DSN=your pds,DISP=SHR
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
++OPTION OUTPUT,PDSOUT,memname
++WRITE WORK,memname
/*
|
|
|
Back to top |
|
 |
MFdigger Beginner
Joined: 09 Sep 2005 Posts: 124 Topics: 52 Location: Chicago
|
Posted: Fri Feb 13, 2009 10:30 am Post subject: |
|
|
Hi kolusu
I have used the same JCL with the same options as you provided in SYSIN, but its showing the error message as below
Code: |
ABCD.XXXX.SOURCE 145SP01 10.25.19
0 ++OPTION OUTPUT,PDSOUT,AXXX123K
***** INVALID COMMAND *****
++WRITE WORK,AXXX123K
***** UNSATISFACTORY ACTION DUE TO ERROR *****
-FILE VERSIONS: PANDD1 => V14.5 PANDD2 => NOT-USED PANDD3 => NOT
******************************** BOTTOM OF DATA ********************************
|
Please advice  _________________ Tx
Digger |
|
Back to top |
|
 |
MFdigger Beginner
Joined: 09 Sep 2005 Posts: 124 Topics: 52 Location: Chicago
|
Posted: Fri Feb 13, 2009 10:32 am Post subject: |
|
|
Hi Kolusu,
Sorry, it worked for me. I didnt started the options in SYSIN from the first column. Thank you.
Could you please let me know how I can mention multiple member names if I want to copy more than one at a time.
Please advice _________________ Tx
Digger |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
Posted: Fri Feb 13, 2009 4:57 pm Post subject: |
|
|
MFdigger wrote: | Could you please let me know how I can mention multiple member names if I want to copy more than one at a time.
Please advice |
Mfdigger,
I don't remember the syntax that well. I think you just need to repeat the write parm for the members you need to copy
Code: |
++WRITE WORK,memname 1
++WRITE WORK,memname 2
++WRITE WORK,memname 3
|
_________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
 |
|
|