How does IDMS communicate with CICS?
What is the default value(s) for an initialize and what keyword allows for an override of the default?
Can anyone please give the example of Inline Perform.
How do you set a return code to the JCL from a COBOL program?
i declare a Table as OCCURS 2000 TIMES.If the input file has more than 2000 records will the COBOL program fail?
A paragraph PARA-X is to be executed when none of the data names A, B and C have value of 1. Which of the following will achieve this ? (a) IF A NOT = 1 OR B NOT = 1 OR C NOT = 1 PERFORM PARA-X (B) IF NOT A= 1 AND B= 1 AND C = 1 PERFORM PARA-X (C) IF A NOT =1 IF NOT B = 1 OR C= 1 PERFORM PARA-X (C) IF A NOT = 1 AND B NOT = 1 AND C NOT = 1 PERFORM PARA-X
What will happen if we move SPACES to numeric field and ZEROES to alphabetic field?
Can you call an OS VS COBOL pgm from a VS COBOL II pgm ?
When can the USING phrase be included in the call statement ?
please..could u give an example about USAGE IS POINTER ..and explain why and when we use it ?
There is a production file which has millions of records in it.The program that uses it ends up with an SOC7 abend.It is sure that the abend is due to some invalid data in the file.Is there any way to debugg the SOC7 abend with out giving displays? I need the record which is cause for the abend.
how do you reference the variable unblock file formats from cobol programs
What is the difference between SEARCH and SEARCH ALL? What is more efficient?