Re: ipcs print output

2010-02-27 Thread Bob Rutledge

Paul Schuster wrote:

Hello:

Is there a way to -not- have a 'TITLE' page separator appear in the IPCSPRNT
output? For example, I do a SYSTRACE and there is no page separator, but
when I do OPEN PRINT(TITLE('')); SYSTRACE PRINT NOTERMINAL; CLOSE PRINT;  I
get a line break.

I am looking for something like the LINECOUNT(0) option of HLASM.


Check out PROFILE PAGESIZE in the IPCS Commands book.

Bob

--
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: ipcs print output

2010-02-27 Thread Paul Schuster
On Sat, 27 Feb 2010 07:37:38 -0500, Bob Rutledge deerh...@ix.netcom.com
wrote:

Paul Schuster wrote:
 Hello:

 Is there a way to -not- have a 'TITLE' page separator appear in the IPCSPRNT
 output? For example, I do a SYSTRACE and there is no page separator, but
 when I do OPEN PRINT(TITLE('')); SYSTRACE PRINT NOTERMINAL; CLOSE PRINT;  I
 get a line break.

 I am looking for something like the LINECOUNT(0) option of HLASM.

Check out PROFILE PAGESIZE in the IPCS Commands book.

Bob

Yes thank you very much.  That is what I was looking for.

Paul

--
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


ipcs print output

2010-02-26 Thread Paul Schuster
Hello:

Is there a way to -not- have a 'TITLE' page separator appear in the IPCSPRNT
output? For example, I do a SYSTRACE and there is no page separator, but
when I do OPEN PRINT(TITLE('')); SYSTRACE PRINT NOTERMINAL; CLOSE PRINT;  I
get a line break.

I am looking for something like the LINECOUNT(0) option of HLASM.

Thank you.

Paul 

--
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: Print output

2008-06-10 Thread Paul Gilmartin
On Mon, 9 Jun 2008 18:45:23 -0600, Steve Comstock wrote:

I was too quick on my Send when I said SYSOUT=(*) instead
of SYSOUT=(,), ...

Indeed.  The explicit * on the DD statement overrides the
CLASS on the OUTPUT statement.

It's my surmise that the requirement for the comma instead
of simply SYSOUT=() (why should two null subparameters be
better than one?) is YA bug in the JCL parser that IBM chose
to document as a feature rather than to repair.  IIRC, I
submitted the RCF that caused it to be documented.

Is there any other keyword on any JCL statement that requires
or even accepts two null subparameters?

-- gil

--
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: Print output

2008-06-10 Thread McKown, John
[snip]
 Does that really work? I think you have to code the last
 line as
 
 //REPORT  DD  SYSOUT=(,),OUTPUT=(*.CLASSA,*.CLASSB)
 
 I was too quick on my Send when I said SYSOUT=(*) instead
 of SYSOUT=(,), but I'm pretty sure you have to specify
 the operands in the OUTPUT= parameter as backwards
 references.

You're right.

--
John McKown
Senior Systems Programmer
HealthMarkets
Keeping the Promise of Affordable Coverage
Administrative Services Group
Information Technology

The information contained in this e-mail message may be privileged
and/or confidential.  It is for intended addressee(s) only.  If you are
not the intended recipient, you are hereby notified that any disclosure,
reproduction, distribution or other use of this communication is
strictly prohibited and could, in certain circumstances, be a criminal
offense.  If you have received this e-mail in error, please notify the
sender by reply and delete this message without copying or disclosing
it.  

--
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



Print output

2008-06-09 Thread Roberto Halais
Hi:

Is there a way to print a report to two (2) different jes2 classes (A and B)
using a single SYSOUT?

I want to print a report in a single job step but I want a copy of it in
CLASS=A and another in CLASS=B.

I tried using the OUTPUT statement and could only produce the two copies in
a single class.

Any help is greatly appreciated.

Thank you,
Roberto

--
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: Print output

