How many bytes S(8) comp field occupy and its maximum value?
No Answer is Posted For this Question
Be the First to Post Answer
I had 100 records and i want to execute last three records by using cobol programming?what will be coding?
What are the divisions in a cobol program?
How can we increase the size of an existing PDS to include more no. of modules. I tried the answer posted by Jagan(TSO PDS 'pds name') but did not find it working. The answer posted by kamal i know very well. Please suggest me a answer so that we don't need to delete the existing PDS and still we can change the size as well.
Why we should use cursor ?
How do you fetch current date in normal cobol pgm and in cobol-db2 pgm?
What is cobol?
input 1 input2 ouput1 output2 output 3 1 re 300 1 re 200 1 re 300 3 rc 500 1 re 200 2 rr 400 1 re 300 2 rr 400 1 rc 400 3 rc 500 1 rc 400 2 rr 700 2 rr 700 5 tt 900 5 tt 900 2 inputs r in flat file and output 1 is matched records,ouptput2 is unmatched of input1,output3 is unmatched of input2! how vl u get the output files using sequential order and to check with each and every records! let me know the procedure division ?
how to crack cts interview apps? NOVEMBER 21 2010
How many maximum number of procedures can we write in one COBOL program?
how to create temporary data set in jcl? what is the use?
3 Answers Cap Gemini, Temenos,
What are the different rules to perform a Search?
How to replace the GOTO statement in COBOL without changing the structure of program. e.g. consider following code... I.D. E.D. D.D. P.D. compute C = A + B. GOTO para 100-display. compute D = C - D. GOTO 200-display. some other logic...... ........ GOTO 300-para. ...... ...... GOTO 400-para. Now I want to replacce all GOTO statements without changing the structure and otput of program.