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 View Bookmarks
All times are GMT + 6 Hours
Forum Index -> COBOL Programming

 


Similar Topics
Topic Forum Replies
No new posts Replace each space in cobol string wi... COBOL Programming 3
No new posts COBOL -Linkage Section-Case Sensitive COBOL Programming 1
No new posts COBOL ZOS Web Enablement Toolkit HTTP... COBOL Programming 0
No new posts Calling DFSORT from Cobol, using OUTF... DFSORT/ICETOOL 5
No new posts Generate random number from range of ... COBOL Programming 3
Search our Forums:

Back to Top