is it mandatory to give data division before procedure division ? wht happens if i give procedure division first thn data division ? reply soon
2 8297u have passed sme charecters thru parm parameter in jcl. how do u code in cobol to recieve the values u gave in parm ?
IBM,
2 7320How to Pass table from a cobol program to another cobol program and how to use that table in called program
8 22448WE HAVE 2 FILES IN COBOL. ONE IS FIXED LENGTH RECORDS ANOTHER ONE IS VARIABLE LENGTH. IF I DECLEAR LRECL OF FIXED ONE AS 80 AND 2ND RECORD AS 132. WHAT WE NEED TO DECLEAR LRECL FOR THOSE 2 FILES IN JCL?
4 9932i have a requrement in A as viswa!@#$%&^**reddy i need to move viswareddy in B without junk values pls say how to do ths reply fast
L&T,
4 9394what modification we need to do in jcl if we use sort in cobol? I mean whether we need to include tempary file used for sorting in assign statement?
TCS,
3 8048Suppose, file A has 100 records and file B has 500 records. We want to write records common to both A and B into file C and records which are present only in either A or B into another file D. What should be the logic of Cobol program to achieve this?
7 18289How many times the loop runs here 01 a pic 9(2) value 10. perform para1 a times stop run. para1: move 20 to a.
3 7187How many times the loop runs here 01 a pic 9(2) value 1. perform para1 until a=10 move 1 to a. stop run. para1: move 10 to a.
5 8019
What is a report item?
What is the difference between comp and comp-3?
what is s000 u4087 error? please give the all error codes in cobol,jcl.
Write a program to enter and display the names of students in a class using the occurs clause.
How you can characterize tables in cobol?
what are decleratives in cobol?
How did the release of cobol/370 version 1.3 improve the performance of release 1.1?
1.Is it possible to move the data from 99.99 to 99v99? 2.What is the CICS-vsam Compilation process? 3.In My GDG 5 generation will be there GDG3 got an abend what will happen? 4.In my GDG first generation is +1 And I want to add the new generation what will happen previous generation? 5.How can you give the PIC clause below conditions A). s9 (reddy), B). s9 (5) occurs 5 times? 6.How override the proc from a particular step? and what is symbolic and override Procs?
2 input fles: 2 flat files, with different number of records. both are having unique key for each record and already sorted in ascending order . match these files using unique key and in output only matching key value has to be written. please procide cobol logic
What are the different rules of SORT operation?
Differentiate between structured cobol programming and object-oriented cobol programming.
Which is the default, TEST BEFORE or TEST AFTER for a PERFORM statement?
EXPLAIN MAIN FRAME TESTING PROCESS...HOW TO FIX THE MAINFRAME BUGS?
What is the problem of ordered sequential files access?
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?