Re: IPOUPDTE / CPPUPDTE Download

2012-02-23 Thread Anthony Thompson
Doco for the utility is in the MOREDOC member of the file uploaded from the CBT 
site, search for PDSPDS.

Example of JCL/SYSIN: 

//ANTPDS   JOB  (MVS,1203),ANT,CLASS=A,MSGCLASS=X,MSGLEVEL=(1,1),   
// REGION=0M,NOTIFY=SYSUID 
//* 
//* *** 
//*LIB: ANT.WORK.JCL(PDSPDS  )  *** 
//*REF: ANT.WORK.ASM(PDSPDS  )  *** 
//* ANT.CBT040.FILE *** 
//*DOC: *** 
//* Utility to scan/replace strings in a PDS.   *** 
//* *** 
//* 
//PDSPDS   PROC DSN=SYS1.PROCLIB,   * LIBRARY TO EDIT * 
// PDSPARM=,* PARM -OPTIONAL  * 
// OUT='*', * SYSPRINT  CLASS * 
// COPIES=1 * NUMBER OF COPIES *
//* 
//PDSPDS   EXEC PGM=PDSPDS,PARM='PDSPARM'  
//STEPLIB  DD   DISP=SHR,DSN=ANT.WORK.LINKLIB   
//SYSUT1   DD   DSN=DSN,DISP=SHR-- input file 
//SYSUT2   DD   DSN=DSN,DISP=SHR-- output file
//SYSPRINT DD   SYSOUT=OUT,COPIES=COPIES   * RECFM=FBA,LRECL=133 *
//SYSPUNCH DD   SYSOUT=B * RECFM=FB ,LRECL=80  *
//SYSWRK   DD   DSN=WORK,UNIT=SYSDA,SPACE=(TRK,(5,1)) 
// PEND 
//* 
//PROCLIB  EXEC PDSPDS, 
// DSN=SYS1.PROCLIB 
//SYSINDD   *   
-OPTION NUM=81  
-EDIT ALL.ALL   
-CHANGE /.V630./.V620./ 
-END
/*  
//  

SYSUT1 is the DDNAME for input, SYSUT2 is the output file, for change-in-place 
the two refer to the same file.
-OPTION NUM=81 says not to limit scan/replace to the default 72 columns.
-EDIT ALL.ALL means change all members... -EDIT ANT would effect only member 
ANT, -EDIT ANT.ALL would edit all members starting with ANT.
-CHANGE /text1/text2/ says what to change to what.

Another useful option is -OPTION SCAN=Y to just provide a report on what would 
be changed. Check the MOREDOC member.

 
Cheers, Ant.

---
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of 
Alvaro Guirao Lopez
Sent: Thursday, 23 February 2012 5:10 PM
To: IBM-MAIN@bama.ua.edu
Subject: Re: IPOUPDTE / CPPUPDTE Download

Clifford, z/OS installation libraries sometimes are deleted after the 
installation, I think, this in one case.


Anthony, I have downloaded FILE 040 but I don't see instructions of the DD 
NAMEs and syntax nedded to pass to the module.

Can u put here an example or a few comments detailing how to use it?

Best regards,
Álvaro.

2012/2/23 Anthony Thompson anthony.thomp...@nt.gov.au

 I use the PDSPDS program from file 40 on the CBT tape.

 Ant.


 -Original Message-
 From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On 
 Behalf Of Lizette Koehler
 Sent: Wednesday, 22 February 2012 11:51 PM
 To: IBM-MAIN@bama.ua.edu
 Subject: Re: IPOUPDTE / CPPUPDTE Download

 
  Hi list,
 
  I want to download IPOUPTE or CPPUPDTE.
 
  Is urgent.
 
  Thanks and regards,
 
  --
  Un saludo.
  Álvaro Guirao


 You can also go to the CBTTAPE.ORG website and find IPOUPDTE there.
  Also, you might want to look for alternatives to using this function.

 There are many ways to do PDS member updates with other utilities.

 For example, if you have COMPUWARE MVS product, a pds update funciont 
 is in there Or if you have CA PDSMAN a PDS update function is in there.


 Hope that helps.

 Lizette

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

 --
 For IBM-MAIN subscribe / signoff / archive access instructions, send 
 email to lists...@bama.ua.edu

Re: IPOUPDTE / CPPUPDTE Download

2012-02-23 Thread Alvaro Guirao Lopez
Many thanks Anthony, I will take an insight in your notes.

Cheers.

2012/2/23 Anthony Thompson anthony.thomp...@nt.gov.au

 Doco for the utility is in the MOREDOC member of the file uploaded from
 the CBT site, search for PDSPDS.

 Example of JCL/SYSIN:

 //ANTPDS   JOB  (MVS,1203),ANT,CLASS=A,MSGCLASS=X,MSGLEVEL=(1,1),
 // REGION=0M,NOTIFY=SYSUID
 //*
 //* ***
 //*LIB: ANT.WORK.JCL(PDSPDS  )  ***
 //*REF: ANT.WORK.ASM(PDSPDS  )  ***
 //* ANT.CBT040.FILE ***
 //*DOC: ***
 //* Utility to scan/replace strings in a PDS.   ***
 //* ***
 //*
 //PDSPDS   PROC DSN=SYS1.PROCLIB,   * LIBRARY TO EDIT *
 // PDSPARM=,* PARM -OPTIONAL  *
 // OUT='*', * SYSPRINT  CLASS *
 // COPIES=1 * NUMBER OF COPIES *
 //*
 //PDSPDS   EXEC PGM=PDSPDS,PARM='PDSPARM'
 //STEPLIB  DD   DISP=SHR,DSN=ANT.WORK.LINKLIB
 //SYSUT1   DD   DSN=DSN,DISP=SHR-- input file
 //SYSUT2   DD   DSN=DSN,DISP=SHR-- output file
 //SYSPRINT DD   SYSOUT=OUT,COPIES=COPIES   * RECFM=FBA,LRECL=133 *
 //SYSPUNCH DD   SYSOUT=B * RECFM=FB ,LRECL=80  *
 //SYSWRK   DD   DSN=WORK,UNIT=SYSDA,SPACE=(TRK,(5,1))
 // PEND
 //*
 //PROCLIB  EXEC PDSPDS,
 // DSN=SYS1.PROCLIB
 //SYSINDD   *
 -OPTION NUM=81
 -EDIT ALL.ALL
 -CHANGE /.V630./.V620./
 -END
 /*
 //

 SYSUT1 is the DDNAME for input, SYSUT2 is the output file, for
 change-in-place the two refer to the same file.
 -OPTION NUM=81 says not to limit scan/replace to the default 72 columns.
 -EDIT ALL.ALL means change all members... -EDIT ANT would effect only
 member ANT, -EDIT ANT.ALL would edit all members starting with ANT.
 -CHANGE /text1/text2/ says what to change to what.

 Another useful option is -OPTION SCAN=Y to just provide a report on what
 would be changed. Check the MOREDOC member.


 Cheers, Ant.

 ---
 From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On
 Behalf Of Alvaro Guirao Lopez
 Sent: Thursday, 23 February 2012 5:10 PM
 To: IBM-MAIN@bama.ua.edu
 Subject: Re: IPOUPDTE / CPPUPDTE Download

 Clifford, z/OS installation libraries sometimes are deleted after the
 installation, I think, this in one case.


 Anthony, I have downloaded FILE 040 but I don't see instructions of the DD
 NAMEs and syntax nedded to pass to the module.

 Can u put here an example or a few comments detailing how to use it?

 Best regards,
 Álvaro.

 2012/2/23 Anthony Thompson anthony.thomp...@nt.gov.au

  I use the PDSPDS program from file 40 on the CBT tape.
 
  Ant.
 
 
  -Original Message-
  From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On
  Behalf Of Lizette Koehler
  Sent: Wednesday, 22 February 2012 11:51 PM
  To: IBM-MAIN@bama.ua.edu
  Subject: Re: IPOUPDTE / CPPUPDTE Download
 
  
   Hi list,
  
   I want to download IPOUPTE or CPPUPDTE.
  
   Is urgent.
  
   Thanks and regards,
  
   --
   Un saludo.
   Álvaro Guirao
 
 
  You can also go to the CBTTAPE.ORG website and find IPOUPDTE there.
   Also, you might want to look for alternatives to using this function.
 
  There are many ways to do PDS member updates with other utilities.
 
  For example, if you have COMPUWARE MVS product, a pds update funciont
  is in there Or if you have CA PDSMAN a PDS update function is in there.
 
 
  Hope that helps.
 
  Lizette
 
  --
  For IBM-MAIN subscribe / signoff / archive access instructions, send
  email to lists...@bama.ua.edu with the message: INFO IBM-MAIN
 
  --
  For IBM-MAIN subscribe / signoff / archive access instructions, send
  email to lists...@bama.ua.edu with the message: INFO IBM-MAIN
 



 --
 Un saludo.
 Álvaro Guirao

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

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




-- 
Un saludo.
Álvaro Guirao

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

IPOUPDTE / CPPUPDTE Download

2012-02-22 Thread Alvaro Guirao Lopez
Hi list,

I want to download IPOUPTE or CPPUPDTE.

Is urgent.

Thanks and regards,

-- 
Un saludo.
Álvaro Guirao

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


Re: IPOUPDTE / CPPUPDTE Download

2012-02-22 Thread Itschak Mugzach
Why Download? If you ever installed Server pack or CBIPO, it is in the
installation (CPIPO/CPP) load library .

ITschak

On Wed, Feb 22, 2012 at 12:08 PM, Alvaro Guirao Lopez 
alvarogui...@gmail.com wrote:

 Hi list,

 I want to download IPOUPTE or CPPUPDTE.

 Is urgent.

 Thanks and regards,

 --
 Un saludo.
 Álvaro Guirao

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


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


Re: IPOUPDTE / CPPUPDTE Download

2012-02-22 Thread Lizette Koehler
 
 Hi list,
 
 I want to download IPOUPTE or CPPUPDTE.
 
 Is urgent.
 
 Thanks and regards,
 
 --
 Un saludo.
 Álvaro Guirao


You can also go to the CBTTAPE.ORG website and find IPOUPDTE there.  Also,
you might want to look for alternatives to using this function.

There are many ways to do PDS member updates with other utilities.

For example, if you have COMPUWARE MVS product, a pds update funciont is in
there
Or if you have CA PDSMAN a PDS update function is in there.


Hope that helps.

Lizette

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


Re: IPOUPDTE / CPPUPDTE Download

2012-02-22 Thread Alvaro Guirao Lopez
Hi,

Finally I used FileAid from Compuware.

I don't find where is the LOADLIB of CBIPO where is stored, isn't in
LINKLIB.


I use to modify frequently strings in PDS with IPOUPDTE / CPPUPDTE.


I have take an insisht into CBTTAPE but I don't find any file with the
sample or module, only ZAPs for avoiding the $$$COIBM member or doc for
utility.


Thanks to both.
Álvaro.



2012/2/22 Lizette Koehler stars...@mindspring.com

 
  Hi list,
 
  I want to download IPOUPTE or CPPUPDTE.
 
  Is urgent.
 
  Thanks and regards,
 
  --
  Un saludo.
  Álvaro Guirao


 You can also go to the CBTTAPE.ORG website and find IPOUPDTE there.  Also,
 you might want to look for alternatives to using this function.

 There are many ways to do PDS member updates with other utilities.

 For example, if you have COMPUWARE MVS product, a pds update funciont is in
 there
 Or if you have CA PDSMAN a PDS update function is in there.


 Hope that helps.

 Lizette

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




-- 
Un saludo.
Álvaro Guirao

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


Re: IPOUPDTE / CPPUPDTE Download

2012-02-22 Thread Clifford McNeill
Alvaro,
The CPPUPDTE program is in the CPAC/ServerPac library suffixed with SCPPLOAD.  
That library was used to install z/OS.
Cliff McNeill
 

 Date: Wed, 22 Feb 2012 20:41:27 +0100
 From: alvarogui...@gmail.com
 Subject: Re: IPOUPDTE / CPPUPDTE Download
 To: IBM-MAIN@bama.ua.edu
 
 Hi,
 
 Finally I used FileAid from Compuware.
 
 I don't find where is the LOADLIB of CBIPO where is stored, isn't in
 LINKLIB.
 
 
 I use to modify frequently strings in PDS with IPOUPDTE / CPPUPDTE.
 
 
 I have take an insisht into CBTTAPE but I don't find any file with the
 sample or module, only ZAPs for avoiding the $$$COIBM member or doc for
 utility.
 
 
 Thanks to both.
 Álvaro.
 
 
 
 2012/2/22 Lizette Koehler stars...@mindspring.com
 
  
   Hi list,
  
   I want to download IPOUPTE or CPPUPDTE.
  
   Is urgent.
  
   Thanks and regards,
  
   --
   Un saludo.
   Álvaro Guirao
 
 
  You can also go to the CBTTAPE.ORG website and find IPOUPDTE there. Also,
  you might want to look for alternatives to using this function.
 
  There are many ways to do PDS member updates with other utilities.
 
  For example, if you have COMPUWARE MVS product, a pds update funciont is in
  there
  Or if you have CA PDSMAN a PDS update function is in there.
 
 
  Hope that helps.
 
  Lizette
 
  --
  For IBM-MAIN subscribe / signoff / archive access instructions,
  send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN
 
 
 
 
 -- 
 Un saludo.
 Álvaro Guirao
 
 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN
  
--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: IPOUPDTE / CPPUPDTE Download

2012-02-22 Thread Anthony Thompson
I use the PDSPDS program from file 40 on the CBT tape.

Ant.


-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of 
Lizette Koehler
Sent: Wednesday, 22 February 2012 11:51 PM
To: IBM-MAIN@bama.ua.edu
Subject: Re: IPOUPDTE / CPPUPDTE Download

 
 Hi list,
 
 I want to download IPOUPTE or CPPUPDTE.
 
 Is urgent.
 
 Thanks and regards,
 
 --
 Un saludo.
 Álvaro Guirao


You can also go to the CBTTAPE.ORG website and find IPOUPDTE there.  Also, you 
might want to look for alternatives to using this function.

There are many ways to do PDS member updates with other utilities.

For example, if you have COMPUWARE MVS product, a pds update funciont is in 
there Or if you have CA PDSMAN a PDS update function is in there.


Hope that helps.

Lizette

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

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


Re: IPOUPDTE / CPPUPDTE Download

2012-02-22 Thread Alvaro Guirao Lopez
Clifford, z/OS installation libraries sometimes are deleted after the
installation, I think, this in one case.


Anthony, I have downloaded FILE 040 but I don't see instructions of the DD
NAMEs and syntax nedded to pass to the module.

Can u put here an example or a few comments detailing how to use it?

Best regards,
Álvaro.

2012/2/23 Anthony Thompson anthony.thomp...@nt.gov.au

 I use the PDSPDS program from file 40 on the CBT tape.

 Ant.


 -Original Message-
 From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On
 Behalf Of Lizette Koehler
 Sent: Wednesday, 22 February 2012 11:51 PM
 To: IBM-MAIN@bama.ua.edu
 Subject: Re: IPOUPDTE / CPPUPDTE Download

 
  Hi list,
 
  I want to download IPOUPTE or CPPUPDTE.
 
  Is urgent.
 
  Thanks and regards,
 
  --
  Un saludo.
  Álvaro Guirao


 You can also go to the CBTTAPE.ORG website and find IPOUPDTE there.
  Also, you might want to look for alternatives to using this function.

 There are many ways to do PDS member updates with other utilities.

 For example, if you have COMPUWARE MVS product, a pds update funciont is
 in there Or if you have CA PDSMAN a PDS update function is in there.


 Hope that helps.

 Lizette

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

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




-- 
Un saludo.
Álvaro Guirao

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