The hierarchy of the execution of logical operators is (a) NOT AND OR (b) AND OR NOT (c) OR AND NOT (d) OR NOT AND
10 33080I have PS flat file with 14 records. I want to read from 4th to 9th record and want to write those 6 records (4th record to 9th record) to another PS file (output file). there is no key defined in the input file. I just want read a certain Consecutive records. can any one please give me the procedure division Coding for this. I have coded the below coding but the READ-PARA is performing only 1 time even though I have 14 records in my input file (i.e FILE-1): PROCEDURE DIVISION. A000-SECTION. MOVE 0 TO I. OPEN INPUT FILE-1. IF CHECK-KEY1 > 0 DISPLAY "OPEN ERROR FOR FILE-1, CODE IS:" CHECK-KEY1 END-IF. OPEN EXTEND NEWFILE-1 IF CHECK-KEY3 > 0 DISPLAY "OPEN ERROR FOR NEWFILE-1 COD IS" CHECK-KEY3 END-IF. PERFORM READ-PARA THRU EXIT-PARA UNTIL EOF-REC = 'YES'. DISPLAY " FINALLY OUT OF LOOP" CLOSE FILE-1 CLOSE NEWFILE-1 STOP RUN. READ-PARA. ADD 1 TO I READ FILE-1 AT END MOVE 'YES' TO EOF-REC IF I > 3 AND < 10 PERFORM WRITE-PARA ELSE DISPLAY "NOT IN RANGE" END-IF. EXIT-PARA. EXIT. WRITE-PARA. WRITE NEW-REC FROM FILE1-REC.
8 35197Hi all, I have a following requirement to write the cobol program. I have to load the 129 variables from input sequential file which are in excel sheet to the cobol inernal table. and after loading into table i have to compare this data with the business file. here compare means controlling the data whether the format(numeric,alpha) is same in the business file and in the table??? i have the same data in input and business file. could anyone please give me any idea of the logic?// i have all the 129 different variables(129rows,1 column)is there .
4 12897I have to write to a outfile where the number of records in that file should be the header of that file using IMS.. can anyone help me in this issue
2495I have a sequential file of 100 records. How do I load the records into a two dimensional array ?
3 22147We have 3 programms A,B,C.In the middle of the program A the controls goes to program B and in the middle of the program B control wants to go program C,after completion of program C again control comes to program B and again after completion of program B control comes to program A.How the process will takes and what are the controls we use for that process.If it is possible anybody of you explain with example?
5 10823With in these three which one is the default one Call Reference, Call By Value, Call By Content.-Which one is default?
4 10713Post New IBM COBOL Interview Questions
What are the nameless functions in python?
How can I get data from a database on another server?
What is iso standards for quality management?
How CSS style overriding works?
How many rows can a database hold?
Why trim span ? How?
What is a 'distribution channel'?
what are different storage options supported by oracle ?
What is hfile ?
Explain how many species are there in mammals?
What are the key components of Bootstrap?
Which data object in r is used to store and process categorical data?
You are helping X Company in recruiting candidates for the admin department. You have received over 50 resumes and need to pick 5 candidates to be interviewed by the x management. This takes up 4 hours of your time every day and you are falling behind your deadlines in creating e-learning modules. How would you ensure that you do not lag behind?
What can you do to improve page performance?
Can delegates be used as callbacks?