can we redefine 77 level item is it possible
Answers were Sorted based on User's Feedback
Answer / ariyan
Yes You can redefine a 77 level variable but with 77 alone.
eg:
77 ws-amount-n pic 9(02).
77 ws-amount-x redefines ws-amount-n
pic x(02).
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / joshin
yes it is possible.oly criteria behind the redifine is you
have to follow the same level no
| Is This Answer Correct ? | 7 Yes | 5 No |
Answer / amit singh
yes it is possible.oly criteria behind the redifine is you
have to follow the same level no.
it's not possible.
| Is This Answer Correct ? | 1 Yes | 0 No |
What is SQL Code -904 and -903 in DB2 And how to handle it?
i Want All cobol ERROR codes?
what is the use of comp2 ? where can we use it with example ?
Can we move SPACES to numeric field and ZEROES to alphabetic field? If yes what are the way doing this?
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
If you are current on the owner of a set, what is the difference between an obtain next and obtain first? Actually in which topic will we use dis???Plz explain it clearly
what are the diferences b/w sub-script and index?
) How do u handle errors in BMS macro
) How do u handle errors in BMS macro?
can we read in input the file with a variable length ? please , how ..could you help me ?
What is length is cobol?
what if any ,is the syntex error in the following piece of code 01 B PIC A(7) 02 C PIC 9(4) ........ IF(B NUMERIC) ADD 10 TO C a.the condition in the if statement is wrong b.noting is wrong c.because C is initialised.ADD 10 TO C is wrong d.both B and C shoud have same size.