Page 1 of 1

tables in cobol

PostPosted: Thu Nov 04, 2010 6:13 am
by bachijob20
table works like a array we can define up to 7 dimentions using occurs clause we can define a array
don't use occurs clause in 01 level below is the syntax for define a array
01 emp-array
  05 emp-values occurs 5 times
       10 emp-name pic x(10).

Re: tables in cobol

PostPosted: Thu Nov 04, 2010 7:56 am
by dick scherrer
Hello and welcome to the forum,

Is there a question here or is this a reply to some other question?

When posting, please use capitalization and punctuation. . .

When posting data that needs to be aligned (screen image, code, jcl, data, etc), use copy/paste and the "Code" tag. Your code has been "Code"d.

Re: tables in cobol

PostPosted: Sat Nov 06, 2010 11:47 am
by henryu
oh,I know!

Re: tables in cobol

PostPosted: Sat Nov 06, 2010 9:52 pm
by dick scherrer
Hello and welcome to the forum,,

Well, suppose it is good that you know. . .

You haven't explained what you know or how your reply relates to the forum :?

Do you actually have a question or some information to share?

d

Re: tables in cobol

PostPosted: Thu Nov 11, 2010 4:31 pm
by kunal3963
Thanx...