IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Help me to understand the following JCL Code


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Rupesh.Kothari

Member of the Month


Joined: 27 Apr 2005
Posts: 463

PostPosted: Wed Jun 21, 2006 1:03 pm
Reply with quote

Hi all,

Could anyone help me to understand following JCL code in detail

Code:
//AB1234 DD  SYSOUT=(E,,AL08),                   
//            FCB=AL08,                           
//             COPIES=1,                           
//             CHARS=GS15,                         
//             DCB=(RECFM=FBA,LRECL=88,BLKSIZE=0), 
//             MODIFY=AL08   


Thanks
Rupesh
Back to top
View user's profile Send private message
superk

Global Moderator


Joined: 26 Apr 2004
Posts: 4652
Location: Raleigh, NC, USA

PostPosted: Wed Jun 21, 2006 3:48 pm
Reply with quote

AB1234 Output print DDNAME
SYSOUT=(E,,AL08), Print class and form name. This probably represents a specific printer loaded with a specific form (might be a certain size paper or might contain pre-printed information).
FCB=AL08, Forms Control Buffer. AL08 is a member in the 'SYS1.IMAGELIB' library that tells the printer how to move the paper along through the printer. It also indicates the Lines-Per-Inch (LPI).
COPIES=1, self-explanatory.
CHARS=GS15, indicates what printer character set (i.e. font) to use. In this case, GS15 is a standard fixed-space font, Gothic Serif 15-pitch (15-characters per inch).
DCB=(RECFM=FBA,LRECL=88,BLKSIZE=0), RECFM=FBA (Fixed Block ANSI) indicates that the output contains ANSI printer-control characters.
MODIFY=AL08 is a Copy Modification Module member in 'SYS1.IMAGELIB'. MODIFY applies only for the 3800 Printing Subsystem Models 1 and 2 and the 3800 Printing Subsystem Models 3, 6, and 8 in compatibility mode. The module can specify the following:

  • Legends.
  • Column headings.
  • Where and on which copies the data is to be printed.
Back to top
View user's profile Send private message
Rupesh.Kothari

Member of the Month


Joined: 27 Apr 2005
Posts: 463

PostPosted: Wed Jun 21, 2006 3:54 pm
Reply with quote

Hi SuperK,

Thansk a lot for this.

This is called generous...

Thanks
Rupesh
Back to top
View user's profile Send private message
superk

Global Moderator


Joined: 26 Apr 2004
Posts: 4652
Location: Raleigh, NC, USA

PostPosted: Wed Jun 21, 2006 5:39 pm
Reply with quote

No problem. As a former printer operator, all of that stuff is second nature.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts run rexx code with jcl CLIST & REXX 15
No new posts Compile rexx code with jcl CLIST & REXX 6
No new posts REXX code to expand copybook in a cob... CLIST & REXX 2
No new posts VSAM return code 23 - for a Random read COBOL Programming 4
No new posts Monitoring production job progress. N... JCL & VSAM 4
Search our Forums:

Back to Top