Can we put move statement in COBOL copybook
Answer Posted / suersh ramaiyan
Copy book means... A piece of code may be used in many programs.
We can write that piece of code in a member of a PDS (copy book) and we can use anywhere in the COBOL programs.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
How to remove the spaces at the end of each record in the output file of variable length, via cobol program?
INREC AND OUTREC? HOW TO SPLIT 5K RECORDS TO DIFFERENT FILES IN A FILE IN COBOL? RESTART IN COBOL-DB2? ISOLATION LEVELS?
State the various causes of s0c1, s0c5 and s0c7.
How you can read the file from bottom?
What are 77 levels used for?
What is the difference between a binary search and a sequential search? What are the pertinent cobol commands?
How to get the last record in vsam file in cluster? And how can you get the ksds file records into your cobol program?
how do you reference the esds vsam file formats from cobol programs
How do you reference the fixed block file formats from cobol programs
Can we change the password using ALTER? anyone tried and changed?
What are different data types in cobol?
)If there are 10 steps in GDG, if I want to refer the step2 after step5 . what should I do?
What is an in line perform? When would you use it? Anything else you wish to say about it.
How do you define a variable of comp-1 and comp-2?
here is my requirement A1 is alphanumeric with value 'A1B2C3D4' as defined below 05 A1 PIC X(8) VALUE IS 'A1B2C3D4' but i need to have A2,A3 as ABCD & 1234 repectively...... A2 = ABCD A3 = 1234 Can you please explain me what are the different ways to do it?