Re: TSO broadcast

2008-09-11 Thread Pedro Vera
 broadcast filing up with msg's that 

You can prevent the dataset from filling up.  Submit a batch TSO job that 
issues a LISTBC command.  It will pull from broadcast dataset and write to 
SYSTSPRT file of the job. 


Pedro Vera

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



Re: TSO broadcast

2008-09-11 Thread Pedro Vera
 under my tso I can issue ptofile nointercom and it stops.

I think you will stop seeing them, but network job status messages are 
still queued for you in your broadcast dataset.  They are there until you 
issue LISTBC NON (often done as part of your logon process).


Pedro Vera

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



Re: Name/tokens

2008-09-10 Thread Pedro Vera
 From a purely generic perspective, if there is a service to create and 
delete a thing - the ability to list all things seems to me to be a 
fundamental function.

agree.

 It's immensely useful to be able to list objects that have been created

I have always been one to poke around in the system. You find out how 
stuff works; every bit of knowledge is useful. 

But in this case, I am not sure what I would learn by knowing the 
name/tokens.  How would I use the information?  More interesting to me 
might be who created what name/tokens (even then, the benefit of knowing 
it is hazy).  Is ownership kept in the control blocks?



Pedro Vera

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



Re: question for C experts - strcpy vs memcpy

2008-09-08 Thread Pedro Vera
 00127 |2MVC   t(8,r13,172),+CONSTANT_AREA(r2,0)
Just curious:  what does the CONSTANT_AREA look like?  Does it have a 
'00'x after your constant?


Pedro Vera

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



Re: zOS R10

2008-09-08 Thread Pedro Vera
 and I don't see them online anymore.

I just looked and they are there???The title says 'Release 10', but 
there is no publication number.


Pedro Vera

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



Re: z/OS 1.9 and IBM1521I S 4.0 Not enough virtual memory is available to continue

2008-09-05 Thread Pedro Vera
 now I cannot get PL/I 3.7 to compile.

Need more problem details.


Pedro Vera

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



Re: dynamically generating Netview global variable names

2008-08-26 Thread Pedro Vera
I am rexx person, but not a Netview person...  you might try the INTERPRET 
command. 

INTERPRET  'CGLOBAL' PNAME

It will resolve PNAME first then execute the whole thing.


Pedro Vera

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



Re: A couple of memory/storage questions

2008-08-19 Thread Pedro Vera
I played with something similar many years ago.  IIRC, I used ESAR,  SSAR 
and MVCP instructions to pull information from other address spaces.  You 
start out with addresses that are in common, such as ASCB, then work your 
way down pointer chains.  It is mainly useful for system control blocks.


Pedro Vera

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



Re: Debugging Tips

2008-08-13 Thread Pedro Vera
 written in C using a bunch of self-written DLL's.

When I have an application with multiple programs, I add a trace 
capability.  Perhaps it is as easy as saving the current program name in a 
buffer.  Or even issuing WTO's. 

Pedro Vera

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



Re: IBM's financial results ?

2008-08-08 Thread Pedro Vera
Anton wrote:
 Something smells fishy some where..

That statement clearly implies an impropriety.  And since you are 
referring to a company, it is considered a conspiracy.

Conspiracy: an agreement by two or more persons to commit a crime, fraud, 
or other wrongful act. 

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



Re: Compiled Rexx portabilty

2008-08-07 Thread Pedro Vera
Another option might be to compile with OBJECT  DLINK  NOCEXEC options, 
and create a load module out of your rexx source. 


Pedro Vera
phone   (408) 463-4812
internet [EMAIL PROTECTED]

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



Re: Can't read newly created procedure

2008-08-05 Thread Pedro Vera
 I know it's there I can edit it etc.

Which dataset is it in? 

You might need: 
/*JOBPARM PROCLIB=PROC01



Pedro Vera
phone   (408) 463-4812
internet [EMAIL PROTECTED]

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



Re: Politics - California state computers can't handle pay cut, controller says - sacbee.com

2008-08-05 Thread Pedro Vera
I would think the hard part would be to restore the pay to the correct 
levels afterwards.



Pedro Vera
phone   (408) 463-4812
internet [EMAIL PROTECTED]

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



Re: INLINE JCL PROC Question

2008-08-04 Thread Pedro Vera
 dig it out of the SYSPROC DD

Not sure I understand your question entirely, but it seems that you mean 
an inline rexx program when you say 'inline proc'... is that correct?

Assuming yes: (there are probably better ways, but I came up with this 
some time ago) you still need SYSPROC, but use a temporary dataset:

//GENER   EXEC PGM=IEBGENER 
//SYSPRINT  DD SYSOUT=9 
//SYSIN DD DUMMY 
//SYSUT1DD DDNAME=CLIST 
//SYSUT2DD DISP=(NEW,PASS),DSN=TMP(SAYIT), 
// UNIT=SYSVIO,SPACE=(TRK,(1,1,1)), 
// DCB=(DSORG=PO,RECFM=FB,LRECL=80,BLKSIZE=3120) 
//CLIST DD *,DLM=#$ 
 /* rexx */
 Parse arg theparms
 Say theparms
#$ 
//* 
//BATCHTSO  EXEC PGM=IKJEFT01,
//  PARM='%SAYIT PARM2TMP FUNCTION'
//SYSPROC   DD DISP=(OLD,DELETE),DSN=TMP 
//SYSTSPRT DD SYSOUT=H 
//SYSTSIN DD DUMMY 



Pedro Vera
phone   (408) 463-4812
internet [EMAIL PROTECTED]

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



Re: Statistics when writing PDS members

2008-07-29 Thread Pedro Vera
I think the explicit requirement was no ISPF environment during the 
writing of the data.  But the implicit requirement is that someone will 
use the ISPF statistics at a later date, and probably within ISPF.



