) What is the use of IGNORE?



) 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

Post New Answer

More COBOL Interview Questions

What is 77 level used for ?

12 Answers   IBM, iGate,


how can u redefine picx(10) with pic 9(6).

3 Answers   TCS,


consider two data items 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move

5 Answers   TCS,


what is the difference between implicit and explicit scope terminator with example? 

1 Answers  


I have one column say 'X' defined as VARCHAR Can anyone tell me What are the different ways to update this column thru COBOL-DB2 program?

5 Answers  






What is the difference between structured cobol programming and object alternativelyiented cobol?

0 Answers  


State the various causes of s0c1, s0c5 and s0c7.

0 Answers  


what is amode(24), amode(31), rmode(24) and rmode(any)?

0 Answers  


How can I find the maximum value of a field in a file while reading the file dynamically? without using sort function. Suppose i have a file with fields Timestamp, description, teamname, teamnumber.. i have read the file till end and find the maximun value of timestamp which is not in sorted order.. can we use function max(timestamp)?

1 Answers   CGI,


what is S04E error in jcl?

11 Answers   IBM, L&T,


Name the sections present in data division.

0 Answers  


Study the DATA DIVISION entries and the three PROCEDURE DIVISION entries given below: 01 END-OF-FILE-SWITCH PIC XXX. 88 NO-MORE-RECS VALUE "YES". 88 MORE-RECS VALUE "NO". (i) READ SAMPLE-FILE AT END MOVE "YES" TO NO-MORE-RECS. (ii) IF NO-MORE-RECS = "YES" GO TO LAST-PARA. (iii) IF NO-MORE-RECS GO TO LAST-PARA. Which are wrong? (a) (i) and (ii) (b) (ii) and (iii) (c) (i) and (iii) (d) all

5 Answers   TCS,


Categories