01 a pic x(4) value 'abcd'
01 b pic 9(3)
can we move from a to b.if possible what would be stored in
b.
Answers were Sorted based on User's Feedback
Answer / rajini
We wont get data exception error (SOC7) , the program will
go fine , But the value in b will be junk.
| Is This Answer Correct ? | 20 Yes | 11 No |
Answer / sumanth toom
Ans 2 is correct and to add further to that..when the
program tries to use this variable 'b', then it will give
S0C7
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / vikas p o
First thing, when write this code and compile will it
compile sucessfully. If it compiles sucessfuly then if run
JCL will it give SOC7 or not.
Did test it but got error during compliation something like
"MOVE DID NOT FOLLOW COMPATIBILITY RULES".
Ppl can add to this...
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / amjith pillai
01 a pic x(4) value 'abcd'
01 b pic 9(3)
Yes, you can move. Try just a move and display B. you will
get abc.
But if you go for an operation (add, move to comp variable
etc) then you will hit SOC7
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / mime
No. You would encounter a data error - abend SOC7
| Is This Answer Correct ? | 13 Yes | 12 No |
Answer / mainframe user
why do you want to do this? you know it is not compatible.
there is no point in doing analysis for this stuff.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / satish
Yes We can move that.But I have another question.if we
move 'abcd' to comp variable then how it will get stored??I
know if we move theb it wont abend but dbt know how it will
be stored:-(
| Is This Answer Correct ? | 0 Yes | 0 No |
What are the different rules for performing sort operation?
i have a file which contains records like 10,30,90,50,20,40,80,60,70 i want to display these records in reverse order like 70,60,80,40,20,50,90,30,10 please give me the cobol code (do not sort the records)
3 Answers Cap Gemini, Mind Tree,
i have a sequencial file contains multiple records, i want to extract one row which contains various fields like order number,date,warehouse,.ect.. in to the another file by accepting the order number from jcl. how can i do it. pls help me..
Explain complete concept of table handling in COBOL with an example?
How do u know what version of cobol u are using?
can we use the two 01 level in file discription ?
) how do u code after getting data?
What are different data types in cobol?
How do you define a table/array in COBOL?
what is the difference between Plan & package
how can we code index in an array of cobol pgm?
is this below syntax correct? CALL 'subprg' using A,B Please help