Pedro Vera
phone   (408) 463-4812
internet [EMAIL PROTECTED]

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



Re: Old 5798-DZW Dynamic STEPLIB Facility

2008-07-14 Thread Pedro Vera
You should be able to do what you want with the TSOLIB command that is 
part of TSO.  It is somewhat awkward to use though (not within ISPF and 
not from a REXX program), but as I recall, STEPLIB also had some 
restrictions.

My logon exec does my setup then uses  QUEUE to run TSOLIB command after 
the exec finishes.


Pedro Vera

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



Re: Passing data within the ISPF Data Set List Filter Exit

2008-07-11 Thread Pedro Vera
I have not used that exit, but believe that you should be able to use VPUT 
and VGET services. 

On each call to the exit:
1.  VGET variable from SHARED pool,  if it does not exist, save initial 
value.
2.  process as necessary
3.  if some status changes, VPUT changed variable back to SHARED pool.



Pedro Vera
phone   (408) 463-4812
internet [EMAIL PROTECTED]

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



Re: Cataloging problem

2008-07-02 Thread Pedro Vera
Use IDCAMS job with REPRO MERGCAT and specify LEVEL or ENTRIES parameters. 
  Sorry, I do not have a sample, but the IDCAMS books has some.

Pedro Vera

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



Re: Cataloging problem

2008-07-02 Thread Pedro Vera
 Not only are we swatting a fly with a Buick

But I think the SMP/E CSI datasets are vsam datasets.  I do not think the 
novice can rename or uncatalog vsam files easily. 

The simpler approach is
1.  repro mergecat
2.  define alias

And Sam had a nice JCL sample, so perhaps Mary will be able to do it 
without too much problem.

For REPRO information, see 'Access Method Services' at 
http://www-03.ibm.com/systems/z/os/zos/bkserv/r9pdf/#dfsms


Pedro Vera

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



Re: if someone remember: low core refrence

2008-07-01 Thread Pedro Vera
 ... alter the low core to get abend at low core reference .

Your question was not clear.  Hopefully, you want to prevent people from 
using such a tool, or trying to figure out how it was done.

You need to protect the TESTAUTH command that is part of TSO.

I do not think you need a special tool. If you have access to APF dataset, 
you can easily write a program to do it.  Your APF datasets should be 
protected.  And if you are a hacker-wannabe, please ignore my advice.


Pedro Vera

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



Re: DFDSS Question - DSCHA

2008-06-27 Thread Pedro Vera
re: SYSJPT.SPFLOG1.LIST
These datasets are created by ISPF and you already have an other by the 
same name.  Not sure why you would want to back it up. I think you can 
just delete the duplicate.  Perhaps, keep the one that is cataloged and 
delete the other. 

re: ADR727E
Application Programmer Response:  Recatalog the data set in the standard 
order of search and rerun the job. 

Make sure the alias for SYSJ1 points to that catalog.  If not, remove the 
catalog entry and catalog it in the right catalog. 


Pedro Vera

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



Re: DFDSS Question - DSCHA

2008-06-27 Thread Pedro Vera
 ... the SYSRES packs are switched ...

But that should not be a source of your messages.  Both of your res packs 
should use the same master catalog (or at least, all of the aliases should 
be the same).  The two datasets in your post seem to be user datasets and 
should be handled by correct cataloging.

  backup all the files which have not been updated
I think you should backup the files whcih have been updated.


Pedro Vera

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



Re: Conversion work

2008-06-24 Thread Pedro Vera
I do not have direct experience... only guessing...
I think it is probably easier to find new programmers with C experience 
than it is to find programmers with assembler experience. Over time, it 
will get harder and harder. And as with any high level language, you can 
write programs faster.  There is probably a trade-off with performance. 
but as salaries go up and price of hardware goes down, it might be a good 
business decision for some.  (No need for rebuttle... I know some will 
disagree.)

I doubt if there is a conversion tool, but rather that they figure out 
what the assembler does and try to do the same in C.


Pedro Vera

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



Re: Single RES

2008-06-18 Thread Pedro Vera
Sorry, I did not look at details of the 'standard'.

When I built a recovery system many years ago, I also made sure we copied 
the production RACF dataset to the recovery volume on a regular basis. And 
I had written a started task / authorized program that I could use to 
reset some special userids.  (I do not have the source any more, but 
something for your consideration).


Pedro Vera

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



Re: Single RES

2008-06-17 Thread Pedro Vera
  freebe wise??

Not sure what you mean.  Normally, you have libraries spread out on a few 
volumes for performance reasons.  But on a recovery volume, you just cram 
everything on one volume and make sure the catalog and procs use the 
correct libraries.   Are you saying your production server does not 
normally have TCP?


Pedro Vera

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



Re: Outsourcing dilemma or debacle, you decide...

2008-06-12 Thread Pedro Vera
On IBM-MAIN, there seem to be very many helpful experts, but at 
ibmmainframes.com  there is a plethora of very inexperienced posters.


Pedro Vera
phone   (408) 463-4812
internet [EMAIL PROTECTED]
homepage   http://pedro.userv.ibm.com

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



Re: Monitor use of Load-Library as JOBLIB/STEPLIB

2008-06-09 Thread Pedro Vera
 Secondly, I don't believe there's a mechanism in RACF to direct the 
 messages to a specific broadcast dataset. The message is sent to the 
 userid that committed the violation and to SYSLOG and to a security 
 console, if one is defined.

ALTDSD and ADDSD allow you to specify a userid that will get violation 
messages. The messages are sent and if the user is not logged on, will be 
saved in their broadcast dataset.



Pedro Vera
phone   (408) 463-4812
internet [EMAIL PROTECTED]

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