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.
Answer Posted / chuvabe
no. cannot. because b is numeric. alpanumeric cannot move
to numeric field.
| Is This Answer Correct ? | 3 Yes | 4 No |
Post New Answer View All Answers
Explain how you can characterize tables in cobol?
What are the various section in data division and briefly explain them.
How you can characterize tables in cobol?
What is the difference between structured cobol programming and object alternativelyiented cobol?
Write a program to explain size error.
What is the difference between structured cobol programming and object alternativelyiented cobol programming?
Discuss about changing dataset name in proc.
Why would you use find and get rather than to obtain?
What are 77 levels used for?
Name the sections present in data division.
What is the default value(s) for an initialize and what keyword allows for an override of the default?
1.give the details about WHEN OTHER. 2. how many form are available in evaluate.
What are literals?
what is s000 u4087 error? please give the all error codes in cobol,jcl.
I have a program with an Array of 5000 occurences which is being passed from 5 sub levels to the front end screen. Thess 5 programs using each 5*2 = 10 different arrays with size as 5000. This is causing the transaction to utilize more storage consupmtion. I am looking to reduce the storage consumption. As part of that initially i thought Dynamic array may solve my problem. After viewing the comments given i see its same as normal array. IS there any other way we can resolve this issue?