Re: How to obtain TGTZONENAME in an existing SMPE dataset

2010-01-21 Thread Linda Mooney
Hi Hilario, 



Whenever I have to find a SMP/e CSI that I don't know the name of, I use 
CA-Disk to scan my volumes for datasets ending in .CSI.  (I can give you the 
statements for CA-Disk if you want them)  So, perhaps you could use whatever 
product or utility you have to find your CSI.  



Once you have the name of the CSI, go into the SMP/e panels under TSO, select 
1, fill in the CSI you want to look at, press enter.  Select 1, press enter and 
press enter at the next screen too.  The next screen will list the zones for 
that CSI.  The zone names, as well as the dataset name(s) will all be shown on 
the same panel. 



HTH, 



Linda Mooney 

  
- Original Message - 
From: Hilario cucho...@gmail.com 
To: IBM-MAIN@bama.ua.edu 
Sent: Tuesday, January 19, 2010 2:54:10 AM GMT -08:00 US/Canada Pacific 
Subject: How to obtain TGTZONENAME in an existing SMPE dataset 

Hi, 

I will try to list the DDDEF of a target SMP/E. Problem is that the file were 
created for a person that left the company and there isn't any documentation 
about it. I tried with the most usual names: MVST, MVST100, TGT1,  and 
so on. 

I use this JCL to do this: 

    //SMPE    EXEC PGM=GIMSMP 
    //SYSPRINT DD SYSOUT=* 
    //SMPOUT   DD SYSOUT=* 
    //SMPRPT   DD SYSOUT=* 
    //SMPSNAP  DD SYSOUT=* 
    //SMPCSI   DD DISP=SHR,DSN=SYS1.MVST.CSI 
    //SMPCNTL  DD * 
      SET BDY(??). 
      LIST DDDEF. 
    /* 

My question is there any way to obtain this name ? 
Regards. 

Hilario 

-- 
For IBM-MAIN subscribe / signoff / archive access instructions, 
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO 
Search the archives at http://bama.ua.edu/archives/ibm-main.html 

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: How to obtain TGTZONENAME in an existing SMPE dataset

2010-01-20 Thread Shmuel Metz (Seymour J.)
In listserv%201001190454103443.0...@bama.ua.edu, on 01/19/2010
   at 04:54 AM, Hilario cucho...@gmail.com said:

I will try to list the DDDEF of a target SMP/E.

Forget DDDEF. If you know the CSI for your global zone, list the zones
that are defined in it. If you know the CSI for your target zones, list
the zones in it. If there are multiple target zones then you'll need to
figure out which is which from the names and contents.
 
-- 
 Shmuel (Seymour J.) Metz, SysProg and JOAT
 ISO position; see http://patriot.net/~shmuel/resume/brief.html 
We don't care. We don't have to care, we're Congress.
(S877: The Shut up and Eat Your spam act of 2003)

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


How to obtain TGTZONENAME in an existing SMPE dataset

2010-01-19 Thread Hilario
Hi,

I will try to list the DDDEF of a target SMP/E. Problem is that the file were 
created for a person that left the company and there isn't any documentation 
about it. I tried with the most usual names: MVST, MVST100, TGT1,  and 
so on.

I use this JCL to do this: 

//SMPEEXEC PGM=GIMSMP
//SYSPRINT DD SYSOUT=*
//SMPOUT   DD SYSOUT=*
//SMPRPT   DD SYSOUT=*
//SMPSNAP  DD SYSOUT=*
//SMPCSI   DD DISP=SHR,DSN=SYS1.MVST.CSI
//SMPCNTL  DD *
  SET BDY(??).
  LIST DDDEF.
/*

My question is there any way to obtain this name ?
Regards.

Hilario

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: How to obtain TGTZONENAME in an existing SMPE dataset

2010-01-19 Thread Walter Marguccio
 Subject: How to obtain TGTZONE
 From: Hilario cucho...@gmail.com

 Subject: How to obtain TGTZONENAME in an existing SMPE dataset

 My question is there any way to obtain this name ?

using your very JCL, you could list all zones (target  DLIBs) related to your 
GLOBAL zone :

//SMPCNTL  DD *
   SET BDY(GLOBAL).
LIST ALLZONES.

Then you will be able to list DDDEFs for the target zone you want. 

HTH.

Walter Marguccio
z/OS Systems Programmer
BELENUS LOB Informatic GmbH
Munich - Germany



 
--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html



Re: How to obtain TGTZONENAME in an existing SMPE dataset

2010-01-19 Thread Kurt Quackenbush
I use this JCL: 


//SMPEEXEC PGM=GIMSMP
//SYSPRINT DD SYSOUT=*
//SMPOUT   DD SYSOUT=*
//SMPRPT   DD SYSOUT=*
//SMPSNAP  DD SYSOUT=*
//SMPCSI   DD DISP=SHR,DSN=SYS1.MVST.CSI
//SMPCNTL  DD *
  SET BDY(??).
  LIST DDDEF.
/*

My question is there any way to obtain this name ?
Regards.


Does data set SYS1.MVST.CSI contain the global zone?  If so, then as 
previously suggested do this:


SET BDY(GLOBAL).
LIST GLOBALZONE.

The ZONEINDEX subentries in the LIST output tell you the name of the 
target and DLIB zones.


Otherwise you'll have a harder time because you have to inspect the 
records in the VSAM data set to determine the names of the zones 
contained within the data set.  Specifically you look for records that 
begin with '0002'x as they identify the individual zones in the data set.


Kurt Quackenbush -- IBM, SMP/E Development

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html