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

Need some sample cobol copybooks


IBM Mainframe Forums -> COBOL Programming
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
yb24060

New User


Joined: 17 Mar 2005
Posts: 1

PostPosted: Thu Mar 17, 2005 10:12 pm
Reply with quote

Hi all,

I was wondering if somebody could send me some sample copybooks with varying degree of complexities.

Thanks,

Yogesh
Back to top
View user's profile Send private message
mmwife

Super Moderator


Joined: 30 May 2003
Posts: 1592

PostPosted: Sat Mar 19, 2005 10:11 pm
Reply with quote

Hi Yogesh,

Here's 1 you don't see often:

Cbk name is transrec.
Code:

01  :pre-:trans-rec.
    05  :pre-:trans-type    pic x(002).     
    05  :pre-:trans-amt     pic x(002).     
    05  :pre-:trans-date    pic x(002).   
    05  :pre-:trans-acct    pic x(002).   

In COBOL pgm code:

copy transrec replacing ==:pre-:== by ==inv-==

This tells the compiler to chang the pprefix in the cbk to inv-.
Another user could use sinv- for his/her purposes. It can also be used for both input and output files to make the field names unique.

I usually include the "-" between the colons so that I can elliminate the prefix if I have a mind to. I.e. ==:pre-:== by ====. You may need to separate those 4 =s w/a space. In fact check all the syntax here. I don't have a manual handy and I'm quoting from memory.

As I say, the usual caveats and copouts apply.
Back to top
View user's profile Send private message
View previous topic : : View next topic  
Post new topic   Reply to topic All times are GMT + 6 Hours
Forum Index -> COBOL Programming

 


Similar Topics
Topic Forum Replies
No new posts IBM IMU Utility for Easytrieve Code t... IBM Tools 0
No new posts Big Five Personality Test in COBOL - ... COBOL Programming 0
No new posts I wrote a Hallmark Movie Plot Generat... COBOL Programming 0
No new posts COBOL Text Adventure Engine for TK4- ... COBOL Programming 0
No new posts Cobcalc: An Algebraic Expression Eval... COBOL Programming 10
Search our Forums:


Back to Top