can i use multiple when statements in search & search all ?
justify ur answer?
Answers were Sorted based on User's Feedback
Answer / abhi
we can use multiple statements in search but not in search all.
| Is This Answer Correct ? | 16 Yes | 1 No |
Answer / kalpanapedda
only multiple statements is possible in serch,in serch all
only one when condition is possible.
| Is This Answer Correct ? | 3 Yes | 0 No |
Which of the following characters is NOT valid in column 7? a. - b. \ c. * d. # e. $
how to remove leading spaces and zeroes in a cobol variable.is there any easy way to do it
What is the linkage section?
If we use GO BACK instead of STOP RUN in cobol?
in cobol perform stmt whether it first checks the condition or not
can i use multiple when statements in search & search all ? justify ur answer?
consider the following piece of code 01 GROUP-ITEM 05 AMOUNT-1 PIC 99V9 USAGE COMP VALUE 50 05 AMOUNT-2 PIC 9(4)V99 USAGE COMP MOVE ZERO TO GROUP-ITEM ADD 50 TO AMOUNT-1 what will be the content of AMOUNT-1? a.50 b.100 c.0 d.unpredictable
wht is load module and object module ?
hi is there any means of deletin a record from a ps usin cobol not using jcl?eg if i am reading a record and if some condition is matched tat particular record must be deletd fom the ps
I have a file it contain 10 records.i got abend at 8th record because of soc7.how do you know that perticular record got abend?
COBOL Snippet: Tell where the control will when the below code execute IF (A=B) CONTINUE ELSE NEXT SENTENCE PERFORM <IMP-STMT> END-IF.
how to convert vsam table into DB2 table?