) What is the use of IGNORE?
Answer / naidu sekhar yandrapu
The ignore condition command causes no action to be taken
if the condition specified occurs in the program.
That is control will be returned to next instruction
EXEC CICS IGNORE CONDITION
LENGERR
END-EXEC
EXEC CICS RECEIVE
INTO(--)
LENGTH(--)
END-EXEC
NO MORE THAN 12 CONDIATION
| Is This Answer Correct ? | 1 Yes | 0 No |
Can you call an OS VS COBOL pgm from a VS COBOL II pgm ?
what are the utilities for load and unload the DB2 tables
I hav vari declaration like..... 77 a pic s9(9).99. 77 b pic s9(9).99 comp. 77 c pic s9(9).99 comp-3. if i use MOVE 123456789.99 to a,b,c what happen every one working fine ?
When we code these comp,comp1,comp-2,comp-3 and comp4 values. I know the differnece.I mean when we will prefer if it is new program.Explain in detail with memory examples. Thanks in advance.
What is the compute verb? How is it used?
why mainframe we use not like java as frontend oracle as backend. or not word excel.In there also huge ammount data stored.
COBOL Snippet: Tell where the control will when the below code execute IF (A=B) CONTINUE ELSE NEXT SENTENCE PERFORM <IMP-STMT> END-IF.
What are the cobol coding sheets?
Suppose, 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 Answers Bank Of America, Mind Tree,
I 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
if a file has 1000 recods how copy the records from 1 to 100 records using sort
Consider the following COBOL entries 05 X PIC 99 VALUE 10. ADD 40 X TO X. COMPUTE X = 3 * X - 40. The result in X is