2008-06-09 Thread McKown, John
 -Original Message-
 From: IBM Mainframe Discussion List 
 [mailto:[EMAIL PROTECTED] On Behalf Of Roberto Halais
 Sent: Monday, June 09, 2008 1:07 PM
 To: IBM-MAIN@BAMA.UA.EDU
 Subject: Print output
 
 Hi:
 
 Is there a way to print a report to two (2) different jes2 
 classes (A and B)
 using a single SYSOUT?
 
 I want to print a report in a single job step but I want a 
 copy of it in
 CLASS=A and another in CLASS=B.
 
 I tried using the OUTPUT statement and could only produce the 
 two copies in
 a single class.
 
 Any help is greatly appreciated.
 
 Thank you,
 Roberto

You're close:

//CLASSA OUTPUT SYSOUT=A,other parms as needed
//CLASSB OUTPUT SYSOUT=B,other parms as needed
//STEP1 EXEC ...
//REPORT DD SYSOUT=(,),OUTPUT=(CLASSA,CLASSB)

--
John McKown
Senior Systems Programmer
HealthMarkets
Keeping the Promise of Affordable Coverage
Administrative Services Group
Information Technology

The information contained in this e-mail message may be privileged
and/or confidential.  It is for intended addressee(s) only.  If you are
not the intended recipient, you are hereby notified that any disclosure,
reproduction, distribution or other use of this communication is
strictly prohibited and could, in certain circumstances, be a criminal
offense.  If you have received this e-mail in error, please notify the
sender by reply and delete this message without copying or disclosing
it.  

--
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: Print output

2008-06-09 Thread Edward Jaffe

Roberto Halais wrote:

Hi:

Is there a way to print a report to two (2) different jes2 classes (A and B)
using a single SYSOUT?

I want to print a report in a single job step but I want a copy of it in
CLASS=A and another in CLASS=B.

I tried using the OUTPUT statement and could only produce the two copies in
a single class.
  


Two OUTPUT statements. Each specifies its own CLASS.

--
Edward E Jaffe
Phoenix Software International, Inc
5200 W Century Blvd, Suite 800
Los Angeles, CA 90045
310-338-0400 x318
[EMAIL PROTECTED]
http://www.phoenixsoftware.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: Print output

2008-06-09 Thread Roberto Halais
Thank you, John. it worked like a charm.
Did not know you could code sysout=(,).

Thanks again.


On 6/9/08, McKown, John [EMAIL PROTECTED] wrote:

  -Original Message-
  From: IBM Mainframe Discussion List
  [mailto:[EMAIL PROTECTED] On Behalf Of Roberto Halais
  Sent: Monday, June 09, 2008 1:07 PM
  To: IBM-MAIN@BAMA.UA.EDU
  Subject: Print output
 
  Hi:
 
  Is there a way to print a report to two (2) different jes2
  classes (A and B)
  using a single SYSOUT?
 
  I want to print a report in a single job step but I want a
  copy of it in
  CLASS=A and another in CLASS=B.
 
  I tried using the OUTPUT statement and could only produce the
  two copies in
  a single class.
 
  Any help is greatly appreciated.
 
  Thank you,
  Roberto

 You're close:

 //CLASSA OUTPUT SYSOUT=A,other parms as needed
 //CLASSB OUTPUT SYSOUT=B,other parms as needed
 //STEP1 EXEC ...
 //REPORT DD SYSOUT=(,),OUTPUT=(CLASSA,CLASSB)

 --
 John McKown
 Senior Systems Programmer
 HealthMarkets
 Keeping the Promise of Affordable Coverage
 Administrative Services Group
 Information Technology

 The information contained in this e-mail message may be privileged
 and/or confidential.  It is for intended addressee(s) only.  If you are
 not the intended recipient, you are hereby notified that any disclosure,
 reproduction, distribution or other use of this communication is
 strictly prohibited and could, in certain circumstances, be a criminal
 offense.  If you have received this e-mail in error, please notify the
 sender by reply and delete this message without copying or disclosing
 it.

 --
 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




-- 
I am as you, in you, for you. One as you in all, as all, forever. My call
is your call.

--
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: Print output

2008-06-09 Thread Steve Comstock

Roberto Halais wrote:

Hi:

Is there a way to print a report to two (2) different jes2 classes (A and B)
using a single SYSOUT?

I want to print a report in a single job step but I want a copy of it in
CLASS=A and another in CLASS=B.

I tried using the OUTPUT statement and could only produce the two copies in
a single class.

Any help is greatly appreciated.

Thank you,
Roberto


Look at the OUTPUT statement; add OUTPUT statements for
every jes class you want to write to, then on the
DD statements for your sysout files, add

OUTPUT=(*.OT1,OT2) and so on.

(have to change the DD statements to say SYSOUT=(*) )


Kind regards,

-Steve Comstock
The Trainer's Friend, Inc.

303-393-8716
http://www.trainersfriend.com

  z/OS Application development made easier
* Our classes include
   + How things work
   + Programming examples with realistic applications
   + Starter / skeleton code
   + Complete working programs
   + Useful utilities and subroutines
   + Tips and techniques

== Check out the Trainer's Friend Store to purchase z/OS  ==
== application developer toolkits. Sample code in four==
== programming languages, JCL to Assemble or compile, ==
== bind and test. ==
==   http://www.trainersfriend.com/TTFStore/index.html==

--
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: Print output

2008-06-09 Thread Ed Finnell
 
In a message dated 6/9/2008 1:19:04 P.M. Central Daylight Time,  
[EMAIL PROTECTED] writes:

Look at the OUTPUT statement; add OUTPUT statements for
every jes  class you want to write to, then on the
DD statements for your sysout  files, add



Well, I went back and peeked at the manual!  Evidently this is dependant on 
whether you have DEFAULT=YES coded. Try the  example with Producing mutiple 
outputs in Users Guide.
 
 Ever wonder why the Users Guide and  Reference are 30 manuals apart?








**Get trade secrets for amazing burgers. Watch Cooking with 
Tyler Florence on AOL Food.  
(http://food.aol.com/tyler-florence?video=4?NCID=aolfod000302)

--
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: Print output

2008-06-09 Thread Steve Comstock

McKown, John wrote:

-Original Message-
From: IBM Mainframe Discussion List 
[mailto:[EMAIL PROTECTED] On Behalf Of Roberto Halais

Sent: Monday, June 09, 2008 1:07 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Print output

Hi:

Is there a way to print a report to two (2) different jes2 
classes (A and B)

using a single SYSOUT?

I want to print a report in a single job step but I want a 
copy of it in

CLASS=A and another in CLASS=B.

I tried using the OUTPUT statement and could only produce the 
two copies in

a single class.

Any help is greatly appreciated.

Thank you,
Roberto


You're close:

//CLASSA OUTPUT SYSOUT=A,other parms as needed
//CLASSB OUTPUT SYSOUT=B,other parms as needed
//STEP1 EXEC ...
//REPORT DD SYSOUT=(,),OUTPUT=(CLASSA,CLASSB)


Does that really work? I think you have to code the last
line as

//REPORT  DD  SYSOUT=(,),OUTPUT=(*.CLASSA,*.CLASSB)

I was too quick on my Send when I said SYSOUT=(*) instead
of SYSOUT=(,), but I'm pretty sure you have to specify
the operands in the OUTPUT= parameter as backwards
references.


Kind regards,

-Steve Comstock
The Trainer's Friend, Inc.

303-393-8716
http://www.trainersfriend.com

  z/OS Application development made easier
* Our classes include
   + How things work
   + Programming examples with realistic applications
   + Starter / skeleton code
   + Complete working programs
   + Useful utilities and subroutines
   + Tips and techniques

== Check out the Trainer's Friend Store to purchase z/OS  ==
== application developer toolkits. Sample code in four==
== programming languages, JCL to Assemble or compile, ==
== bind and test. ==
==   http://www.trainersfriend.com/TTFStore/index.html==

--
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: Slow Mainframe Print Output

2006-09-19 Thread John S. Giltner, Jr.
It sounds like they are doing a screen print.  I am not sure about 
Extra, but I know PCOMM has an option to do screen prints in text or 
graphic mode.  In text mode, it just dumps the text characters, in 
graphics mode it generated a graphic picture of the screen.  Least to 
say, graphics mode was slow, slow, slow.




[EMAIL PROTECTED] wrote:

Hey there, I'm wondering if anyone out there can help me out.  Here's
the short version:  Any user printing from a program called Attachmate
EXTRA! 3270 Emulator (version 8) to an IBM series printer (Infoprint
1352/1552) will have slow output.  I'm talking about 1-2 minutes for
one page to print.  First the header page will print...fast...then the
printer will churn and churn and churn...until the page will SLOWLY
print.

We've opened tickets with Microsoft, IBM, and Attachmate, with the
expected results.  Microsoft states that it's a problem with the way
IBM reads the data from the Attachmate program.  IBM states that it's a
problem with the default Microsoft pcl.sep file used for the seperator
page.  Finally, Attachmate says it's a problem with the way IBM
emulates the mainframe data into a PCL format.  Keep in mind, the users
are simply clicking the Print button in the emulation terminal, and
aren't keying in specific mainframe print commands.

Here's our environment:

Users - Windows 2000 SP4 / Windows XP Pro SP2 on a standard company
LAN.

Printing to:

Printer entries added to a clustered print server running Windows 2003
Server.  Each printer is added to the server using Direct IP ports and
shared to the users of the network.

It only affects users of IBM printers printing from the Attachmate
program.  All other print operations from other programs print
normally.  The problem goes away when we disable the seperator page on
the server.  Since management has deemed this unacceptable, we have
to find a way to work around it.  We've taken apart the pcl.sep file
and tried adding commands in line-by-line with no change in results.

Has anyone out there encountered this before?



--
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