Re: EREP process question.

2008-12-05 Thread Schuh, Richard
Having LRECL change does not imply that every record will change to that
length. The LRECL of a V format file it the length of the longest record
written. There may be only one record of length 256 in your example.
 

Regards, 
Richard Schuh 

 

 




From: The IBM z/VM Operating System
[mailto:[EMAIL PROTECTED] On Behalf Of Ray Waters
Sent: Friday, December 05, 2008 5:37 AM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Re: EREP process question.



Howard,

Even if you clear the EREP file, or erase it, then once EREP
start accumulating data in XAEREPIO RECORD on his A disk, the records
are variable length and will start to grow in length.

For example, if I clear EREP, the max record size usually start
s out at 114, then will grow to Max of 256 in my shop.

Ray 





From: The IBM z/VM Operating System
[mailto:[EMAIL PROTECTED] On Behalf Of Howard Rifkind
Sent: Thursday, December 04, 2008 3:32 PM
To: IBMVM@LISTSERV.UARK.EDU
Subject: EREP process question.

 

I'm using the EREP parameter below to go against the z/VM EREP
machine.

 

The file XAEREPIO RECORD is out there and is some what larger
then yesterday.

 

Shouldn't the above file be deleted by these parameter?

 

SYSUM   
ACC=Y   
ZERO=Y  
ENDPARM 

 


_
LEGAL NOTICE
Unless expressly stated otherwise, this message is confidential
and may be privileged. It is intended for the addressee(s) only.
Access to this E-mail by anyone else is unauthorized.
If you are not an addressee, any disclosure or copying of the
contents of this E-mail or any action taken (or not taken) in
reliance on it is unauthorized and may be unlawful. If you are not an
addressee, please inform the sender immediately, then delete this
message and empty from your trash.

 




NOTICE:
This e-mail is intended solely for the use of the individual to
whom it is addressed and may contain information that is privileged,
confidential or otherwise exempt from disclosure. If the reader of this
e-mail is not the intended recipient or the employee or agent
responsible for delivering the message to the intended recipient, you
are hereby notified that any dissemination, distribution, or copying of
this communication is strictly prohibited. If you have received this
communication in error, please immediately notify us by replying to the
original message at the listed email address. Thank You.




Re: EREP process question.

2008-12-05 Thread Howard Rifkind
Thanks Ed.

>>> Ed Zell <[EMAIL PROTECTED]> 12/5/2008 8:31 AM >>>

Hi Howard,

  That file is just a “print header” file that we use to separate the
reports.  Since
  I use ‘CP SPOOL PRT CONT’ everything comes out in one spool file.  I
wanted 
  some kind of header to show me where one ended and the next began. 
You
  can either remove these lines, or create file with those names for
separator
  pages.


 ' PRINT SYSEXN RPT-HDR (CC'   
 ' PRINT SUMMARY  RPT-HDR (CC '  
 ' PRINT CLEARIT  RPT-HDR (CC '
 
   

  Here is what one of them looks like:



1  
  
 *
 **   
**
 **   
**
 **  SYSTEM EXCEPTION REPORT  **
 **   
**
 **   
**
 **


Ed Zell
Illinois Mutual Life
(309) 636-0107




From:The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Howard Rifkind
Sent: Thursday, December 04, 2008 5:19 PM
To: IBMVM@LISTSERV.UARK.EDU 
Subject: Re: EREP process question.

 

Ed, Once again thanks,

 

The RUNEREP exec, when it gets to the following statement:

 

'PRINT SYSEXN RPT-HDR (CC'

states that it can't find file SYSEXN RPT-HDR 

 

Is this really a separate file or something else.

 

If separate could you forward a sample of the file.

 

 

Thanks


>>> Ed Zell <[EMAIL PROTECTED]> 12/4/2008 4:55 PM >>>

Howard,

Here is how we process EREP.

   Operator logs on to EREP and issues#CP EXTand then responds 
  END   to the prompt.

   Operator types   RUNEREP   to fire up the EXEC to process the data
and then clear it out

   After it runs, Operator typesPROFILE   to start EREP back up
again and then  #CP DISC

  

/* RUNEREP EXEC   PROCESS EREP DATA */
' ACC 201 C/A'
‘ CP SPOOL PRINTER TO SPOOLER CLASS Z NOHOLD CONT' 
' PRINT SYSEXN RPT-HDR (CC'
' EXEC SYSEXN   '  
' PRINT SUMMARY  RPT-HDR (CC ' 
' EXEC SUMMARY  '  
' PRINT CLEARIT  RPT-HDR (CC ' 
' EXEC CLEARIT'
' CP SPOOL PRINTER CLOSE NAME EREP 12345'  
‘ REL C’


/*  SYSEXN EXEC  SYSTEM EXCEPTION REPORT  */ 
MAKEBUF 
QUEUE 'SYSEXN,TABSIZE=512K,ACC=N  ' 
QUEUE   
'CPEREP'


/* SUMMARY EXEC   PRODUCE SUMMARY REPORT  */
MAKEBUF 
QUEUE 'PRINT=SU,ACC=N,TABSIZE=100K,LINECT=60 '  
QUEUE   
'CPEREP'


/* CLEARIT EXECCLEAR OUT THE FILE  */
MAKEBUF   
QUEUE 'PRINT=AL,ACC=N,TABSIZE=100K,LINECT=60,ZERO=Y ' 
QUEUE 
'CPEREP'  



Ed Zell
Illinois Mutual Life
(309) 636-0107





From:The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Howard Rifkind
Sent: Thursday, December 04, 2008 3:32 PM
To: IBMVM@LISTSERV.UARK.EDU 
Subject: EREP process question.

 

I'm using the EREP parameter below to go against the z/VM EREP
machine.

 

The file XAEREPIO RECORD is out there and is some what larger then
yesterday.

 

Shouldn't the above file be deleted by these parameter?

 

SYSUM   
ACC=Y   
ZERO=Y  
ENDPARM 

 


_
LEGAL NOTICE
Unless expressly stated otherwise, this message is confidential
and may be privileged. It is intended for the addressee(s) only.
Access to this E-mail by anyone else is unauthorized.
If you are not an addressee, any disclosure or copying of the
contents of this E-mail or any action taken (or not taken) in
reliance on it is unauthorized and may be unlawful. If you are not an
addressee, please inform the sender immediately, then delete this
message and empty from your trash.

 

 
Confidentiality:  This e-mail (including any attachments) may contain
confidential, proprietary and privileged information, and unauthorized
disclosure or use is prohibited.  If you receive this e-mail in error,
please notify the sender and delete this e-mail from your system.
 


_
LEGAL NOTICE
Unless expressly stated otherwise, this message is confidential
and may be privileged. It is intende

Re: EREP process question.

2008-12-05 Thread Ray Waters
Howard,
Even if you clear the EREP file, or erase it, then once EREP start accumulating 
data in XAEREPIO RECORD on his A disk, the records are variable length and will 
start to grow in length.
For example, if I clear EREP, the max record size usually start s out at 114, 
then will grow to Max of 256 in my shop.
Ray

From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On Behalf Of 
Howard Rifkind
Sent: Thursday, December 04, 2008 3:32 PM
To: IBMVM@LISTSERV.UARK.EDU
Subject: EREP process question.

I'm using the EREP parameter below to go against the z/VM EREP machine.

The file XAEREPIO RECORD is out there and is some what larger then yesterday.

Shouldn't the above file be deleted by these parameter?

SYSUM
ACC=Y
ZERO=Y
ENDPARM


_
LEGAL NOTICE
Unless expressly stated otherwise, this message is confidential
and may be privileged. It is intended for the addressee(s) only.
Access to this E-mail by anyone else is unauthorized.
If you are not an addressee, any disclosure or copying of the
contents of this E-mail or any action taken (or not taken) in
reliance on it is unauthorized and may be unlawful. If you are not an
addressee, please inform the sender immediately, then delete this
message and empty from your trash.




NOTICE:
This e-mail is intended solely for the use of the individual to whom it is 
addressed and may contain information that is privileged, confidential or 
otherwise exempt from disclosure. If the reader of this e-mail is not the 
intended recipient or the employee or agent responsible for delivering the 
message to the intended recipient, you are hereby notified that any 
dissemination, distribution, or copying of this communication is strictly 
prohibited. If you have received this communication in error, please 
immediately notify us by replying to the original message at the listed email 
address. Thank You.


Re: EREP process question.

2008-12-05 Thread Ed Zell
Hi Howard,

  That file is just a "print header" file that we use to separate the
reports.  Since
  I use 'CP SPOOL PRT CONT' everything comes out in one spool file.  I
wanted 
  some kind of header to show me where one ended and the next began.
You
  can either remove these lines, or create file with those names for
separator
  pages.



 ' PRINT SYSEXN RPT-HDR (CC'   
 ' PRINT SUMMARY  RPT-HDR (CC '  
 ' PRINT CLEARIT  RPT-HDR (CC '

   

  Here is what one of them looks like:



1

 *
 **
**
 **
**
 **  SYSTEM EXCEPTION REPORT  **
 **
**
 **
**
 **


Ed Zell
Illinois Mutual Life
(309) 636-0107





From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Howard Rifkind
Sent: Thursday, December 04, 2008 5:19 PM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Re: EREP process question.

 

Ed, Once again thanks,

 

The RUNEREP exec, when it gets to the following statement:

 

'PRINT SYSEXN RPT-HDR (CC'

states that it can't find file SYSEXN RPT-HDR 

 

Is this really a separate file or something else.

 

If separate could you forward a sample of the file.

 

 

Thanks


>>> Ed Zell <[EMAIL PROTECTED]> 12/4/2008 4:55 PM >>>

Howard,

Here is how we process EREP.

   Operator logs on to EREP and issues#CP EXTand then responds
END   to the prompt.

   Operator types   RUNEREP   to fire up the EXEC to process the data
and then clear it out

   After it runs, Operator typesPROFILE   to start EREP back up
again and then  #CP DISC

  

/* RUNEREP EXEC   PROCESS EREP DATA */
' ACC 201 C/A'
' CP SPOOL PRINTER TO SPOOLER CLASS Z NOHOLD CONT' 
' PRINT SYSEXN RPT-HDR (CC'
' EXEC SYSEXN   '  
' PRINT SUMMARY  RPT-HDR (CC ' 
' EXEC SUMMARY  '  
' PRINT CLEARIT  RPT-HDR (CC ' 
' EXEC CLEARIT'
' CP SPOOL PRINTER CLOSE NAME EREP 12345'  
' REL C'


/*  SYSEXN EXEC  SYSTEM EXCEPTION REPORT  */ 
MAKEBUF 
QUEUE 'SYSEXN,TABSIZE=512K,ACC=N  ' 
QUEUE   
'CPEREP'


/* SUMMARY EXEC   PRODUCE SUMMARY REPORT  */
MAKEBUF 
QUEUE 'PRINT=SU,ACC=N,TABSIZE=100K,LINECT=60 '  
QUEUE   
'CPEREP'


/* CLEARIT EXECCLEAR OUT THE FILE  */
MAKEBUF   
QUEUE 'PRINT=AL,ACC=N,TABSIZE=100K,LINECT=60,ZERO=Y ' 
QUEUE 
'CPEREP'  




Ed Zell
Illinois Mutual Life
(309) 636-0107






From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Howard Rifkind
Sent: Thursday, December 04, 2008 3:32 PM
To: IBMVM@LISTSERV.UARK.EDU
Subject: EREP process question.

 

I'm using the EREP parameter below to go against the z/VM EREP machine.

 

The file XAEREPIO RECORD is out there and is some what larger then
yesterday.

 

Shouldn't the above file be deleted by these parameter?

 

SYSUM   
ACC=Y   
ZERO=Y  
ENDPARM 

 


_
LEGAL NOTICE
Unless expressly stated otherwise, this message is confidential
and may be privileged. It is intended for the addressee(s) only.
Access to this E-mail by anyone else is unauthorized.
If you are not an addressee, any disclosure or copying of the
contents of this E-mail or any action taken (or not taken) in
reliance on it is unauthorized and may be unlawful. If you are not an
addressee, please inform the sender immediately, then delete this
message and empty from your trash.

 

 

Confidentiality:  This e-mail (including any attachments) may contain
confidential, proprietary and privileged information, and unauthorized
disclosure or use is prohibited.  If you receive this e-mail in error,
please notify the sender and delete this e-mail from your system.

 


_
LEGAL NOTICE
Unless expressly stated otherwise, this message is confidential
and may be privileged. It is intended for the addressee(s) only.
Access to this E-mail by anyone else is unauthorized.
If you are not an addressee, any disclosure or copying of the
contents of this E-mail or any action taken (or not taken) in
reliance on it is unauthorized and may be unlawful. If you are not an
addressee, please inform the sender immediately, then delete this
message and empty from your

Re: EREP process question.

2008-12-04 Thread Howard Rifkind
Ed, Once again thanks,
 
The RUNEREP exec, when it gets to the following statement:
 
'PRINT SYSEXN RPT-HDR (CC'

states that it can't find file SYSEXN RPT-HDR 
 
Is this really a separate file or something else.
 
If separate could you forward a sample of the file.
 
 
Thanks

>>> Ed Zell <[EMAIL PROTECTED]> 12/4/2008 4:55 PM >>>

Howard,

Here is how we process EREP.

   Operator logs on to EREP and issues#CP EXTand then responds 
  END   to the prompt.

   Operator types   RUNEREP   to fire up the EXEC to process the data
and then clear it out

   After it runs, Operator typesPROFILE   to start EREP back up
again and then  #CP DISC

  

/* RUNEREP EXEC   PROCESS EREP DATA */
' ACC 201 C/A'
‘ CP SPOOL PRINTER TO SPOOLER CLASS Z NOHOLD CONT' 
' PRINT SYSEXN RPT-HDR (CC'
' EXEC SYSEXN   '  
' PRINT SUMMARY  RPT-HDR (CC ' 
' EXEC SUMMARY  '  
' PRINT CLEARIT  RPT-HDR (CC ' 
' EXEC CLEARIT'
' CP SPOOL PRINTER CLOSE NAME EREP 12345'  
‘ REL C’


/*  SYSEXN EXEC  SYSTEM EXCEPTION REPORT  */ 
MAKEBUF 
QUEUE 'SYSEXN,TABSIZE=512K,ACC=N  ' 
QUEUE   
'CPEREP'


/* SUMMARY EXEC   PRODUCE SUMMARY REPORT  */
MAKEBUF 
QUEUE 'PRINT=SU,ACC=N,TABSIZE=100K,LINECT=60 '  
QUEUE   
'CPEREP'


/* CLEARIT EXECCLEAR OUT THE FILE  */
MAKEBUF   
QUEUE 'PRINT=AL,ACC=N,TABSIZE=100K,LINECT=60,ZERO=Y ' 
QUEUE 
'CPEREP'  




Ed Zell
Illinois Mutual Life
(309) 636-0107






From:The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Howard Rifkind
Sent: Thursday, December 04, 2008 3:32 PM
To: IBMVM@LISTSERV.UARK.EDU 
Subject: EREP process question.

 

I'm using the EREP parameter below to go against the z/VM EREP
machine.

 

The file XAEREPIO RECORD is out there and is some what larger then
yesterday.

 

Shouldn't the above file be deleted by these parameter?

 

SYSUM   
ACC=Y   
ZERO=Y  
ENDPARM 

 


_
LEGAL NOTICE
Unless expressly stated otherwise, this message is confidential
and may be privileged. It is intended for the addressee(s) only.
Access to this E-mail by anyone else is unauthorized.
If you are not an addressee, any disclosure or copying of the
contents of this E-mail or any action taken (or not taken) in
reliance on it is unauthorized and may be unlawful. If you are not an
addressee, please inform the sender immediately, then delete this
message and empty from your trash.

 

 
Confidentiality:  This e-mail (including any attachments) may contain
confidential, proprietary and privileged information, and unauthorized
disclosure or use is prohibited.  If you receive this e-mail in error,
please notify the sender and delete this e-mail from your system.
_
LEGAL NOTICE
Unless expressly stated otherwise, this message is confidential
and may be privileged. It is intended for the addressee(s) only.
Access to this E-mail by anyone else is unauthorized.
If you are not an addressee, any disclosure or copying of the
contents of this E-mail or any action taken (or not taken) in
reliance on it is unauthorized and may be unlawful. If you are not an
addressee, please inform the sender immediately, then delete this
message and empty from your trash.


Re: EREP process question.

2008-12-04 Thread Howard Rifkind
Sorry Ed,  Now I see exactly what you are doing.

>>> Ed Zell <[EMAIL PROTECTED]> 12/4/2008 4:55 PM >>>

Howard,

Here is how we process EREP.

   Operator logs on to EREP and issues#CP EXTand then responds 
  END   to the prompt.

   Operator types   RUNEREP   to fire up the EXEC to process the data
and then clear it out

   After it runs, Operator typesPROFILE   to start EREP back up
again and then  #CP DISC

  

/* RUNEREP EXEC   PROCESS EREP DATA */
' ACC 201 C/A'
‘ CP SPOOL PRINTER TO SPOOLER CLASS Z NOHOLD CONT' 
' PRINT SYSEXN RPT-HDR (CC'
' EXEC SYSEXN   '  
' PRINT SUMMARY  RPT-HDR (CC ' 
' EXEC SUMMARY  '  
' PRINT CLEARIT  RPT-HDR (CC ' 
' EXEC CLEARIT'
' CP SPOOL PRINTER CLOSE NAME EREP 12345'  
‘ REL C’


/*  SYSEXN EXEC  SYSTEM EXCEPTION REPORT  */ 
MAKEBUF 
QUEUE 'SYSEXN,TABSIZE=512K,ACC=N  ' 
QUEUE   
'CPEREP'


/* SUMMARY EXEC   PRODUCE SUMMARY REPORT  */
MAKEBUF 
QUEUE 'PRINT=SU,ACC=N,TABSIZE=100K,LINECT=60 '  
QUEUE   
'CPEREP'


/* CLEARIT EXECCLEAR OUT THE FILE  */
MAKEBUF   
QUEUE 'PRINT=AL,ACC=N,TABSIZE=100K,LINECT=60,ZERO=Y ' 
QUEUE 
'CPEREP'  




Ed Zell
Illinois Mutual Life
(309) 636-0107






From:The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Howard Rifkind
Sent: Thursday, December 04, 2008 3:32 PM
To: IBMVM@LISTSERV.UARK.EDU 
Subject: EREP process question.

 

I'm using the EREP parameter below to go against the z/VM EREP
machine.

 

The file XAEREPIO RECORD is out there and is some what larger then
yesterday.

 

Shouldn't the above file be deleted by these parameter?

 

SYSUM   
ACC=Y   
ZERO=Y  
ENDPARM 

 


_
LEGAL NOTICE
Unless expressly stated otherwise, this message is confidential
and may be privileged. It is intended for the addressee(s) only.
Access to this E-mail by anyone else is unauthorized.
If you are not an addressee, any disclosure or copying of the
contents of this E-mail or any action taken (or not taken) in
reliance on it is unauthorized and may be unlawful. If you are not an
addressee, please inform the sender immediately, then delete this
message and empty from your trash.

 

 
Confidentiality:  This e-mail (including any attachments) may contain
confidential, proprietary and privileged information, and unauthorized
disclosure or use is prohibited.  If you receive this e-mail in error,
please notify the sender and delete this e-mail from your system.
_
LEGAL NOTICE
Unless expressly stated otherwise, this message is confidential
and may be privileged. It is intended for the addressee(s) only.
Access to this E-mail by anyone else is unauthorized.
If you are not an addressee, any disclosure or copying of the
contents of this E-mail or any action taken (or not taken) in
reliance on it is unauthorized and may be unlawful. If you are not an
addressee, please inform the sender immediately, then delete this
message and empty from your trash.


Re: EREP process question.

2008-12-04 Thread Howard Rifkind
Thanks Ed,
 
Don't you need FILDEFS statements?
 
and
 
is EXEC SYSEXN   the control file  with the parameters???

>>> Ed Zell <[EMAIL PROTECTED]> 12/4/2008 4:55 PM >>>

Howard,

Here is how we process EREP.

   Operator logs on to EREP and issues#CP EXTand then responds 
  END   to the prompt.

   Operator types   RUNEREP   to fire up the EXEC to process the data
and then clear it out

   After it runs, Operator typesPROFILE   to start EREP back up
again and then  #CP DISC

  

/* RUNEREP EXEC   PROCESS EREP DATA */
' ACC 201 C/A'
‘ CP SPOOL PRINTER TO SPOOLER CLASS Z NOHOLD CONT' 
' PRINT SYSEXN RPT-HDR (CC'
' EXEC SYSEXN   '  
' PRINT SUMMARY  RPT-HDR (CC ' 
' EXEC SUMMARY  '  
' PRINT CLEARIT  RPT-HDR (CC ' 
' EXEC CLEARIT'
' CP SPOOL PRINTER CLOSE NAME EREP 12345'  
‘ REL C’


/*  SYSEXN EXEC  SYSTEM EXCEPTION REPORT  */ 
MAKEBUF 
QUEUE 'SYSEXN,TABSIZE=512K,ACC=N  ' 
QUEUE   
'CPEREP'


/* SUMMARY EXEC   PRODUCE SUMMARY REPORT  */
MAKEBUF 
QUEUE 'PRINT=SU,ACC=N,TABSIZE=100K,LINECT=60 '  
QUEUE   
'CPEREP'


/* CLEARIT EXECCLEAR OUT THE FILE  */
MAKEBUF   
QUEUE 'PRINT=AL,ACC=N,TABSIZE=100K,LINECT=60,ZERO=Y ' 
QUEUE 
'CPEREP'  




Ed Zell
Illinois Mutual Life
(309) 636-0107






From:The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Howard Rifkind
Sent: Thursday, December 04, 2008 3:32 PM
To: IBMVM@LISTSERV.UARK.EDU 
Subject: EREP process question.

 

I'm using the EREP parameter below to go against the z/VM EREP
machine.

 

The file XAEREPIO RECORD is out there and is some what larger then
yesterday.

 

Shouldn't the above file be deleted by these parameter?

 

SYSUM   
ACC=Y   
ZERO=Y  
ENDPARM 

 


_
LEGAL NOTICE
Unless expressly stated otherwise, this message is confidential
and may be privileged. It is intended for the addressee(s) only.
Access to this E-mail by anyone else is unauthorized.
If you are not an addressee, any disclosure or copying of the
contents of this E-mail or any action taken (or not taken) in
reliance on it is unauthorized and may be unlawful. If you are not an
addressee, please inform the sender immediately, then delete this
message and empty from your trash.

 

 
Confidentiality:  This e-mail (including any attachments) may contain
confidential, proprietary and privileged information, and unauthorized
disclosure or use is prohibited.  If you receive this e-mail in error,
please notify the sender and delete this e-mail from your system.
_
LEGAL NOTICE
Unless expressly stated otherwise, this message is confidential
and may be privileged. It is intended for the addressee(s) only.
Access to this E-mail by anyone else is unauthorized.
If you are not an addressee, any disclosure or copying of the
contents of this E-mail or any action taken (or not taken) in
reliance on it is unauthorized and may be unlawful. If you are not an
addressee, please inform the sender immediately, then delete this
message and empty from your trash.


Re: EREP process question.

2008-12-04 Thread Ed Zell
Howard,

Here is how we process EREP.

   Operator logs on to EREP and issues#CP EXTand then responds
END   to the prompt.

   Operator types   RUNEREP   to fire up the EXEC to process the data
and then clear it out

   After it runs, Operator typesPROFILE   to start EREP back up
again and then  #CP DISC

  

/* RUNEREP EXEC   PROCESS EREP DATA */
' ACC 201 C/A'
' CP SPOOL PRINTER TO SPOOLER CLASS Z NOHOLD CONT' 
' PRINT SYSEXN RPT-HDR (CC'
' EXEC SYSEXN   '  
' PRINT SUMMARY  RPT-HDR (CC ' 
' EXEC SUMMARY  '  
' PRINT CLEARIT  RPT-HDR (CC ' 
' EXEC CLEARIT'
' CP SPOOL PRINTER CLOSE NAME EREP 12345'  
' REL C'


/*  SYSEXN EXEC  SYSTEM EXCEPTION REPORT  */ 
MAKEBUF 
QUEUE 'SYSEXN,TABSIZE=512K,ACC=N  ' 
QUEUE   
'CPEREP'


/* SUMMARY EXEC   PRODUCE SUMMARY REPORT  */
MAKEBUF 
QUEUE 'PRINT=SU,ACC=N,TABSIZE=100K,LINECT=60 '  
QUEUE   
'CPEREP'


/* CLEARIT EXECCLEAR OUT THE FILE  */
MAKEBUF   
QUEUE 'PRINT=AL,ACC=N,TABSIZE=100K,LINECT=60,ZERO=Y ' 
QUEUE 
'CPEREP'  





Ed Zell
Illinois Mutual Life
(309) 636-0107







From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Howard Rifkind
Sent: Thursday, December 04, 2008 3:32 PM
To: IBMVM@LISTSERV.UARK.EDU
Subject: EREP process question.

 

I'm using the EREP parameter below to go against the z/VM EREP machine.

 

The file XAEREPIO RECORD is out there and is some what larger then
yesterday.

 

Shouldn't the above file be deleted by these parameter?

 

SYSUM   
ACC=Y   
ZERO=Y  
ENDPARM 

 


_
LEGAL NOTICE
Unless expressly stated otherwise, this message is confidential
and may be privileged. It is intended for the addressee(s) only.
Access to this E-mail by anyone else is unauthorized.
If you are not an addressee, any disclosure or copying of the
contents of this E-mail or any action taken (or not taken) in
reliance on it is unauthorized and may be unlawful. If you are not an
addressee, please inform the sender immediately, then delete this
message and empty from your trash.

 


.


CONFIDENTIALITY: This e-mail (including any attachments) may contain 
confidential, proprietary and privileged information, and unauthorized 
disclosure or use is prohibited.  If you receive this e-mail in error, notify 
the sender and delete this e-mail from your system.


Re: EREP process question.

2008-12-04 Thread Schuh, Richard
Don't you have to specify HIST=Y or some such to get it to clear the
file? IIRC, that used to be the case.
 

Regards, 
Richard Schuh 

 

 




From: The IBM z/VM Operating System
[mailto:[EMAIL PROTECTED] On Behalf Of Howard Rifkind
Sent: Thursday, December 04, 2008 1:32 PM
To: IBMVM@LISTSERV.UARK.EDU
Subject: EREP process question.


I'm using the EREP parameter below to go against the z/VM EREP
machine.
 
The file XAEREPIO RECORD is out there and is some what larger
then yesterday.
 
Shouldn't the above file be deleted by these parameter?
 
SYSUM   
ACC=Y   
ZERO=Y  
ENDPARM 




_
LEGAL NOTICE
Unless expressly stated otherwise, this message is confidential
and may be privileged. It is intended for the addressee(s) only.
Access to this E-mail by anyone else is unauthorized.
If you are not an addressee, any disclosure or copying of the
contents of this E-mail or any action taken (or not taken) in
reliance on it is unauthorized and may be unlawful. If you are not an
addressee, please inform the sender immediately, then delete this
message and empty from your trash.