can we use reference modification an arry.
Answer / sushil kumar
Yes, You can use reference modification an arry.
e.g: ws-staticname(wx-ctr1) (12:3) is working.
| Is This Answer Correct ? | 1 Yes | 0 No |
How to delete the records of a dataset through cobol programme?We should not use jcl utilitities like IDCAMS.
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,
Hi All, Can anyone tell me how we can MOVE value of a X(19) variable to a S9(17) COMP-3 variable? Answer with an Example will be of great help.
What R 2 of the common forms of the EVALUATE STATEMENT ?
01 a pic 9(3) value is 123 01 b pic 9(6) move a to b wht will be the value ? and 01 a pic x(6) value is abc 01 b pic x(3) move a to b wht will be the value ?
a pic s9(4) comp b pic s9(4) comp-3 c ???????????????? d ???????????????? move a to c add a+B giving d. what is ur declaration for c,d?
What is the use of EVALUATE statement?
What is the default value(s) for an initialize? What keyword will allow for an override of the default?
When would you use in-line perform?
I have a files containing both duplicate and non-duplicate records.The file is already sorted by a key.I want to determine those records that are duplicate and records that are non-duplicate.If duplicate the record is move to a duplicate file and if non-duplicate that will be move to valid file.thank you
How to use the same COBOL program in Batch and CICS on lines? explain with an example
perform I from 0 by 1 until I=5?How maney times it will executes