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 ?
2294How do u sort the table for Search ALL? Is it only using ASCENDING KEY IS statement in occurs clause? If the data is input in non ascending order, will the ASC KEY IS automatically sort the data? or will it throw compile time error?
CTS,
1 10858If i initialize the 01 level variable in array, will it initialize all the array elements (occurs)?
CTS,
8 25679can we declare s9(9)v9(9) in cobol ? if yes how many bytes it will occupy ?(urgent plz answer it)
CTS,
13 3664201 xxx pic 9(4). 01 yyy pic 9(6). move 123456 into yyy. move yyy to xxx. display yyy. what would be the value of yyy
HSBC,
13 36579can you please let me know if there is any walkins for COBOL/PLI/DB2/IMS/JCL in pune other than IBM and ITC infotech
242901 var1 pic x(10) 01 var2 redefines var1 pic 9(10). then in procedure division move 'abcde' to var1 then waht is the value of var1 and var2
HSBC,
9 14688if you code move high-values to variable,can you move it into numeric variable or alphanumeric variable?
1 7543
Can you please let me know the centre name of INS certification in Kolkata.
What is the Purpose of POINTER Phrase in STRING command in COBOL?
Have you used comp and comp-3 in your project? And how?
What is the difference between Global and External Variables?
For rewrite, why is it mandatory that file needs to be opened?
Describe the cobol database components?
Program A (Normal COBBAT) calling a B Program (DB2COBOL, COBBATDB which is using a VSAM file. its a dynamic call. How we will handle VSAM file decleration in our from JCL from where we are running A PGM. And should we have PLAN for A pGM also. if possible can some one post a sample JCL. Thanks for help in advance.
I have File 1 occurs 5 times with Employee-ID,Employee-Name,Employee-Dept (EEE and MECH). I have File 2 occurs 10 times with Employee-ID,Employee-Name,Employee-Dept (EEE,CIVIL,CHEMICAL and MECH). In FIle 1 and FIle 2 , for matching Employee-DEPT (Only MECH) , we need to move entire records from file1 to file 2. We should not use 2D array. Your help is needed here.
How to remove 2 duplicate records and copy only one using job control language?
What is the difference between perform … with test after and perform … with test before?
Which is the default, TEST BEFORE or TEST AFTER for a PERFORM statement?
How to print 10 to 1 if the input have only 10 digit number?
Write a program to explain size error.
Differentiate between structured cobol programming and object-oriented cobol programming.
How to find out the closest prime number of an input number? I believe it has something to do with SEARCH and COBOL Linear Array.