how do you move only numeric data from A to B
01 A pic x(10) value 'a1b2c34d5e'.
01 B pic x(5).
Answer Posted / mr.s
using inspect command
| Is This Answer Correct ? | 0 Yes | 7 No |
Post New Answer View All Answers
What is amode(31)
here is my requirement A1 is alphanumeric with value 'A1B2C3D4' as defined below 05 A1 PIC X(8) VALUE IS 'A1B2C3D4' but i need to have A2,A3 as ABCD & 1234 repectively...... A2 = ABCD A3 = 1234 Can you please explain me what are the different ways to do it?
What are INPUT PROCEDURE and OUTPUT PROCEDURE?
which is Best IBM Mainframe Training and Placement Institute in Ameerpet Hyderabad
What is the utilization of copybook in cobol?
What is amode(24), amode(31), rmode(24) and rmode(any) (applicable to only mvsesa enterprise server) ?
How you can read the file from bottom?
Whats the difference between search & search ALL?
How to print 10 to 1 if the input have only 10 digit number?
A table has two indexes defined. Which one will be used by the SEARCH?
Why do we code s9 (4) comp. Inspite of knowing comp-3 will occupy less space?
1.Is it possible to move the data from 99.99 to 99v99? 2.What is the CICS-vsam Compilation process? 3.In My GDG 5 generation will be there GDG3 got an abend what will happen? 4.In my GDG first generation is +1 And I want to add the new generation what will happen previous generation? 5.How can you give the PIC clause below conditions A). s9 (reddy), B). s9 (5) occurs 5 times? 6.How override the proc from a particular step? and what is symbolic and override Procs?
Write down the divisions of cobol program?
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?
How do define dynamic array in cobol. how do you define single dimensional array and multidimensional array in your cobol?