I am working on an application that requires me to produce a COBOL copybook to define a data file.

Does anyone have a good reference on how to write out a copybook?

link|improve this question
feedback

3 Answers

up vote 3 down vote accepted

A "copybook" is basically COBOL speak for an include file. You need to write a description of your data in COBOL format. Here's a tutorial. Here's some other good articles.

link|improve this answer
feedback

First to clarify, I presume you are not asking for the syntax, which is just lines of COBOL code from either the DATA DIVISION or PROCEDURE DIVISION.

So what is the way to format a file layout? You need to recognize that this is very low-level data modeling. So you need to really understand what your data looks like. You can research various data modeling methodologies, but I suggest starting with what you know. If you know how to model a database table, design it like you would the table. Then convert to the file format.

This will probably highlight that you have multiple entities to model. Then you might decide that you really need multiple files, or you might be able to get away with combining a couple records into a long file (flattening) or create "auxiliary" records using REDEFINES and some kind of variance key to tell you which type of data is in this record.

link|improve this answer
feedback

XML Thunder Lite, a free downloadable software tool that allows quick conversion of COBOL COPYBOOKS or C data structures to/from XML, XSD or SOAP. XML Thunder Lite is a bi-directional solution as it also allows conversion of XML, XSD, WSDL or SOAP to COBOL COPYBOOKS or C structures.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.