write a cobol logic. i have file that has 10 records .1 record go to first output file and second record goes to 2 output and etc
1174INREC AND OUTREC? HOW TO SPLIT 5K RECORDS TO DIFFERENT FILES IN A FILE IN COBOL? RESTART IN COBOL-DB2? ISOLATION LEVELS?
8172 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
2544How to fetch 1000 error records from VSAM file(Eg: 1000000 records present) while getting SOC7 abend ?
2393
What is the difference between PIC 9.99 and PIC9v99?
What is the difference between a binary search and a sequential search what are the pertinent cobol?
What is inspect in cobol ?
i was faced one question- i have value -00001234.56 Suppress the zeroes and the output should be -1234.56 But Not - 1234.56 spaces should not be available after suppressing the zeroes. logic in jcl and cobol?
what is s000 u4087 error? please give the all error codes in cobol,jcl.
I have a program with an Array of 5000 occurences which is being passed from 5 sub levels to the front end screen. Thess 5 programs using each 5*2 = 10 different arrays with size as 5000. This is causing the transaction to utilize more storage consupmtion. I am looking to reduce the storage consumption. As part of that initially i thought Dynamic array may solve my problem. After viewing the comments given i see its same as normal array. IS there any other way we can resolve this issue?
What are the different open modes available in cobol?
Which division and paragraphs are mandatory for a COBOL program?
What is the difference between perform … with test after and perform … with test before?
What are 77 levels used for?
i need a small 3d program using inline and outline.
What are the rules of the move verb?
Have you used the sort in your project?for this type of questions any working on real time project give the eg. with real time scenario.
What is the local-storage section?
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?